31 lines
880 B
Bash
31 lines
880 B
Bash
# Template file for 'python-requests'
|
|
pkgname=python-requests
|
|
version=2.18.4
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="requests-${version}"
|
|
build_style=python-module
|
|
pycompile_module="requests"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="ca-certificates python-chardet python-urllib3 python-idna"
|
|
short_desc="Python2 HTTP library for human beings"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://python-requests.org/"
|
|
license="Apache-2.0"
|
|
distfiles="${PYPI_SITE}/r/requests/requests-${version}.tar.gz"
|
|
checksum=9c443e7324ba5b85070c4a818ade28bfabedf16ea10206da1132edaa6dda237e
|
|
|
|
pre_build() {
|
|
sed -i '/certifi/d' setup.py
|
|
}
|
|
|
|
python3-requests_package() {
|
|
noarch=yes
|
|
pycompile_module="requests"
|
|
depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|