44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
# Contributor: Breno Leitao <breno.leitao@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py3-packaging
|
|
_pkgname=packaging
|
|
pkgver=21.3
|
|
pkgrel=2
|
|
pkgdesc="Core utilities for Python3 packages"
|
|
options="!check" # Requires py3-pytest which requires py3-setuptools
|
|
url="https://pypi.python.org/pypi/packaging"
|
|
arch="noarch"
|
|
license="Apache-2.0 AND BSD-2-Clause"
|
|
depends="python3 py3-parsing"
|
|
# disable check to break circular dep with py3-setuptools
|
|
checkdepends="py3-pytest py3-pretend"
|
|
source="https://files.pythonhosted.org/packages/source/p/packaging/packaging-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-packaging" # Backwards compatibility
|
|
provides="py-packaging=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
[ "$CARCH" = s390x ] && options="$options !check" # fails a lot
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$PWD/build/lib" python3 -m pytest \
|
|
--ignore=tests/test_manylinux.py \
|
|
--ignore=tests/test_markers.py \
|
|
--ignore=tests/test_specifiers.py \
|
|
--ignore=tests/test_tags.py \
|
|
--ignore=tests/test_version.py
|
|
# tests that require https://pypi.org/project/pretend/ are disabled
|
|
# above because py3-pretend hasn't been packaged for Alpine Linux
|
|
}
|
|
|
|
sha512sums="
|
|
2e3aa276a4229ac7dc0654d586799473ced9761a83aa4159660d37ae1a2a8f30e987248dd0e260e2834106b589f259a57ce9936eef0dcc3c430a99ac6b663e05 packaging-21.3.tar.gz
|
|
"
|