From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DA85158092 for ; Thu, 16 Sep 2021 19:24:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FA13E086E; Thu, 16 Sep 2021 19:24:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47FDCE086E for ; Thu, 16 Sep 2021 19:24:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DBCD4342FEB for ; Thu, 16 Sep 2021 19:24:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 799E674 for ; Thu, 16 Sep 2021 19:24:04 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1631820198.6bd9517a0e01eac49dc75653d9a17fb1db0aac22.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/httpstat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/httpstat/httpstat-1.3.1.ebuild X-VCS-Directories: net-misc/httpstat/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 6bd9517a0e01eac49dc75653d9a17fb1db0aac22 X-VCS-Branch: master Date: Thu, 16 Sep 2021 19:24:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 422b3b9f-8a66-4498-848c-7eec44e818fb X-Archives-Hash: 1950f92c4bfc02957ebce56142bdea2f commit: 6bd9517a0e01eac49dc75653d9a17fb1db0aac22 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Sep 16 19:23:18 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Sep 16 19:23:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd9517a net-misc/httpstat: enable py3.10, enable net tests Signed-off-by: Arthur Zamarin gentoo.org> net-misc/httpstat/httpstat-1.3.1.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/net-misc/httpstat/httpstat-1.3.1.ebuild b/net-misc/httpstat/httpstat-1.3.1.ebuild index d4395f533ca..23b0e7a7cb7 100644 --- a/net-misc/httpstat/httpstat-1.3.1.ebuild +++ b/net-misc/httpstat/httpstat-1.3.1.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) -DISTUTILS_USE_SETUPTOOLS=rdepend +EAPI=7 +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and clarity" @@ -15,11 +14,11 @@ LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="net-misc/curl:*" # Requires access to google.com and http2.akamai.com RESTRICT="test" +PROPERTIES="test_network" PATCHES=( "${FILESDIR}"/${PN}-1.2.1-gentoo-tests.patch )