diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-22 09:27:38 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-22 10:14:49 +0000 |
commit | ff813591eea300f1fe7a1c8dc4807165a9da64dc (patch) | |
tree | eb8073b493badedd510e0cd8282d877b09bebf94 | |
parent | de9b688cd246470be5812220acfdd15df2e09e7c (diff) | |
download | aports-ff813591eea300f1fe7a1c8dc4807165a9da64dc.tar.bz2 aports-ff813591eea300f1fe7a1c8dc4807165a9da64dc.tar.xz |
community/py-characteristic: moved from testing, added py2 and py3 subpackages
-rw-r--r-- | community/py-characteristic/APKBUILD (renamed from testing/py-characteristic/APKBUILD) | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/testing/py-characteristic/APKBUILD b/community/py-characteristic/APKBUILD index 7f6f27fa0b..971507e5e2 100644 --- a/testing/py-characteristic/APKBUILD +++ b/community/py-characteristic/APKBUILD @@ -3,41 +3,47 @@ pkgname=py-characteristic _pkgname=characteristic pkgver=14.3.0 -pkgrel=0 +pkgrel=1 pkgdesc="Service identity verification for pyOpenSSL" url="http://pypi.python.org/pypi/characteristic" arch="noarch" license="MIT" -depends="python" -depends_dev="" -makedepends="$depends_dev py-setuptools pytest" +depends="" +makedepends="py-setuptools py2-pytest python2-dev py3-pytest python3-dev" install="" -subpackages="$pkgname-doc" +subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" -_builddir="$srcdir"/$_pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} +builddir="$srcdir"/$_pkgname-$pkgver build() { - cd "$_builddir" - python -Walways setup.py test - python setup.py build + cd "$builddir" + python2 setup.py build || return 1 + python3 setup.py build || return 1 } package() { - cd "$_builddir" - python setup.py install --root="${pkgdir}" --optimize=1 --skip-build - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + mkdir -p "$pkgdir" +} + +_py() { + local python=$1 + pkgdesc="$pkgdesc - $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +_py2() { + _py python2 + replaces="$pkgname" +} + +_py3() { + _py python3 } + md5sums="b249368dd021fde1c06b4802867c0913 characteristic-14.3.0.tar.gz" sha256sums="ded68d4e424115ed44e5c83c2a901a0b6157a959079d7591d92106ffd3ada380 characteristic-14.3.0.tar.gz" sha512sums="e13a86f453cd3688a74188005b82a661a9c73d9f0408d9afe9e0575e69ffe87a5327f51e2c16a9c0a653b738e7c014d5aa08e353835f0aca7897714b7ae56e83 characteristic-14.3.0.tar.gz" |