From 34677dae9b19cf4c8731b99d41a97ec47c6c795e Mon Sep 17 00:00:00 2001 From: Britney Fransen Date: Sun, 16 Jul 2017 04:32:11 +0000 Subject: python-requests: initial inclusion. dep of flexget --- abs/core/python_modules/python-requests/PKGBUILD | 64 ++++++++++++++++++++++ .../python_modules/python-requests/__changelog | 2 + .../python_modules/python-requests/certs.patch | 14 +++++ 3 files changed, 80 insertions(+) create mode 100644 abs/core/python_modules/python-requests/PKGBUILD create mode 100644 abs/core/python_modules/python-requests/__changelog create mode 100644 abs/core/python_modules/python-requests/certs.patch diff --git a/abs/core/python_modules/python-requests/PKGBUILD b/abs/core/python_modules/python-requests/PKGBUILD new file mode 100644 index 0000000..d5e1fb4 --- /dev/null +++ b/abs/core/python_modules/python-requests/PKGBUILD @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Massimiliano Torromeo + +pkgbase=python-requests +pkgname=('python2-requests') +pkgver=2.18.1 +pkgrel=1 +pkgdesc="Python HTTP for Humans" +arch=('any') +url="http://python-requests.org" +license=('Apache') +makedepends=('python2-setuptools' 'python2-chardet' + 'python2-urllib3' 'python2-idna') +checkdepends=('python2-pytest-httpbin' + 'python2-pytest-mock' 'python2-pysocks') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/kennethreitz/requests/archive/v$pkgver.tar.gz" + certs.patch) +sha512sums=('a80e0487b4b729e69522817bc2eec2a9c5f1df34df385581b3e937c2409e0fcb4e1f9b4794b198c8b8a57fc05b1bc513fc70d41b324ae251de0fa9bc7c9e6947' + '424a3bb01b23409284f6c9cd2bc22d92df31b85cfd96e1d1b16b5d68adeca670dfed4fff7977d8b10980102b0f780eacc465431021fcd661f3a17168a02a39a3') + +prepare() { + cd "$srcdir"/requests-$pkgver + sed -i '/certifi/d' setup.py + patch -p1 -i "$srcdir"/certs.patch + + cd "$srcdir" + cp -a requests-$pkgver{,-py2} + find requests-$pkgver-py2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' -i {} + +} + +build() { +# cd "$srcdir"/requests-$pkgver +# python setup.py build + + cd "$srcdir"/requests-$pkgver-py2 + python2 setup.py build +} + +check() { +# cd "$srcdir"/requests-$pkgver +# py.test tests + + cd "$srcdir"/requests-$pkgver-py2 + py.test2 tests +} + +package_python-requests() { + depends=('python-urllib3' 'python-chardet' 'python-idna') + optdepends=('python-pysocks: SOCKS proxy support') + + cd "$srcdir"/requests-$pkgver + python setup.py install --skip-build -O1 --root="$pkgdir" +} + +package_python2-requests() { + depends=('python2-urllib3' 'python2-chardet' 'python2-idna') + optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support' + 'python2-grequests: asynchronous requests with gevent' + 'python2-pysocks: SOCKS proxy support') + + cd "$srcdir"/requests-$pkgver-py2 + python2 setup.py install --skip-build -O1 --root="$pkgdir" +} diff --git a/abs/core/python_modules/python-requests/__changelog b/abs/core/python_modules/python-requests/__changelog new file mode 100644 index 0000000..4f818ef --- /dev/null +++ b/abs/core/python_modules/python-requests/__changelog @@ -0,0 +1,2 @@ +PKGBUILD: don't build py 3 stuff + diff --git a/abs/core/python_modules/python-requests/certs.patch b/abs/core/python_modules/python-requests/certs.patch new file mode 100644 index 0000000..47a32f3 --- /dev/null +++ b/abs/core/python_modules/python-requests/certs.patch @@ -0,0 +1,14 @@ +diff --git a/requests/certs.py b/requests/certs.py +index d1a378d7..4e0bffd4 100644 +--- a/requests/certs.py ++++ b/requests/certs.py +@@ -12,7 +12,8 @@ If you are packaging Requests, e.g., for a Linux distribution or a managed + environment, you can change the definition of where() to return a separately + packaged CA bundle. + """ +-from certifi import where ++def where(): ++ return "/etc/ssl/certs/ca-certificates.crt" + + if __name__ == '__main__': + print(where()) -- cgit v0.12