[arch-commits] Commit in python-requests/repos/testing-any (4 files)

Felix Yan felixonmars at archlinux.org
Fri Oct 19 02:32:39 UTC 2018


    Date: Friday, October 19, 2018 @ 02:32:39
  Author: felixonmars
Revision: 336864

archrelease: copy trunk to testing-any

Added:
  python-requests/repos/testing-any/PKGBUILD
    (from rev 336863, python-requests/trunk/PKGBUILD)
  python-requests/repos/testing-any/certs.patch
    (from rev 336863, python-requests/trunk/certs.patch)
Deleted:
  python-requests/repos/testing-any/PKGBUILD
  python-requests/repos/testing-any/certs.patch

-------------+
 PKGBUILD    |  132 ++++++++++++++++++++++++++++------------------------------
 certs.patch |   28 ++++++------
 2 files changed, 79 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-10-19 02:32:25 UTC (rev 336863)
+++ PKGBUILD	2018-10-19 02:32:39 UTC (rev 336864)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-
-pkgbase=python-requests
-pkgname=('python-requests' 'python2-requests')
-pkgver=2.19.1
-pkgrel=3
-pkgdesc="Python HTTP for Humans"
-arch=('any')
-url="http://python-requests.org"
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-chardet' 'python2-chardet'
-             'python-urllib3' 'python2-urllib3' 'python-idna' 'python2-idna')
-checkdepends=('python-pytest-httpbin' 'python2-pytest-httpbin' 'python-pytest-mock'
-              'python2-pytest-mock' 'python-pysocks' 'python2-pysocks')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/kennethreitz/requests/archive/v$pkgver.tar.gz"
-        certs.patch)
-sha512sums=('00adbbe63c88117fce25e4e2de4ddfb62f87276d627f97aaf8bc4afbf59a921cac57b87f51a0d99167b42d311fe8ca9723b2c5d3a9e04fb0ee318bf90fd9d4ed'
-            '424a3bb01b23409284f6c9cd2bc22d92df31b85cfd96e1d1b16b5d68adeca670dfed4fff7977d8b10980102b0f780eacc465431021fcd661f3a17168a02a39a3')
-
-prepare() {
-  cd "$srcdir"/requests-$pkgver
-  sed -e '/certifi/d' \
-      -e "s/,<.*'/'/" \
-      -i setup.py
-  patch -p1 -i "$srcdir"/certs.patch
-
-  sed -i 's/from urllib3.packages.ordered_dict import OrderedDict/from collections import OrderedDict/' requests/compat.py
-
-  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"
-}

Copied: python-requests/repos/testing-any/PKGBUILD (from rev 336863, python-requests/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-10-19 02:32:39 UTC (rev 336864)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+
+pkgbase=python-requests
+pkgname=('python-requests' 'python2-requests')
+pkgver=2.20.0
+pkgrel=1
+pkgdesc="Python HTTP for Humans"
+arch=('any')
+url="http://python-requests.org"
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-chardet' 'python2-chardet'
+             'python-urllib3' 'python2-urllib3' 'python-idna' 'python2-idna')
+checkdepends=('python-pytest-httpbin' 'python2-pytest-httpbin' 'python-pytest-mock'
+              'python2-pytest-mock' 'python-pysocks' 'python2-pysocks')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/kennethreitz/requests/archive/v$pkgver.tar.gz"
+        certs.patch)
+sha512sums=('766c69d1778e7286232fcd750842e89cd9bb6637076e80fe95fb67f3ccb14049bf74a533de91ef9451ac6f397ad0a6d148eb444009f501178138cdeffc5ee7c4'
+            '424a3bb01b23409284f6c9cd2bc22d92df31b85cfd96e1d1b16b5d68adeca670dfed4fff7977d8b10980102b0f780eacc465431021fcd661f3a17168a02a39a3')
+
+prepare() {
+  cd "$srcdir"/requests-$pkgver
+  sed -e '/certifi/d' \
+      -e "s/,<.*'/'/" \
+      -i 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"
+}

Deleted: certs.patch
===================================================================
--- certs.patch	2018-10-19 02:32:25 UTC (rev 336863)
+++ certs.patch	2018-10-19 02:32:39 UTC (rev 336864)
@@ -1,14 +0,0 @@
-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())

Copied: python-requests/repos/testing-any/certs.patch (from rev 336863, python-requests/trunk/certs.patch)
===================================================================
--- certs.patch	                        (rev 0)
+++ certs.patch	2018-10-19 02:32:39 UTC (rev 336864)
@@ -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())



More information about the arch-commits mailing list