diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-15 23:41:26 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-15 23:41:26 +0200 |
commit | 14060b55ac33e3a4fe45153d67fc7abef14f22a4 (patch) | |
tree | 0659fae21b7f7ea80037f9c9f552fc387e386ad9 /community/py-pygit2 | |
parent | 8b81a26b472a66e38ae33aa7228708b35af131a5 (diff) | |
download | aports-14060b55ac33e3a4fe45153d67fc7abef14f22a4.tar.bz2 aports-14060b55ac33e3a4fe45153d67fc7abef14f22a4.tar.xz |
community/py-pygit2: fix dependencies
Diffstat (limited to 'community/py-pygit2')
-rw-r--r-- | community/py-pygit2/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/py-pygit2/APKBUILD b/community/py-pygit2/APKBUILD index 35b5282e7d..ad630ef83d 100644 --- a/community/py-pygit2/APKBUILD +++ b/community/py-pygit2/APKBUILD @@ -3,12 +3,13 @@ pkgname=py-pygit2 _pkgname=pygit2 pkgver=0.24.1 -pkgrel=1 +pkgrel=2 pkgdesc="Python bindings for libgit2" url="https://github.com/libgit2/pygit2" arch="noarch" license="GPLv2" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" +depends="" makedepends="python2-dev python3-dev py-setuptools py2-cffi py3-cffi py2-six py3-six libgit2-dev libssh2-dev openssl-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/libgit2/$_pkgname/archive/v${pkgver}.tar.gz" @@ -39,7 +40,7 @@ _py() { local python=$1 arch="all" pkgdesc="$pkgdesc - $python" - depends="libgit2 $python" + depends="$depends $python libgit2" install_if="$pkgname=$pkgver-r$pkgrel $python" cd "$builddir" |