commit:     3989b18e518ef2d8dad25595eb139e23254bfaee
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Dec 12 08:06:27 2020 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 15:58:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3989b18e

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 <AT> gmail.com>
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18614

 .../urllib3/files/urllib3-1.26.2-brotlicffi.patch  | 65 ----------------------
 1 file changed, 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 b7cbf9bb7e9..00000000000
--- 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 <[email protected]>
-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:

Reply via email to