diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-12-12 09:06:27 +0100 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2020-12-12 10:58:45 -0500 |
commit | 3989b18e518ef2d8dad25595eb139e23254bfaee (patch) | |
tree | 36a61a069694cd14acfe77377b85398291d76c04 /dev-python/urllib3 | |
parent | dev-python/spyder: remove unused patch (diff) | |
download | gentoo-3989b18e518ef2d8dad25595eb139e23254bfaee.tar.gz gentoo-3989b18e518ef2d8dad25595eb139e23254bfaee.tar.bz2 gentoo-3989b18e518ef2d8dad25595eb139e23254bfaee.zip |
dev-python/urllib3: remove unused patch(es)
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18614
Diffstat (limited to 'dev-python/urllib3')
-rw-r--r-- | dev-python/urllib3/files/urllib3-1.26.2-brotlicffi.patch | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/dev-python/urllib3/files/urllib3-1.26.2-brotlicffi.patch b/dev-python/urllib3/files/urllib3-1.26.2-brotlicffi.patch deleted file mode 100644 index b7cbf9bb7e9e..000000000000 --- a/dev-python/urllib3/files/urllib3-1.26.2-brotlicffi.patch +++ /dev/null @@ -1,65 +0,0 @@ -From 14bcf7004a143f7a6fb2df9a48196a113d531f50 Mon Sep 17 00:00:00 2001 -From: Seth Michael Larson <sethmichaellarson@gmail.com> -Date: Tue, 1 Dec 2020 20:09:32 -0600 -Subject: [PATCH] Switch to Brotli C bindings for CPython, brotlicffi for - non-CPython - ---- - setup.cfg | 3 ++- - setup.py | 5 ++++- - src/urllib3/response.py | 5 ++++- - src/urllib3/util/request.py | 5 ++++- - 7 files changed, 16 insertions(+), 18 deletions(-) - -diff --git a/setup.cfg b/setup.cfg -index 90b79d8c5..31a465b58 100644 ---- a/setup.cfg -+++ b/setup.cfg -@@ -15,7 +15,7 @@ requires-dist = - idna>=2.0.0; extra == 'secure' - certifi; extra == 'secure' - PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks' -- brotlipy>=0.6.0; extra == 'brotli' -+ brotlicffi>=0.8.0; extra == 'brotli' - - [tool:pytest] - xfail_strict = true -diff --git a/setup.py b/setup.py -index 2d449b095..02071aa58 100755 ---- a/setup.py -+++ b/setup.py -@@ -109,7 +109,7 @@ - requires=[], - python_requires=">=3.6, <4", - extras_require={ -- "brotli": ["brotlipy>=0.6.0"], -+ "brotli": ["brotlicffi>=0.8.0"], - "secure": [ - "pyOpenSSL>=0.14", - "cryptography>=1.3.4", -diff --git a/src/urllib3/response.py b/src/urllib3/response.py -index 77b6ffc16..d277120ee 100644 ---- a/src/urllib3/response.py -+++ b/src/urllib3/response.py -@@ -7,7 +7,7 @@ - from socket import timeout as SocketTimeout - - try: -- import brotli -+ import brotlicffi as brotli - except ImportError: - brotli = None - -diff --git a/src/urllib3/util/request.py b/src/urllib3/util/request.py -index 6cbdad9b4..64d40641d 100644 ---- a/src/urllib3/util/request.py -+++ b/src/urllib3/util/request.py -@@ -11,7 +11,7 @@ - - ACCEPT_ENCODING = "gzip,deflate" - try: -- import brotli as _unused_module_brotli # noqa: F401 -+ import brotlicffi as _unused_module_brotli # noqa: F401 - except ImportError: - pass - else: |