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/hpack/
Date: Thu, 16 Mar 2023 18:13:18
Message-Id: 1678990277.faf4c6df1a18873cb04eba93e0e23e9584ca157e.mgorny@gentoo
1 commit: faf4c6df1a18873cb04eba93e0e23e9584ca157e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 18:09:48 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 18:11:17 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf4c6df
7
8 dev-python/hpack: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/hpack/Manifest | 1 -
13 dev-python/hpack/hpack-3.0.0-r1.ebuild | 44 ----------------------------------
14 dev-python/hpack/hpack-3.0.0.ebuild | 40 -------------------------------
15 3 files changed, 85 deletions(-)
16
17 diff --git a/dev-python/hpack/Manifest b/dev-python/hpack/Manifest
18 index 5a78d6f92ee8..854dd72c0ae9 100644
19 --- a/dev-python/hpack/Manifest
20 +++ b/dev-python/hpack/Manifest
21 @@ -1,2 +1 @@
22 -DIST hpack-3.0.0.tar.gz 5305971 BLAKE2B d1df8a1b2a1ce8b91e63cab475d3957f937fb74c0bec343d342971be1bb7cfbc929c53cf041845df2965cef0cfb098345bf0612acabc7ef3e5e23f6f0aa44f2f SHA512 7b9cf5e643dff2a6454bfe419b797c8ed1a0fe6ec3b725d2696da5a820ab96fe87a64e600b1831c7024bd82616b155a0aa058301acb32172155b6538ba0a73c6
23 DIST hpack-4.0.0.tar.gz 5301419 BLAKE2B 0164f6aafc0d1f17f6c397efe710503a22501faae3c7dbba4e57ca2dc76e4d373bc5e65bf55acda8bc61975d12f8a2084de0e0c4587539e5a3102e3cf66d562b SHA512 f482d086d7a82649393e3cfea55c98966ce57055cb1826bc4dec1ea334661c02708e7903f2e8e588ee1c30df41373e1de9fb960c2e7bbc18d0ace0b8f97b195b
24
25 diff --git a/dev-python/hpack/hpack-3.0.0-r1.ebuild b/dev-python/hpack/hpack-3.0.0-r1.ebuild
26 deleted file mode 100644
27 index 5ce4b72bd759..000000000000
28 --- a/dev-python/hpack/hpack-3.0.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2023 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{9..11} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Pure-Python HPACK header compression"
42 -HOMEPAGE="
43 - https://python-hyper.org/projects/hpack/en/latest/
44 - https://github.com/python-hyper/hpack/
45 - https://pypi.org/project/hpack/
46 -"
47 -SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
52 -
53 -# dev-python/pytest-relaxed causes tests to fail
54 -BDEPEND="
55 - test? (
56 - >=dev-python/hypothesis-3.4.2[${PYTHON_USEDEP}]
57 - !!dev-python/pytest-relaxed[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -distutils_enable_tests pytest
62 -
63 -PATCHES=(
64 - "${FILESDIR}"/hpack-3.0.0-hypothesis-healthcheck.patch
65 -)
66 -
67 -EPYTEST_DESELECT=(
68 - # relies on outdated exception strings
69 - test/test_table.py::TestHeaderTable::test_get_by_index_out_of_range
70 -)
71 -
72 -EPYTEST_IGNORE=(
73 - bench
74 -)
75
76 diff --git a/dev-python/hpack/hpack-3.0.0.ebuild b/dev-python/hpack/hpack-3.0.0.ebuild
77 deleted file mode 100644
78 index 5486b7db607d..000000000000
79 --- a/dev-python/hpack/hpack-3.0.0.ebuild
80 +++ /dev/null
81 @@ -1,40 +0,0 @@
82 -# Copyright 1999-2023 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=7
86 -PYTHON_COMPAT=( python3_{9..10} pypy3 )
87 -
88 -inherit distutils-r1
89 -
90 -DESCRIPTION="Pure-Python HPACK header compression"
91 -HOMEPAGE="
92 - https://python-hyper.org/hpack/en/latest/
93 - https://pypi.org/project/hpack/"
94 -SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
95 -
96 -LICENSE="MIT"
97 -SLOT="0"
98 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
99 -
100 -# dev-python/pytest-relaxed causes tests to fail
101 -BDEPEND="
102 - test? (
103 - >=dev-python/hypothesis-3.4.2[${PYTHON_USEDEP}]
104 - !!dev-python/pytest-relaxed[${PYTHON_USEDEP}]
105 - )
106 -"
107 -
108 -distutils_enable_tests pytest
109 -
110 -PATCHES=(
111 - "${FILESDIR}"/hpack-3.0.0-hypothesis-healthcheck.patch
112 -)
113 -
114 -python_test() {
115 - local deselect=(
116 - # relies on outdated exception strings
117 - test/test_table.py::TestHeaderTable::test_get_by_index_out_of_range
118 - )
119 -
120 - epytest hpack test ${deselect[@]/#/--deselect }
121 -}