void-packages/srcpkgs/python-urllib3/template
Alessio Sergi 6c9727bf61 python-urllib3: update to 1.10.2
Re-do unbundling without patch, with symlinks.
2015-02-28 20:02:42 +01:00

39 lines
1.1 KiB
Plaintext

# Template file for 'python-urllib3'
pkgname=python-urllib3
version=1.10.2
revision=1
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://github.com/shazow/urllib3"
license="MIT"
distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz"
checksum=5bfd0ee2bd559fc22e8f1273934aca77050de19ba0e77f2447cbb0dd44f06a16
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 ${wrksrc}/LICENSE.txt LICENSE
}
}