Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/urllib3/
Date: Wed, 26 May 2021 20:39:49
Message-Id: 1622061579.83b3644f5aa5621aca73bc544ad9708d8bec3c81.mgorny@gentoo
1 commit: 83b3644f5aa5621aca73bc544ad9708d8bec3c81
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 20:03:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 20:39:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83b3644f
7
8 dev-python/urllib3: Bump to 1.26.5
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/urllib3/Manifest | 1 +
13 dev-python/urllib3/urllib3-1.26.5.ebuild | 66 ++++++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/dev-python/urllib3/Manifest b/dev-python/urllib3/Manifest
17 index 6ff68cf07a9..1db813682e5 100644
18 --- a/dev-python/urllib3/Manifest
19 +++ b/dev-python/urllib3/Manifest
20 @@ -1 +1,2 @@
21 DIST urllib3-1.26.4.tar.gz 293008 BLAKE2B 6ca88861baa87814d3856cd0f1fa0a6cb9e11ee745c782b598c4f5fe74b195ba47e8430b993ed8a5fb269153d700e4a803cd2ebc177e20e3186b3b26612262c7 SHA512 daf2ba432f2e4edaa6aa8c6bdaaea21fcb77cc5fdfd991f89b1f753b4f9901faab04120841e9fa8d93e2bd3d72cbdb647f1492d882266b4e0281c725e8d55a7a
22 +DIST urllib3-1.26.5.tar.gz 292865 BLAKE2B 0b22a485635f70f198c022c13d03af2b1a9b6907276e3bc3acaa2242e1c632447762f86e9588e735462e6479ff93a172f458691ea9bf28ceaebd5e1cfbc55501 SHA512 4a1899b223b00894d49f6dff5fc95d410e5b0ab28c11f7e3cd82d03e50438b0c5b0adf693a33fd80f1586312dc0012836713998674da15531bf82d52645881f6
23
24 diff --git a/dev-python/urllib3/urllib3-1.26.5.ebuild b/dev-python/urllib3/urllib3-1.26.5.ebuild
25 new file mode 100644
26 index 00000000000..921dcd09ce4
27 --- /dev/null
28 +++ b/dev-python/urllib3/urllib3-1.26.5.ebuild
29 @@ -0,0 +1,66 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..10} pypy3 )
36 +PYTHON_REQ_USE="ssl(+)"
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and more"
41 +HOMEPAGE="https://github.com/urllib3/urllib3"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 +IUSE="brotli test"
48 +RESTRICT="!test? ( test )"
49 +
50 +# dev-python/{pyopenssl,cryptography,idna,certifi} are optional runtime
51 +# dependencies. Do not add them to RDEPEND. They should be unnecessary with
52 +# modern versions of python (>= 3.2).
53 +RDEPEND="
54 + >=dev-python/PySocks-1.5.8[${PYTHON_USEDEP}]
55 + <dev-python/PySocks-2.0[${PYTHON_USEDEP}]
56 + brotli? ( dev-python/brotlicffi[${PYTHON_USEDEP}] )
57 +"
58 +BDEPEND="
59 + test? (
60 + $(python_gen_cond_dep "
61 + ${RDEPEND}
62 + dev-python/brotlicffi[\${PYTHON_USEDEP}]
63 + dev-python/mock[\${PYTHON_USEDEP}]
64 + dev-python/pytest[\${PYTHON_USEDEP}]
65 + dev-python/pytest-freezegun[\${PYTHON_USEDEP}]
66 + >=dev-python/trustme-0.5.3[\${PYTHON_USEDEP}]
67 + >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}]
68 + " python3_{6,7,8,9})
69 + )
70 +"
71 +
72 +python_prepare_all() {
73 + # tests failing if 'localhost.' cannot be resolved
74 + sed -e 's:test_dotted_fqdn:_&:' \
75 + -i test/with_dummyserver/test_https.py || die
76 + sed -e 's:test_request_host_header_ignores_fqdn_dot:_&:' \
77 + -i test/with_dummyserver/test_socketlevel.py || die
78 +
79 + distutils-r1_python_prepare_all
80 +}
81 +
82 +python_test() {
83 + local -x CI=1
84 + # FIXME: get tornado ported
85 + [[ ${EPYTHON} == python3* ]] || continue
86 + # tests skipped for now
87 + [[ ${EPYTHON} == python3.10 ]] && continue
88 +
89 + local deselect=(
90 + # TODO?
91 + test/with_dummyserver/test_socketlevel.py::TestSocketClosing::test_timeout_errors_cause_retries
92 + )
93 +
94 + epytest ${deselect[@]/#/--deselect }
95 +}