# Template file for 'python-urllib3' pkgname=python-urllib3 version=1.25.11 revision=1 wrksrc="urllib3-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" depends="python-six" short_desc="HTTP library with thread-safe connection pooling (Python2)" maintainer="Alessio Sergi " license="MIT" homepage="https://urllib3.readthedocs.io/" distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz" checksum=8d7eaa5a82a1cac232164990f04874c594c9453ec55eef02eab885aa02fc17a2 post_install() { # replace bundled copy of six for pyver in $py2_ver $py3_ver; 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 } python3-urllib3_package() { depends="python3-six" short_desc="${short_desc/Python2/Python3}" pkg_install() { vmove usr/lib/python3* vlicense LICENSE.txt } }