1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/community/py3-configobj/APKBUILD
2023-01-19 03:06:15 +01:00

36 lines
973 B
Text

# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=py3-configobj
pkgver=5.0.8
pkgrel=0
pkgdesc="Python3 library for reading and writing of configuration files (ini)"
url="https://github.com/DiffSK/configobj"
arch="noarch"
license="BSD-3-Clause"
depends="python3 py3-six"
makedepends="py3-setuptools py3-gpep517 py3-wheel"
checkdepends="py3-pytest"
source="https://pypi.python.org/packages/source/c/configobj/configobj-$pkgver.tar.gz"
builddir="$srcdir"/configobj-$pkgver
options="!check" # no tests on pypi
replaces="py-configobj" # Backwards compatibility
provides="py-configobj=$pkgver-r$pkgrel" # Backwards compatibility
build() {
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
}
check() {
pytest
}
package() {
python3 -m installer -d "$pkgdir" \
dist/*.whl
}
sha512sums="
056b1be5b2c50b03af2dbbdc37d7c0b90b1ce39e0e02aa299e7e9975f0d8445fece4224da9f73ec52ca113c7fe14c91627fbb5c12dd19c78a5aebe9aac0d9b2e configobj-5.0.8.tar.gz
"