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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DAB95158043 for ; Sun, 3 Mar 2024 20:03:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18B84E2AB6; Sun, 3 Mar 2024 20:03:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0C84E2AB6 for ; Sun, 3 Mar 2024 20:03:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA96833BDFF for ; Sun, 3 Mar 2024 20:03:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3667111CC for ; Sun, 3 Mar 2024 20:03:03 +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: <1709495899.58530b829061e6ec519a3acd6b5165a91952a963.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/httpstat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/httpstat/Manifest 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: 58530b829061e6ec519a3acd6b5165a91952a963 X-VCS-Branch: master Date: Sun, 3 Mar 2024 20:03:03 +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: 64a28888-92c5-4e5d-b5f4-25265d60017d X-Archives-Hash: 00a8cc4eb80406cc4ec830de26499478 commit: 58530b829061e6ec519a3acd6b5165a91952a963 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Mar 3 19:58:19 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Mar 3 19:58:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58530b82 net-misc/httpstat: drop 1.3.1 Signed-off-by: Arthur Zamarin gentoo.org> net-misc/httpstat/Manifest | 1 - net-misc/httpstat/httpstat-1.3.1.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/net-misc/httpstat/Manifest b/net-misc/httpstat/Manifest index 6c21f9db0e5c..24e6d33804cc 100644 --- a/net-misc/httpstat/Manifest +++ b/net-misc/httpstat/Manifest @@ -1,2 +1 @@ DIST httpstat-1.3.1.gh.tar.gz 97691 BLAKE2B f7a5388c3891c1caac654c6c9be425864e2a037eba2e12229ec72c847864f7be23b64d5450ebb42f976335f5b6ca878f1ee555ee3b2178c1a10c5969f883604d SHA512 bca91afe14d50af37c741ca4baa7d3843b010bb6dc012c72bd28c43f59099c20628cadc4dd80652dffeb1d26fb07f5cf156a3f6bf9eba1f6e121d4b250020b46 -DIST httpstat-1.3.1.tar.gz 97691 BLAKE2B f7a5388c3891c1caac654c6c9be425864e2a037eba2e12229ec72c847864f7be23b64d5450ebb42f976335f5b6ca878f1ee555ee3b2178c1a10c5969f883604d SHA512 bca91afe14d50af37c741ca4baa7d3843b010bb6dc012c72bd28c43f59099c20628cadc4dd80652dffeb1d26fb07f5cf156a3f6bf9eba1f6e121d4b250020b46 diff --git a/net-misc/httpstat/httpstat-1.3.1.ebuild b/net-misc/httpstat/httpstat-1.3.1.ebuild deleted file mode 100644 index 381ef2db3345..000000000000 --- a/net-misc/httpstat/httpstat-1.3.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and clarity" -HOMEPAGE="https://github.com/reorx/httpstat" -SRC_URI="https://github.com/reorx/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -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 ) - -python_test() { - ./httpstat_test.sh || die -}