Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests/
Date: Wed, 29 Jun 2022 17:08:59
Message-Id: 1656522469.fba448dd7688e3cb981783116dfe7e95425f6a49.arthurzam@gentoo
1 commit: fba448dd7688e3cb981783116dfe7e95425f6a49
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 17:03:32 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 17:07:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba448dd
7
8 dev-python/requests: add 2.28.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/requests/Manifest | 1 +
13 dev-python/requests/requests-2.28.1.ebuild | 72 ++++++++++++++++++++++++++++++
14 2 files changed, 73 insertions(+)
15
16 diff --git a/dev-python/requests/Manifest b/dev-python/requests/Manifest
17 index f8811e10851e..c6f0bd8fec62 100644
18 --- a/dev-python/requests/Manifest
19 +++ b/dev-python/requests/Manifest
20 @@ -1,2 +1,3 @@
21 DIST requests-2.27.1.tar.gz 106758 BLAKE2B a7fed53998fa61b3d03abd254a0cee76450c5b60d76f80aa6b91f32dca1dae5d2c51987b3d3f2138d72c50790e35c36cb03eb5974554ac4eb1a902eff79b5bdd SHA512 e51916abea8125254c5ee72c97e84a73e6981cab09961486873387522d2ce041ee3fe8fa2ff0b9bbe6707eefdc05145e9adcf127bcd999dea127acdfabd5312f
22 DIST requests-2.28.0.tar.gz 109748 BLAKE2B 1df85b90ab1f6c551e46593dc8640aa0629505c9b395ca2100c6af04435e1360503b215d9796c34fb09122ffd616e1a01ca3574ac4543b4857c76a3dd86f13fe SHA512 111cfd2d0b0267111ccad0a97b33c5e9565812e6e6728b7d5bdbe06c32fae9e637b220bda605d799409e57dc6aaf3bcc66a4a4605cdbccb439367dc492fb836f
23 +DIST requests-2.28.1.tar.gz 109805 BLAKE2B 2106be5f9e1d9f1a22de5522b5d72084f91c2849e60e33b89b2411b76cae9b1f7faac34947f69c49480d001e9b77e4dce723ee939d51591882854d510db49b59 SHA512 c123ec07171c2c7c34e4173b97750adfa313b4312d91c0d58e4eb8750361604017e5b370c23ec886d2cbf704f9074ec5ad0fa9c2cd8e6f9521532adafff39d41
24
25 diff --git a/dev-python/requests/requests-2.28.1.ebuild b/dev-python/requests/requests-2.28.1.ebuild
26 new file mode 100644
27 index 000000000000..d144dda70c93
28 --- /dev/null
29 +++ b/dev-python/requests/requests-2.28.1.ebuild
30 @@ -0,0 +1,72 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
35 +EAPI=7
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
39 +PYTHON_REQ_USE="threads(+)"
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="HTTP library for human beings"
44 +HOMEPAGE="
45 + https://requests.readthedocs.io/
46 + https://github.com/psf/requests/
47 + https://pypi.org/project/requests/
48 +"
49 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
54 +IUSE="socks5"
55 +
56 +RDEPEND="
57 + >=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
58 + dev-python/charset_normalizer[${PYTHON_USEDEP}]
59 + <dev-python/idna-4[${PYTHON_USEDEP}]
60 + <dev-python/urllib3-1.27[${PYTHON_USEDEP}]
61 + socks5? ( >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}] )
62 +"
63 +
64 +BDEPEND="
65 + test? (
66 + dev-python/pytest-httpbin[${PYTHON_USEDEP}]
67 + dev-python/pytest-mock[${PYTHON_USEDEP}]
68 + >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
69 + !alpha? ( !hppa? ( !ia64? (
70 + dev-python/trustme[${PYTHON_USEDEP}]
71 + ) ) )
72 + )
73 +"
74 +
75 +PATCHES=(
76 + "${FILESDIR}"/${PN}-2.28.0-drop-dependency-warnings.patch
77 +)
78 +
79 +distutils_enable_tests pytest
80 +
81 +python_test() {
82 + local EPYTEST_DESELECT=(
83 + # Internet (doctests)
84 + requests/__init__.py::requests
85 + requests/api.py::requests.api.request
86 + requests/models.py::requests.models.PreparedRequest
87 + requests/sessions.py::requests.sessions.Session
88 + # require IPv4 interface in 10.* range
89 + tests/test_requests.py::TestTimeout::test_connect_timeout
90 + tests/test_requests.py::TestTimeout::test_total_timeout_connect
91 + # TODO: openssl?
92 + tests/test_requests.py::TestRequests::test_pyopenssl_redirect
93 + )
94 +
95 + if ! has_version "dev-python/trustme[${PYTHON_USEDEP}]"; then
96 + EPYTEST_DESELECT+=(
97 + tests/test_requests.py::TestRequests::test_https_warnings
98 + )
99 + fi
100 +
101 + epytest
102 +}