void-packages/srcpkgs/python-pytz/template
2015-10-27 16:17:00 +01:00

42 lines
1.1 KiB
Bash

# Template file for 'python-pytz'
pkgname=python-pytz
version=2015.7
revision=1
noarch=yes
wrksrc="pytz-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
depends="python tzdata"
pycompile_module="pytz"
short_desc="Python2 timezone library"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://pythonhosted.org/pytz/"
license="MIT"
distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.gz"
checksum=99266ef30a37e43932deec2b7ca73e83c8dbc3b9ff703ec73eca6b1dae6befea
pre_build() {
sed -i '/^#!/d' pytz/tzfile.py
}
post_install() {
# use system tz database
for pyver in $python_versions; do
rm -rf ${DESTDIR}/usr/lib/python${pyver}/site-packages/pytz/zoneinfo
ln -sf /usr/share/zoneinfo \
${DESTDIR}/usr/lib/python${pyver}/site-packages/pytz/zoneinfo
done
vlicense LICENSE.txt LICENSE
}
python3.4-pytz_package() {
noarch=yes
depends="python3.4 tzdata"
pycompile_version="3.4"
pycompile_module="pytz"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE.txt LICENSE
}
}