commit:     241df8932bc30058b73a03d2e6605c70f5fdca9a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 15 08:40:06 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun 15 08:41:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=241df893

dev-python/requests: Remove old

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

 dev-python/requests/Manifest               |  2 -
 dev-python/requests/requests-2.32.1.ebuild | 82 ------------------------------
 dev-python/requests/requests-2.32.2.ebuild | 82 ------------------------------
 profiles/package.mask                      |  6 ---
 4 files changed, 172 deletions(-)

diff --git a/dev-python/requests/Manifest b/dev-python/requests/Manifest
index 154343007820..efbbda4ca0b8 100644
--- a/dev-python/requests/Manifest
+++ b/dev-python/requests/Manifest
@@ -1,3 +1 @@
-DIST requests-2.32.1.tar.gz 129920 BLAKE2B 
9f46afeb3ea62e8bb537fb793bcf1b65b5cc2ae3f22263151b0bf5879aa2a11a1e87777453cc325f552964551750ef81524ef99ce132bb19df5161e1df5fe77f
 SHA512 
6ae12ca26f04c3c001ef1882d17cd7f12412114214961db42d6b5f3f507640d1f07e325034761e02e7e5d9daacaab10a16884c2cb2c4128ca059a142b52bace8
-DIST requests-2.32.2.tar.gz 130327 BLAKE2B 
46fd3e49a63f55133126a1896bb693050a63a062c7258f119e285a735004671b12595debd87955b5f6f084996495e8a100bb0b09a43c376df0dcb0a6a8d083e2
 SHA512 
6f85e41f30d8bdf8d3343092d7fc163342c22c21cf0490eabd65cb66b59a464fbd6a4cd28f1f3ab1eac636adff2a8d55ded54c40351df93deafeb2aba62bcbde
 DIST requests-2.32.3.tar.gz 131218 BLAKE2B 
c36bd80e0544e83b80c001e6bfdde7b8552e65b888d44d781f95d5a6302dd34dfd4368e18dbfeab3a014d7170946c502e3bf3a6dbd027a60a2f0f535c674d75c
 SHA512 
20d413597ff4803a62156ada25ef2e8a5edd0d4dbf7d79cc7fcd88d51a76e019a7dacf41d7c3d546306f37c506ede68f16b9afea57c918db64e702382b1ae420

diff --git a/dev-python/requests/requests-2.32.1.ebuild 
b/dev-python/requests/requests-2.32.1.ebuild
deleted file mode 100644
index a59ea6ebead2..000000000000
--- a/dev-python/requests/requests-2.32.1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="HTTP library for human beings"
-HOMEPAGE="
-       https://requests.readthedocs.io/
-       https://github.com/psf/requests/
-       https://pypi.org/project/requests/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
-IUSE="socks5 test-rust"
-
-RDEPEND="
-       >=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
-       <dev-python/charset-normalizer-4[${PYTHON_USEDEP}]
-       <dev-python/idna-4[${PYTHON_USEDEP}]
-       <dev-python/urllib3-3[${PYTHON_USEDEP}]
-       socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
-"
-
-BDEPEND="
-       test? (
-               >=dev-python/pytest-httpbin-2.0.0[${PYTHON_USEDEP}]
-               dev-python/pytest-mock[${PYTHON_USEDEP}]
-               >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
-               test-rust? (
-                       dev-python/trustme[${PYTHON_USEDEP}]
-               )
-       )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # Internet (doctests)
-               requests/__init__.py::requests
-               requests/api.py::requests.api.request
-               requests/models.py::requests.models.PreparedRequest
-               requests/sessions.py::requests.sessions.Session
-               # require IPv4 interface in 10.* range
-               tests/test_requests.py::TestTimeout::test_connect_timeout
-               tests/test_requests.py::TestTimeout::test_total_timeout_connect
-               # TODO: openssl?
-               tests/test_requests.py::TestRequests::test_pyopenssl_redirect
-               # flask-2
-               
tests/test_requests.py::TestRequests::test_cookie_sent_on_redirect
-               
tests/test_requests.py::TestRequests::test_cookie_removed_on_expire
-               
tests/test_requests.py::TestPreparingURLs::test_redirecting_to_bad_url
-       )
-
-       case ${EPYTHON} in
-               python3.13)
-                       ;&
-               python3.12)
-                       EPYTEST_DESELECT+=(
-                               # different repr()
-                               
requests/utils.py::requests.utils.from_key_val_list
-                       )
-                       ;;
-       esac
-
-       if ! has_version "dev-python/trustme[${PYTHON_USEDEP}]"; then
-               EPYTEST_DESELECT+=(
-                       
tests/test_requests.py::TestRequests::test_https_warnings
-               )
-       fi
-
-       epytest
-}

diff --git a/dev-python/requests/requests-2.32.2.ebuild 
b/dev-python/requests/requests-2.32.2.ebuild
deleted file mode 100644
index 35aa92871750..000000000000
--- a/dev-python/requests/requests-2.32.2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="HTTP library for human beings"
-HOMEPAGE="
-       https://requests.readthedocs.io/
-       https://github.com/psf/requests/
-       https://pypi.org/project/requests/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
-IUSE="socks5 test-rust"
-
-RDEPEND="
-       >=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
-       <dev-python/charset-normalizer-4[${PYTHON_USEDEP}]
-       <dev-python/idna-4[${PYTHON_USEDEP}]
-       <dev-python/urllib3-3[${PYTHON_USEDEP}]
-       socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
-"
-
-BDEPEND="
-       test? (
-               >=dev-python/pytest-httpbin-2.0.0[${PYTHON_USEDEP}]
-               dev-python/pytest-mock[${PYTHON_USEDEP}]
-               >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
-               test-rust? (
-                       dev-python/trustme[${PYTHON_USEDEP}]
-               )
-       )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # Internet (doctests)
-               requests/__init__.py::requests
-               requests/api.py::requests.api.request
-               requests/models.py::requests.models.PreparedRequest
-               requests/sessions.py::requests.sessions.Session
-               # require IPv4 interface in 10.* range
-               tests/test_requests.py::TestTimeout::test_connect_timeout
-               tests/test_requests.py::TestTimeout::test_total_timeout_connect
-               # TODO: openssl?
-               tests/test_requests.py::TestRequests::test_pyopenssl_redirect
-               # flask-2
-               
tests/test_requests.py::TestRequests::test_cookie_sent_on_redirect
-               
tests/test_requests.py::TestRequests::test_cookie_removed_on_expire
-               
tests/test_requests.py::TestPreparingURLs::test_redirecting_to_bad_url
-       )
-
-       case ${EPYTHON} in
-               python3.13)
-                       ;&
-               python3.12)
-                       EPYTEST_DESELECT+=(
-                               # different repr()
-                               
requests/utils.py::requests.utils.from_key_val_list
-                       )
-                       ;;
-       esac
-
-       if ! has_version "dev-python/trustme[${PYTHON_USEDEP}]"; then
-               EPYTEST_DESELECT+=(
-                       
tests/test_requests.py::TestRequests::test_https_warnings
-               )
-       fi
-
-       epytest
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 248be7fef473..3c01fde03859 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -414,12 +414,6 @@ sec-keys/openpgp-keys-jiatan
 # 20240-06-26.
 dev-ruby/uconv
 
-# Michał Górny <[email protected]> (2024-05-26)
-# Upstream broke support for custom ssl_context, and they are still
-# debating what the best way forward is.
-# https://github.com/psf/requests/pull/6667#issuecomment-2124283071
-=dev-python/requests-2.32.2
-
 # Arthur Zamarin <[email protected]> (2024-05-23)
 # EAPI=6, maintainer-needed, dead HOMEPAGE, fails to compile.
 # Removal on 2024-06-22.  Bugs #932571, #902899, #887625, #853025, #672702.

Reply via email to