void-packages/srcpkgs/python-serpent/template
Alessio Sergi e993283ae6 python-serpent: rebuild for Python 3.5
Switch to python3-* pkgs.
Convert python3.4-* pkg into dummy pkg.
2016-10-16 19:43:17 +02:00

38 lines
1 KiB
Bash

# Template file for 'python-serpent'
pkgname=python-serpent
version=1.15
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=f5bc2cd19b79e7ac0821cc8278c4be7a69b2eef07d96f3c6f7977e14b2098c79
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}"
}