43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
# Template file for 'python-tqdm'
|
|
pkgname=python-tqdm
|
|
version=4.35.0
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="tqdm-${version}"
|
|
build_style=python-module
|
|
pycompile_module="tqdm"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Fast, extensible progress bar for Python and CLI (Python2)"
|
|
maintainer="bra1nwave <brainwave@openmailbox.org>"
|
|
license="MPL-2.0, MIT"
|
|
homepage="https://tqdm.github.io/"
|
|
distfiles="https://github.com/tqdm/tqdm/archive/v${version}.tar.gz"
|
|
checksum=d5b4b65db33ab88dd80a409d4dcbf8c56f002edecfb6c1a5ac13b5ec6879f8af
|
|
alternatives="
|
|
tqdm:tqdm:/usr/bin/tqdm2
|
|
tqdm:tqdm.1:/usr/share/man/man1/tqdm2.1"
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/${py2_sitelib}/tqdm/tqdm.1
|
|
vman tqdm/tqdm.1 tqdm2.1
|
|
vlicense LICENCE
|
|
}
|
|
|
|
python3-tqdm_package() {
|
|
alternatives="
|
|
tqdm:tqdm:/usr/bin/tqdm3
|
|
tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
|
|
archs=noarch
|
|
pycompile_module="tqdm"
|
|
depends="python3"
|
|
short_desc="${short_desc/2/3}"
|
|
pkg_install() {
|
|
rm -f ${DESTDIR}/${py3_sitelib}/tqdm/tqdm.1
|
|
vman tqdm/tqdm.1 tqdm3.1
|
|
vmove "usr/lib/python3*"
|
|
vmove usr/bin/tqdm3
|
|
vlicense LICENCE
|
|
}
|
|
}
|