summaryrefslogtreecommitdiff
path: root/main/py3-packaging/APKBUILD
blob: b471be3c960e88c76b25eb5703006e44bb379531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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
"