mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/py-more-itertools: new aport
This commit is contained in:
parent
63fe1f7b6b
commit
ed1350d09f
53
community/py-more-itertools/APKBUILD
Normal file
53
community/py-more-itertools/APKBUILD
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
# Contributor: TBK <alpine@jjtc.eu>
|
||||||
|
# Maintainer: TBK <alpine@jjtc.eu>
|
||||||
|
pkgname=py-more-itertools
|
||||||
|
_pkgname=more-itertools
|
||||||
|
pkgver=4.1.0
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="More routines for operating on iterables, beyond itertools."
|
||||||
|
url="https://pypi.python.org/pypi/more-itertools"
|
||||||
|
arch="noarch"
|
||||||
|
license="MIT"
|
||||||
|
makedepends="python2-dev python3-dev py-setuptools"
|
||||||
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||||
|
source="$_pkgname-$pkgver.tar.gz::https://github.com/erikrose/more-itertools/archive/$pkgver.tar.gz"
|
||||||
|
builddir="$srcdir/$_pkgname-$pkgver"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$builddir"
|
||||||
|
python2 setup.py build
|
||||||
|
python3 setup.py build
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "$builddir"
|
||||||
|
python2 setup.py test
|
||||||
|
python3 setup.py test
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
mkdir -p "$pkgdir"
|
||||||
|
}
|
||||||
|
|
||||||
|
_py() {
|
||||||
|
local python="$1"
|
||||||
|
pkgdesc="$pkgdesc ${python#python}"
|
||||||
|
depends="$python"
|
||||||
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||||
|
|
||||||
|
cd "$builddir"
|
||||||
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
||||||
|
}
|
||||||
|
|
||||||
|
_py2() {
|
||||||
|
replaces="$pkgname"
|
||||||
|
depends="py2-six"
|
||||||
|
_py python2
|
||||||
|
}
|
||||||
|
|
||||||
|
_py3() {
|
||||||
|
depends="py3-six"
|
||||||
|
_py python3
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="7992e132bcd72696bc0acb19b94126340988b42a0db1aad9920788d66f79ce20bafc63af3b48db0a7690d5d92dd470a9343bad4f0d4716a2419956dcc3d04505 more-itertools-4.1.0.tar.gz"
|
0
community/tlp/tlp.initd
Normal file → Executable file
0
community/tlp/tlp.initd
Normal file → Executable file
Loading…
Reference in New Issue
Block a user