Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/httpstat/
Date: Thu, 16 Sep 2021 19:24:09
Message-Id: 1631820198.6bd9517a0e01eac49dc75653d9a17fb1db0aac22.arthurzam@gentoo
1 commit: 6bd9517a0e01eac49dc75653d9a17fb1db0aac22
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 16 19:23:18 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 16 19:23:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd9517a
7
8 net-misc/httpstat: enable py3.10, enable net tests
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 net-misc/httpstat/httpstat-1.3.1.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/net-misc/httpstat/httpstat-1.3.1.ebuild b/net-misc/httpstat/httpstat-1.3.1.ebuild
16 index d4395f533ca..23b0e7a7cb7 100644
17 --- a/net-misc/httpstat/httpstat-1.3.1.ebuild
18 +++ b/net-misc/httpstat/httpstat-1.3.1.ebuild
19 @@ -1,10 +1,9 @@
20 # Copyright 1999-2021 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI="7"
24 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
25 -DISTUTILS_USE_SETUPTOOLS=rdepend
26 +EAPI=7
27
28 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
29 inherit distutils-r1
30
31 DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and clarity"
32 @@ -15,11 +14,11 @@ LICENSE="MIT"
33 SLOT="0"
34 KEYWORDS="amd64 x86"
35
36 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
37 RDEPEND="net-misc/curl:*"
38
39 # Requires access to google.com and http2.akamai.com
40 RESTRICT="test"
41 +PROPERTIES="test_network"
42
43 PATCHES=( "${FILESDIR}"/${PN}-1.2.1-gentoo-tests.patch )