38 lines
1,017 B
Bash
38 lines
1,017 B
Bash
# Template file for 'python-idna'
|
|
pkgname=python-idna
|
|
version=2.6
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="idna-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
pycompile_module="idna"
|
|
short_desc="Internationalized Domain Names in Applications (IDNA) for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/kjd/idna"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/i/idna/idna-${version}.tar.gz"
|
|
checksum=2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f
|
|
|
|
post_install() {
|
|
vlicense LICENSE.rst LICENSE
|
|
}
|
|
|
|
python3-idna_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="idna"
|
|
replaces="python3.4-idna>=0"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.rst LICENSE
|
|
}
|
|
}
|
|
python3.4-idna_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-idna>=${version}_${revision}"
|
|
}
|