void-packages/srcpkgs/python-requests/template

45 lines
1.4 KiB
Bash
Raw Normal View History

2013-08-25 06:11:05 +00:00
# Template file for 'python-requests'
pkgname=python-requests
2015-05-06 07:56:02 +00:00
version=2.7.0
2014-12-17 09:21:51 +00:00
revision=1
noarch=yes
wrksrc="requests-${version}"
2014-02-22 22:55:53 +00:00
build_style="python-module"
python_versions="2.7 3.4"
2014-10-29 22:50:31 +00:00
hostmakedepends="
python-setuptools python3.4-setuptools python-chardet python3.4-chardet
python-urllib3 python3.4-urllib3"
makedepends="${hostmakedepends}"
depends="python-chardet python-urllib3 ca-certificates"
pycompile_module="requests"
short_desc="Python HTTP for Humans (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
2013-08-25 06:11:05 +00:00
homepage="http://docs.python-requests.org/en/latest/"
license="Apache-2.0"
distfiles="${PYPI_SITE}/r/requests/requests-${version}.tar.gz"
2015-05-06 07:56:02 +00:00
checksum=398a3db6d61899d25fd4a06c6ca12051b0ce171d705decd7ed5511517b4bb93d
2014-02-22 22:55:53 +00:00
pre_build() {
# remove bundled cacerts
rm -f requests/cacert.pem
}
post_install() {
# replace bundled copy of chardet and urllib3
for pyver in $python_versions; do
rm -rf ${DESTDIR}/usr/lib/python${pyver}/site-packages/requests/packages/{chardet,urllib3}
ln -sf ../../chardet ${DESTDIR}/usr/lib/python${pyver}/site-packages/requests/packages/chardet
ln -sf ../../urllib3 ${DESTDIR}/usr/lib/python${pyver}/site-packages/requests/packages/urllib3
done
}
python3.4-requests_package() {
noarch=yes
depends="python3.4-chardet python3.4-urllib3 ca-certificates"
pycompile_version="3.4"
pycompile_module="requests"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
}
}