aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-tqdm/APKBUILD
blob: 61943e50a37b153634ab125d310c78e7206dca61 (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
45
46
47
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=py3-tqdm
_pkgname=tqdm
pkgver=4.34.0
pkgrel=1
pkgdesc="Fast, Extensible Progress Meter"
options="!check" # Broken on our current Python build due to setuptools version conflict
url="https://pypi.python.org/pypi/tqdm"
arch="noarch"
license="MIT"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
	0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch"
builddir="$srcdir/$_pkgname-$pkgver"

replaces="py-tqdm" # Backwards compatibility
provides="py-tqdm=$pkgver-r$pkgrel" # Backwards compatibility

prepare() {
	default_prepare
	case "$CARCH" in
		# FIXME: remove selected failing tests on selected arches
		aarch64) rm tqdm/tests/tests_perf.py;;
		s390x) rm tqdm/tests/tests_perf.py;;
		x86) rm tqdm/tests/tests_synchronisation.py;;
	esac
}

build() {
	python3 setup.py build
}

check() {
	python3 setup.py test
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"

	mv "$pkgdir"/usr/bin/tqdm "$pkgdir"/usr/bin/tqdm-3

	mkdir -p "$pkgdir"/usr/bin
	ln -s tqdm-3 "$pkgdir"/usr/bin/tqdm
}

sha512sums="e89c5189faa596b5821a3c9ba1538f97f28df61928f6e1d028a2dbd649e59bd998e226359ddb0bd4e012ba77575d6610b1283d1289cd46f78b8f8fdf3bb3e4e7  tqdm-4.34.0.tar.gz
227b39f92ef529762c455d6cb82a84f05af00a7d72b505082a749c1de959ab7814ef0b3b07df62c77ebc184671f5579718f000eaafa534b775b58427de935e96  0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch"