edac400a1e
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Template file for 'python-pytz'
|
|
pkgname=python-pytz
|
|
version=2016.7
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="pytz-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python tzdata"
|
|
pycompile_module="pytz"
|
|
short_desc="Python2 timezone library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://pythonhosted.org/pytz/"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.bz2"
|
|
checksum=6eab31709e3a4aea748457707da45e805b650cbb352583805d2417de2a1dd71e
|
|
|
|
post_install() {
|
|
# use system tz database
|
|
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/pytz/zoneinfo
|
|
for pyver in $python_versions; do
|
|
ln -sf /usr/share/zoneinfo \
|
|
${DESTDIR}/usr/lib/python${pyver}/site-packages/pytz/zoneinfo
|
|
done
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3-pytz_package() {
|
|
noarch=yes
|
|
depends="python3 tzdata"
|
|
pycompile_module="pytz"
|
|
replaces="python3.4-pytz>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|
|
python3.4-pytz_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-pytz>=${version}_${revision}"
|
|
}
|