40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'python-tempora'
|
|
pkgname=python-tempora
|
|
version=1.13
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="tempora-${version}"
|
|
build_style=python-module
|
|
pycompile_module="tempora"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-six python-pytz"
|
|
short_desc="Objects and routines pertaining to date and time (Python2)"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="MIT"
|
|
homepage="https://github.com/jaraco/tempora"
|
|
distfiles="${PYPI_SITE}/t/tempora/tempora-${version}.tar.gz"
|
|
checksum=4848df474c9d7ad9515fbeaadc88e48843176b4b90393652156ccff613bcaeb1
|
|
alternatives="tempora:calc-prorate:/usr/bin/calc-prorate2"
|
|
|
|
pre_build() {
|
|
sed -i setup.py \
|
|
-e '/setuptools_scm/d' \
|
|
-e "s|use_scm_version=True|version='${version}'|"
|
|
}
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-tempora_package() {
|
|
noarch=yes
|
|
pycompile_module="tempora"
|
|
depends="python3-setuptools python3-six python3-pytz"
|
|
alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|