void-packages/srcpkgs/python-serpent/template
2017-08-28 02:03:32 +02:00

39 lines
1 KiB
Bash

# Template file for 'python-serpent'
pkgname=python-serpent
version=1.23
revision=2
wrksrc="${pkgname#*-}-${version}"
noarch=yes
build_style=python-module
pycompile_module="serpent.py"
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
short_desc="Serialization library based on ast.literal_eval (Python2)"
maintainer="pulux <pulux@pf4sh.de>"
license="MIT"
homepage="https://pypi.python.org/pypi/serpent"
distfiles="${PYPI_SITE}/s/serpent/serpent-${version}.tar.gz"
checksum=8480ce3d8864b8974d9fe396998c6a7dae96edb68edf905bfd32ea9a11853ba5
post_install() {
head -n 4 setup.py | tail -n 3 > LICENSE
vlicense LICENSE
}
python3-serpent_package() {
noarch=yes
depends="python3"
pycompile="serpent.py"
replaces="python3.4-serpent>=0"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
}
}
python3.4-serpent_package() {
noarch=yes
build_style=meta
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
depends="python3-serpent>=${version}_${revision}"
}