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/httpcore/
Date: Thu, 23 Jun 2022 08:17:32
Message-Id: 1655972242.4c9c8cb9e03c0046036a04fe71cda3f633ba360f.mgorny@gentoo
1 commit: 4c9c8cb9e03c0046036a04fe71cda3f633ba360f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 08:08:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 08:17:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9c8cb9
7
8 dev-python/httpcore: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/httpcore/Manifest | 1 -
13 dev-python/httpcore/httpcore-0.14.7-r1.ebuild | 52 ---------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/httpcore/Manifest b/dev-python/httpcore/Manifest
17 index 304187d6e61e..616aa6598a01 100644
18 --- a/dev-python/httpcore/Manifest
19 +++ b/dev-python/httpcore/Manifest
20 @@ -1,2 +1 @@
21 -DIST httpcore-0.14.7.gh.tar.gz 75844 BLAKE2B 50d5fac7f44996cc5a08b4f994c2109b173e5b9fea080c8740309b799421d012a70280a84fffe93e290bf425e5ee6eb1bfcb74aff81fa7e737c21f25019e6664 SHA512 6865e97f9b84846bb4e9304ea358b0a28d66fd2d1e244e8a2a439ee446a294ecbc68ac07d5a718fd1c3eceaa44a391d7a8f7f2ca659f1674eb17a90f39987d48
22 DIST httpcore-0.15.0.gh.tar.gz 76220 BLAKE2B e9a346d4f77cde82be5a3eb468123ae453753e57b54382f0b2c60b16afd3433cba173d9a796df20d76edbd8b5bcf2d61c32302bdd30c8d587036b3ac6f0425fd SHA512 3c25630d582448e3c7d46176c8862e4d92c6c4aac954bfe46b06e26297b32f996db2e002a87c7187accb5bf4ef86e82d7f9051404bee651ce5254119571d0c95
23
24 diff --git a/dev-python/httpcore/httpcore-0.14.7-r1.ebuild b/dev-python/httpcore/httpcore-0.14.7-r1.ebuild
25 deleted file mode 100644
26 index 58fcda4426da..000000000000
27 --- a/dev-python/httpcore/httpcore-0.14.7-r1.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 -
38 -inherit distutils-r1 optfeature
39 -
40 -DESCRIPTION="A minimal low-level HTTP client"
41 -HOMEPAGE="
42 - https://www.encode.io/httpcore/
43 - https://github.com/encode/httpcore/
44 - https://pypi.org/project/httpcore/
45 -"
46 -SRC_URI="
47 - https://github.com/encode/httpcore/archive/${PV}.tar.gz
48 - -> ${P}.gh.tar.gz"
49 -
50 -LICENSE="BSD"
51 -SLOT="0"
52 -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
53 -
54 -RDEPEND="
55 - =dev-python/anyio-3*[${PYTHON_USEDEP}]
56 - dev-python/certifi[${PYTHON_USEDEP}]
57 - <dev-python/h11-0.14[${PYTHON_USEDEP}]
58 - <dev-python/h2-5[${PYTHON_USEDEP}]
59 - =dev-python/sniffio-1*[${PYTHON_USEDEP}]
60 -"
61 -BDEPEND="
62 - test? (
63 - dev-python/pytest-asyncio[${PYTHON_USEDEP}]
64 - dev-python/pytest-httpbin[${PYTHON_USEDEP}]
65 - dev-python/pytest-trio[${PYTHON_USEDEP}]
66 - dev-python/socksio[${PYTHON_USEDEP}]
67 - dev-python/trio[${PYTHON_USEDEP}]
68 - dev-python/trustme[${PYTHON_USEDEP}]
69 - )
70 -"
71 -
72 -distutils_enable_tests pytest
73 -
74 -src_prepare() {
75 - sed -i -e '/h11/s:,<0.13::' setup.py || die
76 - distutils-r1_src_prepare
77 -}
78 -
79 -pkg_postinst() {
80 - optfeature "SOCKS support" dev-python/socksio
81 -}