void-packages/srcpkgs/python-urllib3/template
2016-10-07 15:09:10 +02:00

39 lines
1.1 KiB
Bash

# Template file for 'python-urllib3'
pkgname=python-urllib3
version=1.18
revision=2
noarch=yes
wrksrc="urllib3-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
depends="python-six"
pycompile_module="urllib3"
short_desc="HTTP library with thread-safe connection pooling (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://urllib3.readthedocs.io/"
license="MIT"
distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz"
checksum=d30dd4d1cbbc36ebab6e4a2076820cfe0c60f10adf087fecbc5a3edae79fdc81
post_install() {
# replace bundled copy of six
for pyver in $python_versions; do
rm -f ${DESTDIR}/usr/lib/python${pyver}/site-packages/urllib3/packages/six.py
ln -sf ../../six.py ${DESTDIR}/usr/lib/python${pyver}/site-packages/urllib3/packages/six.py
done
vlicense LICENSE.txt LICENSE
}
python3.4-urllib3_package() {
noarch=yes
depends="python3.4-six"
pycompile_version="3.4"
pycompile_module="urllib3"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE.txt LICENSE
}
}