community/py-argparse: fix and simplify abuild

Fixes https://bugs.alpinelinux.org/issues/7918
This commit is contained in:
Jakub Jirutka 2017-09-30 23:34:25 +02:00
parent ac4fcfa93a
commit e1ed2bcfba

View File

@ -3,22 +3,15 @@
pkgname=py-argparse pkgname=py-argparse
_pkgname=argparse _pkgname=argparse
pkgver=1.4.0 pkgver=1.4.0
pkgrel=0 pkgrel=1
pkgdesc="Python command-line parsing library" pkgdesc="Python command-line parsing library"
url="https://pypi.python.org/pypi/argparse/" url="https://pypi.python.org/pypi/argparse/"
arch="noarch" arch="noarch"
license="MIT" license="MIT"
depends="python"
makedepends="python2-dev python3-dev py-setuptools" makedepends="python2-dev python3-dev py-setuptools"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
source="https://pypi.python.org/packages/source/a/argparse/argparse-$pkgver.tar.gz" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver builddir="$srcdir/$_pkgname-$pkgver"
check() {
cd "$builddir"
python2 setup.py check
python3 setup.py check
}
build() { build() {
cd "$builddir" cd "$builddir"
@ -26,28 +19,32 @@ build() {
python3 setup.py build python3 setup.py build
} }
check() {
cd "$builddir"
python2 setup.py check
python3 setup.py check
}
package() { package() {
mkdir -p "$pkgdir" mkdir -p "$pkgdir"
} }
_py2() { _py2() {
replaces="$pkgname"
depends="${depends//py-/py2-}" ## remove if there are no common Python dependencies
_py python2 _py python2
} }
_py3() { _py3() {
depends="${depends//py-/py3-}" ## remove if there are no common Python dependencies
_py python3 _py python3
} }
_py() { _py() {
local python="$1" local python="$1"
pkgdesc="$pkgdesc (for $python)" pkgdesc="$pkgdesc (for $python)"
depends="$depends $python" ## remove if arch isn't noarch depends="$python"
install_if="$pkgname=$pkgver-r$pkgrel $python" install_if="$pkgname=$pkgver-r$pkgrel $python"
cd "$builddir" cd "$builddir"
$python setup.py install --prefix=/usr --root="$subpkgdir" $python setup.py install --prefix=/usr --root="$subpkgdir"
} }
sha512sums="9941f9d26c43169f947c9efadda6239349e1f9df80ff5fcdba3070bc7b43c43ab6bb4b7f0c7eee8e5d06231a17a7e9ee9eb73c7a9bb68ebe5d13f879686d61b2 argparse-1.4.0.tar.gz" sha512sums="9941f9d26c43169f947c9efadda6239349e1f9df80ff5fcdba3070bc7b43c43ab6bb4b7f0c7eee8e5d06231a17a7e9ee9eb73c7a9bb68ebe5d13f879686d61b2 argparse-1.4.0.tar.gz"