[arch-commits] Commit in python-requests/repos (3 files)

Felix Yan felixonmars at gemini.archlinux.org
Mon Nov 29 22:16:10 UTC 2021


    Date: Monday, November 29, 2021 @ 22:16:10
  Author: felixonmars
Revision: 429495

archrelease: copy trunk to staging-any

Added:
  python-requests/repos/staging-any/
  python-requests/repos/staging-any/PKGBUILD
    (from rev 429494, python-requests/trunk/PKGBUILD)
  python-requests/repos/staging-any/certs.patch
    (from rev 429494, python-requests/trunk/certs.patch)

-------------+
 PKGBUILD    |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 certs.patch |   14 ++++++++++++++
 2 files changed, 63 insertions(+)

Copied: python-requests/repos/staging-any/PKGBUILD (from rev 429494, python-requests/trunk/PKGBUILD)
===================================================================
--- staging-any/PKGBUILD	                        (rev 0)
+++ staging-any/PKGBUILD	2021-11-29 22:16:10 UTC (rev 429495)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+
+pkgbase=python-requests
+pkgname=('python-requests')
+pkgver=2.26.0
+pkgrel=3
+pkgdesc="Python HTTP for Humans"
+arch=('any')
+url="http://python-requests.org"
+license=('Apache')
+depends=('python-urllib3' 'python-chardet' 'python-idna')
+makedepends=('python-setuptools' 'python-chardet'
+             'python-urllib3' 'python-idna')
+checkdepends=('python-pytest-httpbin' 'python-pytest-mock' 'python-pysocks' 'python-trustme')
+optdepends=('python-pysocks: SOCKS proxy support')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/psf/requests/archive/v$pkgver.tar.gz"
+        certs.patch)
+sha512sums=('df7b3fbef42e600434764b2ae3906546a778f8caab0111d818adef7c747d4d58e9977ac9ae25092e1170a2cde78234e64b779ba4afd84bb2bf7dbce6efb380e9'
+            '424a3bb01b23409284f6c9cd2bc22d92df31b85cfd96e1d1b16b5d68adeca670dfed4fff7977d8b10980102b0f780eacc465431021fcd661f3a17168a02a39a3')
+
+prepare() {
+  cd "$srcdir"/requests-$pkgver
+  # Stay with chardet for now: https://github.com/psf/requests/issues/5871
+  sed -e '/certifi/d' \
+      -e "s/,<.*'/'/" \
+      -e '/charset_normalizer/d' \
+      -i setup.py
+  patch -p1 -i "$srcdir"/certs.patch
+}
+
+build() {
+  cd "$srcdir"/requests-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Seems to be a problem about pytest-httpbin:
+  # pytest-httpbin server hit an exception serving request: [SSL: HTTP_REQUEST] http request (_ssl.c:1129)
+  # pytest-httpbin server hit an exception serving request: [SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1129)
+
+  cd requests-$pkgver
+  pytest tests --deselect tests/test_requests.py::TestRequests::test_pyopenssl_redirect
+}
+
+package() {
+  cd "$srcdir"/requests-$pkgver
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+}

Copied: python-requests/repos/staging-any/certs.patch (from rev 429494, python-requests/trunk/certs.patch)
===================================================================
--- staging-any/certs.patch	                        (rev 0)
+++ staging-any/certs.patch	2021-11-29 22:16:10 UTC (rev 429495)
@@ -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