mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
21 lines
518 B
Plaintext
21 lines
518 B
Plaintext
# description : Python HTTP for Humans
|
|
# depends : python3-chardet python3-idna python3-urllib3
|
|
|
|
name=python3-requests
|
|
version=2.22.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz
|
|
certs.patch)
|
|
md5sum=(ee28bee2de76e9198fc41e48f3a7dd47
|
|
8701cd93ae4c4448cca368243d9b86f5)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
|
|
sed -e '/certifi/d' -i setup.py
|
|
patch -p1 -i $SRC/certs.patch
|
|
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root=$PKG
|
|
}
|