mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/py-argparse: fix and simplify abuild
Fixes https://bugs.alpinelinux.org/issues/7918
This commit is contained in:
parent
ac4fcfa93a
commit
e1ed2bcfba
@ -3,22 +3,15 @@
|
||||
pkgname=py-argparse
|
||||
_pkgname=argparse
|
||||
pkgver=1.4.0
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
pkgdesc="Python command-line parsing library"
|
||||
url="https://pypi.python.org/pypi/argparse/"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||
source="https://pypi.python.org/packages/source/a/argparse/argparse-$pkgver.tar.gz"
|
||||
builddir="$srcdir"/$_pkgname-$pkgver
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
python2 setup.py check
|
||||
python3 setup.py check
|
||||
}
|
||||
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
builddir="$srcdir/$_pkgname-$pkgver"
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
@ -26,28 +19,32 @@ build() {
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
python2 setup.py check
|
||||
python3 setup.py check
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
_py2() {
|
||||
replaces="$pkgname"
|
||||
depends="${depends//py-/py2-}" ## remove if there are no common Python dependencies
|
||||
_py python2
|
||||
}
|
||||
|
||||
_py3() {
|
||||
depends="${depends//py-/py3-}" ## remove if there are no common Python dependencies
|
||||
_py python3
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
pkgdesc="$pkgdesc (for $python)"
|
||||
depends="$depends $python" ## remove if arch isn't noarch
|
||||
depends="$python"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
||||
}
|
||||
|
||||
sha512sums="9941f9d26c43169f947c9efadda6239349e1f9df80ff5fcdba3070bc7b43c43ab6bb4b7f0c7eee8e5d06231a17a7e9ee9eb73c7a9bb68ebe5d13f879686d61b2 argparse-1.4.0.tar.gz"
|
||||
|
Loading…
Reference in New Issue
Block a user