aports/testing/py3-iniparse/APKBUILD
2024-08-30 23:26:25 +02:00

33 lines
967 B
Text

# Maintainer:
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
pkgname=py3-iniparse
_pkgname=iniparse
pkgver=0.5
pkgrel=7
pkgdesc="INI parser library for Python"
url="https://github.com/candlepin/python-iniparse"
arch="noarch"
license="MIT"
makedepends="py3-setuptools py3-gpep517"
subpackages="$pkgname-doc $pkgname-pyc"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
options="!check" # Testsuite loader broken
replaces="py-iniparse" # Backwards compatibility
provides="py-iniparse=$pkgver-r$pkgrel" # Backwards compatibility
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
package() {
gpep517 install-wheel --destdir "$pkgdir" \
.dist/*.whl
}
sha512sums="
b3f10d1b36497c3c5c71cb0a1ac73d74d8944f4ad3b7acc4a4b0246c2f1a20c184d9af20bbb3cb8ec4f57fddfb5e103b92688847debb4200ef0583353d7f9556 iniparse-0.5.tar.gz
"