# Maintainer: Drew DeVault pkgname=py3-tqdm _pkgname=tqdm pkgver=4.46.0 pkgrel=0 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" depends="python3" makedepends="py3-setuptools" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" 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="ccdfce4d273e78ced172fc3edb24ac038465169f7b765e7bf779831ef3d0dc72c648c5fb165aba02e0c6dc86c5d0ea3d93d5530b642ddd84e3d284c7354739cf tqdm-4.46.0.tar.gz"