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/geventhttpclient/
Date: Thu, 07 Jan 2021 12:39:45
Message-Id: 1610023143.15012a3c339c0b0fcaea66e98ed80d95daec3131.mgorny@gentoo
1 commit: 15012a3c339c0b0fcaea66e98ed80d95daec3131
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 12:19:59 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 12:39:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15012a3c
7
8 dev-python/geventhttpclient: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/geventhttpclient/Manifest | 1 -
13 .../geventhttpclient-1.4.4-r1.ebuild | 50 ----------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/dev-python/geventhttpclient/Manifest b/dev-python/geventhttpclient/Manifest
17 index f79e41f622b..ac58fe5b04b 100644
18 --- a/dev-python/geventhttpclient/Manifest
19 +++ b/dev-python/geventhttpclient/Manifest
20 @@ -1,2 +1 @@
21 -DIST geventhttpclient-1.4.4.tar.gz 57620 BLAKE2B 20b60cfa7e8221b050bfd95a6e23c2f3eee87c0df1e93171719c7ba1804e88c918471cdd01cf4c6020fb6d44d0a1b911ee09dd44cc1e150b5d18d6052f2904cf SHA512 c6a8580707f3178a3a55eb638b9e3f36f82aecbd8a5ce044f0b8c167d88ad2bec584275bed6b720a5f7a546b0ffd113bec28dd2e1ff4290c60f0b5e13542b737
22 DIST geventhttpclient-1.4.5.tar.gz 58183 BLAKE2B 48d44048e7040552824ed19ac49c6dda41536ffded56bae0d942c06f111a327a1d571872f35f388853b479ea1aaa6de518f86e7ee72e362360492530ade65131 SHA512 9ffe00c79b145dab104e1dce336e072060f315d9bee880daf64b5f1f52e661d810dab9a60286320a7d30cf0e794465f201c039cc31fe7ec325cdb3a8350c9f7d
23
24 diff --git a/dev-python/geventhttpclient/geventhttpclient-1.4.4-r1.ebuild b/dev-python/geventhttpclient/geventhttpclient-1.4.4-r1.ebuild
25 deleted file mode 100644
26 index 5a2873ff93c..00000000000
27 --- a/dev-python/geventhttpclient/geventhttpclient-1.4.4-r1.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{6,7,8,9} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="A high performance, concurrent HTTP client library for Python using gevent"
39 -HOMEPAGE="https://github.com/gwik/geventhttpclient"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 ~arm arm64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="
49 - dev-python/certifi[${PYTHON_USEDEP}]
50 - dev-python/gevent[${PYTHON_USEDEP}]
51 - dev-python/six[${PYTHON_USEDEP}]
52 -"
53 -BDEPEND="
54 - test? (
55 - ${RDEPEND}
56 - dev-python/mock[${PYTHON_USEDEP}]
57 - dev-python/pytest[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -python_prepare_all() {
62 - # Skip SNI tests which require dpkt
63 - sed -i '/^import dpkt.ssl/d' src/geventhttpclient/tests/test_ssl.py || die
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -python_test() {
68 - local skipped_tests=(
69 - # Require dpkt
70 - src/geventhttpclient/tests/test_ssl.py::test_implicit_sni_from_host_in_ssl
71 - src/geventhttpclient/tests/test_ssl.py::test_implicit_sni_from_header_in_ssl
72 - src/geventhttpclient/tests/test_ssl.py::test_explicit_sni_in_ssl
73 - )
74 - # Append to sys.path to avoid ImportError
75 - # https://bugs.gentoo.org/667758
76 - # Skip tests which require internet access
77 - pytest --import-mode=append -vv ${skipped_tests[@]/#/--deselect } \
78 - -m "not online" || die "Tests failed with ${EPYTHON}"
79 -}