diff options
| -rw-r--r-- | abs/core/python_modules/python-pysqlite/ChangeLog | 13 | ||||
| -rw-r--r-- | abs/core/python_modules/python-pysqlite/PKGBUILD | 29 | ||||
| -rw-r--r-- | abs/core/python_modules/python-pysqlite/setup.cfg | 5 | 
3 files changed, 47 insertions, 0 deletions
| diff --git a/abs/core/python_modules/python-pysqlite/ChangeLog b/abs/core/python_modules/python-pysqlite/ChangeLog new file mode 100644 index 0000000..12c0ad0 --- /dev/null +++ b/abs/core/python_modules/python-pysqlite/ChangeLog @@ -0,0 +1,13 @@ + +2009-08-06  Douglas Soares de Andrade  <douglas@archlinux.org> + +	* Updated to: 2.5.5 + +2009-07-19  Douglas Soares de Andrade  <douglas@archlinux.org> + +	* Updated for i686: 2.5.5 + +2008-07-15  Douglas Soares de Andrade  <douglas@archlinux.org> + +	* Updated for i686: 2.4.1 + diff --git a/abs/core/python_modules/python-pysqlite/PKGBUILD b/abs/core/python_modules/python-pysqlite/PKGBUILD new file mode 100644 index 0000000..4a45ba5 --- /dev/null +++ b/abs/core/python_modules/python-pysqlite/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 89652 2010-09-02 20:47:02Z remy $ +# Contributor: Aaron Griffin <aaron@archlinux.org> +# Contributor: Aaron Griffin <aaron@archlinux.org> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=python-pysqlite +pkgver=2.6.0 +pkgrel=3 +pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational database engine" +license=('custom') +arch=('i686' 'x86_64') +url="http://code.google.com/p/pysqlite/" +depends=('python2' 'sqlite3') +replaces=('pysqlite2') +source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \ +        setup.cfg) +md5sums=('fc92618b3b39d02e6ff10dc467c36640' +	 '86dd356c65afd14a22f2f8f64a26441e') +build() { +	cd ${srcdir}/pysqlite-${pkgver} +	cp ${srcdir}/setup.cfg . +	python2 setup.py install --root=${pkgdir} +} + +package() { +	cd ${srcdir}/pysqlite-${pkgver} +	install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +	rm -r ${pkgdir}/usr/pysqlite2-doc +} diff --git a/abs/core/python_modules/python-pysqlite/setup.cfg b/abs/core/python_modules/python-pysqlite/setup.cfg new file mode 100644 index 0000000..ba6c770 --- /dev/null +++ b/abs/core/python_modules/python-pysqlite/setup.cfg @@ -0,0 +1,5 @@ +[build_ext] +define= +include_dirs=/usr/include +library_dirs=/usr/lib +libraries=sqlite3 | 
