Date: Wednesday, April 6, 2016 @ 20:48:44 Author: jlichtblau Revision: 169593
upgpkg: python-pygit2 0.24.0-1 - new upstream release Modified: python-pygit2/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2016-04-06 18:37:16 UTC (rev 169592) +++ PKGBUILD 2016-04-06 18:48:44 UTC (rev 169593) @@ -1,23 +1,24 @@ +# $Id$ # Maintainer: Lukas Fleischer <[email protected]> # Maintainer: Daniel Micay <[email protected]> pkgbase=python-pygit2 pkgname=(python-pygit2 python2-pygit2) -pkgver=0.23.3 -pkgrel=2 +pkgver=0.24.0 +pkgrel=1 pkgdesc='Python bindings for libgit2' +arch=('i686' 'x86_64') url="https://github.com/libgit2/pygit2" -depends=(libgit2) -makedepends=(python-cffi python2-cffi python-setuptools python2-setuptools git) -arch=(i686 x86_64) license=('GPL2') +depends=('libgit2') +makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 'python2-setuptools' 'git') source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz") -md5sums=('0181e07b28a00872f6a8ef134b7a5d7c') +md5sums=('135adc1c70129d904ec89315b91cc26a') package_python-pygit2() { - depends+=(python python-cffi) - replaces=(python-libgit2) - conflicts=(python-libgit2) + depends+=('python' 'python-cffi') + replaces=('python-libgit2') + conflicts=('python-libgit2') cd "pygit2-$pkgver" LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1 @@ -24,9 +25,9 @@ } package_python2-pygit2() { - depends+=(python2 python2-cffi) - replaces=(python2-libgit2) - conflicts=(python2-libgit2) + depends+=('python2' 'python2-cffi') + replaces=('python2-libgit2') + conflicts=('python2-libgit2') cd "pygit2-$pkgver" python2 setup.py install --root="$pkgdir" --optimize=1
