commit:     077b3a8d230a05ad039c2012f2457a00ba6d8312
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  2 18:26:16 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug  2 18:52:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077b3a8d

dev-python/responses: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/responses/Manifest                      |  1 -
 .../files/responses-0.23.1-urllib3-2.patch         | 85 ----------------------
 dev-python/responses/responses-0.23.1-r1.ebuild    | 50 -------------
 dev-python/responses/responses-0.23.1-r2.ebuild    | 55 --------------
 4 files changed, 191 deletions(-)

diff --git a/dev-python/responses/Manifest b/dev-python/responses/Manifest
index 86e37f4b82a0..e11593895696 100644
--- a/dev-python/responses/Manifest
+++ b/dev-python/responses/Manifest
@@ -1,3 +1,2 @@
-DIST responses-0.23.1.tar.gz 72966 BLAKE2B 
e75db65ab98ebf7773c469dee5486b52b6f5c1f39d847c6f38a65e664c244937716c792cf009c750019043845b95c11ea38f99d68137899ef2ef48e60edc0c2a
 SHA512 
2c05ac5c4ccca351940d3821b0830cee366cd7c9637f1e4c1e6b40c72ed2168a1036de634f03bfaaa2f7270e3825f6d9e8d31fc7a16f321f1de1cc64255454a1
 DIST responses-0.23.2.tar.gz 73678 BLAKE2B 
b49d04c9be0844c948ab7a8d8b8b81da152d4b7c47330937846262c45db6d562b107d7a864a07cc77d568491a8dafdd873fc6484ebf04d50d99441838474ecfb
 SHA512 
f18f7b747871a4bffba59787b2c84d26799bed2f949c0e977fbd2ef6341425957bb27cc2beb067f75892a4b9a5af3d40f28083482950a4a6e29144fc1d529cff
 DIST responses-0.23.3.tar.gz 73737 BLAKE2B 
e246dc09832f996b085f84b4b90d58709dc283a51e6de6f67a50096f1550b9e11f2e8f809043e366d7dc1140511bc9be16aeeaa5218da6fc05b1b60a1c924800
 SHA512 
334beb4a0cdabce2bedd1e336c4af04a38818b8b90c9d0ffbbf3445f72f8c57cc03278e832c6442f9ecfec24723c567bfba76ad25c45cf2924e42d5108c51c7a

diff --git a/dev-python/responses/files/responses-0.23.1-urllib3-2.patch 
b/dev-python/responses/files/responses-0.23.1-urllib3-2.patch
deleted file mode 100644
index fbe466d65707..000000000000
--- a/dev-python/responses/files/responses-0.23.1-urllib3-2.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From 071306524af1b4ee1797c45a46525274d271a9b6 Mon Sep 17 00:00:00 2001
-From: Maksim Beliaev <[email protected]>
-Date: Tue, 9 May 2023 21:14:27 +0200
-Subject: [PATCH] fix test compatibility with urllib3 (#636)
-
-- Upgrade urllib3 and requests
----
- CHANGES                           | 6 ++++++
- README.rst                        | 2 +-
- responses/tests/test_responses.py | 9 +++++----
- setup.py                          | 4 ++--
- 4 files changed, 14 insertions(+), 7 deletions(-)
-
-diff --git a/CHANGES b/CHANGES
-index f3a0080..f6a8d12 100644
---- a/CHANGES
-+++ b/CHANGES
-@@ -1,3 +1,9 @@
-+0.23.2
-+------
-+
-+* Updated dependency to urllib3>=2 and requests>=2.30.0. See #635
-+
-+
- 0.23.1
- ------
- 
-diff --git a/README.rst b/README.rst
-index cfdf0b2..7d790eb 100644
---- a/README.rst
-+++ b/README.rst
-@@ -17,7 +17,7 @@ A utility library for mocking out the ``requests`` Python 
library.
- 
- ..  note::
- 
--    Responses requires Python 3.7 or newer, and requests >= 2.22.0
-+    Responses requires Python 3.7 or newer, and requests >= 2.30.0
- 
- 
- Table of Contents
-diff --git a/responses/tests/test_responses.py 
b/responses/tests/test_responses.py
-index 90c1d65..c264e4e 100644
---- a/responses/tests/test_responses.py
-+++ b/responses/tests/test_responses.py
-@@ -1498,9 +1498,10 @@ def 
test_auto_calculate_content_length_doesnt_override_existing_value():
-             headers={"Content-Length": "2"},
-             auto_calculate_content_length=True,
-         )
--        resp = requests.get(url)
--        assert_response(resp, "test")
--        assert resp.headers["Content-Length"] == "2"
-+        with pytest.raises(ChunkedEncodingError) as excinfo:
-+            requests.get(url)
-+
-+        assert "IncompleteRead(4 bytes read, -2 more expected)" in 
str(excinfo.value)
- 
-     run()
-     assert_reset()
-@@ -2416,7 +2417,7 @@ class TestMaxRetry:
-                 total=total,
-                 backoff_factor=0.1,
-                 status_forcelist=[500],
--                method_whitelist=["GET", "POST", "PATCH"],
-+                allowed_methods=["GET", "POST", "PATCH"],
-                 raise_on_status=raise_on_status,
-             )
-         )
-diff --git a/setup.py b/setup.py
-index 6d01ad2..f61b30a 100644
---- a/setup.py
-+++ b/setup.py
-@@ -17,8 +17,8 @@ from setuptools.command.test import test as TestCommand
- setup_requires = []
- 
- install_requires = [
--    "requests>=2.22.0,<3.0",
--    "urllib3>=1.25.10",
-+    "requests>=2.30.0,<3.0",
-+    "urllib3>=2.0.0,<3.0",
-     "pyyaml",
-     "types-PyYAML",
-     "typing_extensions; python_version < '3.8'",
--- 
-2.40.1
-

diff --git a/dev-python/responses/responses-0.23.1-r1.ebuild 
b/dev-python/responses/responses-0.23.1-r1.ebuild
deleted file mode 100644
index 641bf634c75a..000000000000
--- a/dev-python/responses/responses-0.23.1-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Utility for mocking out the Python Requests library"
-HOMEPAGE="
-       https://pypi.org/project/responses/
-       https://github.com/getsentry/responses/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86"
-
-# tomli backend is optional now, with pyyaml being the new default.
-# However, keeping it unconditional here for backwards compatibility.
-RDEPEND="
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       <dev-python/requests-3[${PYTHON_USEDEP}]
-       >=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
-       $(python_gen_cond_dep '
-               dev-python/tomli[${PYTHON_USEDEP}]
-       ' 3.{8..10})
-       dev-python/tomli-w[${PYTHON_USEDEP}]
-       >=dev-python/urllib3-1.25.10[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-       test? (
-               dev-python/pytest-httpserver[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       # remove unnecessary RDEP on type stubs
-       sed -i -e '/types-/d' setup.py || die
-       distutils-r1_src_prepare
-}
-
-python_test() {
-       epytest -p no:localserver
-}

diff --git a/dev-python/responses/responses-0.23.1-r2.ebuild 
b/dev-python/responses/responses-0.23.1-r2.ebuild
deleted file mode 100644
index 242add7fef13..000000000000
--- a/dev-python/responses/responses-0.23.1-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Utility for mocking out the Python Requests library"
-HOMEPAGE="
-       https://pypi.org/project/responses/
-       https://github.com/getsentry/responses/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-
-# tomli backend is optional now, with pyyaml being the new default.
-# However, keeping it unconditional here for backwards compatibility.
-RDEPEND="
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       <dev-python/requests-3[${PYTHON_USEDEP}]
-       >=dev-python/requests-2.30.0[${PYTHON_USEDEP}]
-       $(python_gen_cond_dep '
-               dev-python/tomli[${PYTHON_USEDEP}]
-       ' 3.{8..10})
-       dev-python/tomli-w[${PYTHON_USEDEP}]
-       <dev-python/urllib3-3[${PYTHON_USEDEP}]
-       >=dev-python/urllib3-2.0.0[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-       test? (
-               dev-python/pytest-httpserver[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-PATCHES=(
-       "${FILESDIR}/${P}-urllib3-2.patch"
-)
-
-src_prepare() {
-       distutils-r1_src_prepare
-       # remove unnecessary RDEP on type stubs
-       sed -i -e '/types-/d' setup.py || die
-}
-
-python_test() {
-       epytest -p no:localserver
-}

Reply via email to