1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/community/py3-cycler/APKBUILD
Natanael Copa 0bedd08011 community: orphan packages
Isaac no longer use Alpine and does not maintain his packages. Orphan
them as requested.
2021-05-17 07:30:22 +00:00

32 lines
865 B
Text

# Contributor: Isaac Dunham <ibid.ag@gmail.com>
# Maintainer:
pkgname=py3-cycler
_pkgname=cycler
pkgver=0.10.0
pkgrel=7
pkgdesc="Composable style cycles in Python"
url="https://matplotlib.org/cycler/"
arch="noarch"
license="BSD-3-Clause"
depends="python3 py3-six"
makedepends="py3-setuptools"
checkdepends="py3-nose"
source="https://files.pythonhosted.org/packages/source/C/Cycler/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
replaces="py-cycler" # Backwards compatibility
provides="py-cycler=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
check() {
python3 run_tests.py
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="b7d2ba19861ffaf4dea0444bfe68b5a6264a022d7b3f02c9ff5e5859e3901de12a90f8dc7469e995e09c418515b3df55dbf05a0cfe5368d40790a2c878a74819 cycler-0.10.0.tar.gz"