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/urllib3/
Date: Fri, 07 Jan 2022 16:49:32
Message-Id: 1641574156.292ada82d128d248699b777ed6a05d9abc5f744d.arthurzam@gentoo
1 commit: 292ada82d128d248699b777ed6a05d9abc5f744d
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 7 16:32:55 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 7 16:49:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=292ada82
7
8 dev-python/urllib3: add 1.26.8
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/urllib3/Manifest | 1 +
13 dev-python/urllib3/urllib3-1.26.8.ebuild | 60 ++++++++++++++++++++++++++++++++
14 2 files changed, 61 insertions(+)
15
16 diff --git a/dev-python/urllib3/Manifest b/dev-python/urllib3/Manifest
17 index 6dc700bc75f4..8a6f8142e297 100644
18 --- a/dev-python/urllib3/Manifest
19 +++ b/dev-python/urllib3/Manifest
20 @@ -1 +1,2 @@
21 DIST urllib3-1.26.7.tar.gz 291350 BLAKE2B 5a95ea4df2e5a66ac7f3059b5453e122ae0e40531a23cb743e5a9574778a370d0cee3cb63fe6b29483b27c4a6ec498266ec5a0434db882ce0a79fb8d8400e08d SHA512 6f5a5e6dd5ff99950fcc051495e0a698153b57e20b6c83d869b54c7fece9616909bcf2fe99efc40815f8722996ad93e430bf765ce5c629b912690c286014b86f
22 +DIST urllib3-1.26.8.tar.gz 294280 BLAKE2B 401801b16c0c5152cabdfe3317cc53bc79a5aec103cc53a22189dcefcf0d022a05f6afac0bd99274a2fe48b6e86da8eb544b78e4c3a1534f000a9756ff15ccd9 SHA512 bcb56faa5dbe6019f70b63c076e118ec5f89e2d0c25f0e415d9db079532c98ced7e636cec5bf26210d4b0a08bb7b5b7a33a5c8648ccdaad129eea3a212a53bc5
23
24 diff --git a/dev-python/urllib3/urllib3-1.26.8.ebuild b/dev-python/urllib3/urllib3-1.26.8.ebuild
25 new file mode 100644
26 index 000000000000..01b718ef8c5b
27 --- /dev/null
28 +++ b/dev-python/urllib3/urllib3-1.26.8.ebuild
29 @@ -0,0 +1,60 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +PYTHON_REQ_USE="ssl(+)"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and more"
42 +HOMEPAGE="https://github.com/urllib3/urllib3"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 +IUSE="brotli test"
49 +RESTRICT="!test? ( test )"
50 +
51 +# dev-python/{pyopenssl,cryptography,idna,certifi} are optional runtime
52 +# dependencies. Do not add them to RDEPEND. They should be unnecessary with
53 +# modern versions of python (>= 3.2).
54 +RDEPEND="
55 + >=dev-python/PySocks-1.5.8[${PYTHON_USEDEP}]
56 + <dev-python/PySocks-2.0[${PYTHON_USEDEP}]
57 + brotli? ( dev-python/brotlicffi[${PYTHON_USEDEP}] )
58 +"
59 +BDEPEND="
60 + test? (
61 + $(python_gen_cond_dep "
62 + ${RDEPEND}
63 + dev-python/brotlicffi[\${PYTHON_USEDEP}]
64 + dev-python/mock[\${PYTHON_USEDEP}]
65 + dev-python/pytest[\${PYTHON_USEDEP}]
66 + dev-python/pytest-freezegun[\${PYTHON_USEDEP}]
67 + >=dev-python/trustme-0.5.3[\${PYTHON_USEDEP}]
68 + >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}]
69 + " python3_{8..10})
70 + )
71 +"
72 +
73 +python_test() {
74 + local -x CI=1
75 + # FIXME: get tornado ported
76 + # please keep in sync with BDEPEND!
77 + if ! has "${EPYTHON}" python3.{8..10}; then
78 + einfo "Skipping tests on ${EPYTHON}"
79 + return
80 + fi
81 +
82 + local EPYTEST_DESELECT=(
83 + # TODO?
84 + test/contrib/test_pyopenssl.py::TestHTTPS_TLSv1_3::test_verified
85 + test/with_dummyserver/test_socketlevel.py::TestSocketClosing::test_timeout_errors_cause_retries
86 + )
87 +
88 + epytest
89 +}