diff options
Diffstat (limited to 'pcr/python2-gitdb')
-rw-r--r-- | pcr/python2-gitdb/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pcr/python2-gitdb/PKGBUILD b/pcr/python2-gitdb/PKGBUILD index 8eb3e45f9..7d96210a0 100644 --- a/pcr/python2-gitdb/PKGBUILD +++ b/pcr/python2-gitdb/PKGBUILD @@ -2,18 +2,21 @@ # Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> pkgname=python2-gitdb -pkgver=0.5.4 +pkgver=0.6.3 pkgrel=1 pkgdesc="IO of git-style object databases" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://pypi.python.org/pypi/gitdb" -license=('BSD') +license=('BSD3') makedepends=('python2' 'python2-distribute') -depends=('python2' 'python2-async>=0.6.1' 'python2-smmap>=0.8.0') +depends=('python2' 'python2-smmap>=0.8.5') source=("http://pypi.python.org/packages/source/g/gitdb/gitdb-${pkgver}.tar.gz") +md5sums=('c608b9edc372a4ef07b14a1b2dd44e1f') + package() { cd "$srcdir/gitdb-$pkgver" python2 setup.py install --root="$pkgdir/" || return 1 + install -D -m 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } # vim:set ts=2 sw=2 et: |