void-packages/srcpkgs/python-pyasn1/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

31 lines
789 B
Bash

# Template file for 'python-pyasn1'
pkgname=python-pyasn1
version=0.4.2
revision=1
noarch=yes
wrksrc="pyasn1-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python"
pycompile_module="pyasn1"
short_desc="ASN.1 library for Python2"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/etingof/pyasn1"
license="2-clause-BSD"
distfiles="${PYPI_SITE}/p/pyasn1/pyasn1-${version}.tar.gz"
checksum=d258b0a71994f7770599835249cece1caef3c70def868c4915e6e5ca49b67d15
post_install() {
vlicense LICENSE.rst LICENSE
}
python3-pyasn1_package() {
noarch=yes
depends="python3"
pycompile_module="pyasn1"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE.rst LICENSE
}
}