35 lines
923 B
Bash
35 lines
923 B
Bash
# Template file for 'python-netaddr'
|
|
pkgname=python-netaddr
|
|
version=0.7.19
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="netaddr-${version}"
|
|
build_style=python-module
|
|
pycompile_module="netaddr"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Python2 network address manipulation library"
|
|
maintainer="Felix Hanley <felix@userspace.com.au>"
|
|
homepage="https://github.com/drkjam/netaddr/"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/n/netaddr/netaddr-${version}.tar.gz"
|
|
checksum=38aeec7cdd035081d3a4c306394b19d677623bf76fa0913f6695127c7753aefd
|
|
alternatives="netaddr:netaddr:/usr/bin/netaddr2"
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-netaddr_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="netaddr"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="netaddr:netaddr:/usr/bin/netaddr3"
|
|
pkg_install() {
|
|
vmove usr/bin/netaddr3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|