# Maintainer: Drew DeVault pkgname=py-tqdm _pkgname=tqdm pkgver=4.32.2 pkgrel=0 pkgdesc="Fast, Extensible Progress Meter" url="https://pypi.python.org/pypi/tqdm" arch="noarch" license="MIT" makedepends="python2-dev python3-dev py-setuptools" subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2" 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" prepare() { default_prepare cd "$builddir" 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() { cd "$builddir" python2 setup.py build python3 setup.py build } check() { cd "$builddir" python2 setup.py test # Broken on our current Python build due to setuptools version conflict #python3 setup.py test } package() { mkdir -p "$pkgdir"/usr/bin ln -s tqdm-3 "$pkgdir"/usr/bin/tqdm } _py() { local python="$1" local pyver="${python:6:1}" pkgdesc="$pkgdesc ($python)" depends="$python" install_if="$pkgname=$pkgver-r$pkgrel $python" cd "$builddir" $python setup.py install --prefix=/usr --root="$subpkgdir" cd "$subpkgdir" # Add version suffix to executable. mv usr/bin/tqdm usr/bin/tqdm-$pyver } _py2() { _py python2 } _py3() { _py python3 } sha512sums="b39c0b488cef6935edc63ee73cde800678d8c3211abf74d6680274618086970a12b5bf9aaad9b6841fa2e84261d1348ceccf32c25f5a3afd8e1a1d1822f98d91 tqdm-4.32.2.tar.gz 227b39f92ef529762c455d6cb82a84f05af00a7d72b505082a749c1de959ab7814ef0b3b07df62c77ebc184671f5579718f000eaafa534b775b58427de935e96 0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch"