39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
# Template file for 'python-pytz'
|
|
pkgname=python-pytz
|
|
version=2021.3
|
|
revision=2
|
|
wrksrc="pytz-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python tzdata"
|
|
checkdepends="python-pytest python3-pytest"
|
|
short_desc="Python2 timezone library"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="MIT"
|
|
homepage="https://pythonhosted.org/pytz/"
|
|
distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.gz"
|
|
checksum=acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326
|
|
|
|
do_check() {
|
|
PYTHONPATH=build-2.7/lib python2 -m pytest
|
|
PYTHONPATh=build-${py3_ver}/lib python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
# use system tz database
|
|
for py_sitelib in $py2_sitelib $py3_sitelib; do
|
|
rm -rf ${DESTDIR}/${py_sitelib}/pytz/zoneinfo
|
|
ln -sf /usr/share/zoneinfo ${DESTDIR}/${py_sitelib}/pytz/zoneinfo
|
|
done
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3-pytz_package() {
|
|
depends="python3 tzdata"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|