From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F403D1581B9 for ; Sun, 05 Oct 2025 05:57:46 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E083C3410C3 for ; Sun, 05 Oct 2025 05:57:46 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EBBB0110574; Sun, 05 Oct 2025 05:57:33 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E3156110574 for ; Sun, 05 Oct 2025 05:57:33 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96367340F69 for ; Sun, 05 Oct 2025 05:57:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4B953AA7 for ; Sun, 05 Oct 2025 05:57:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1759643767.55625baddf58533609d5b1f55ed55bc262fac3c0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iptraf-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/iptraf-ng/iptraf-ng-9999.ebuild X-VCS-Directories: net-analyzer/iptraf-ng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 55625baddf58533609d5b1f55ed55bc262fac3c0 X-VCS-Branch: master Date: Sun, 05 Oct 2025 05:57:30 +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: 0eecfb63-d0a2-4a15-a5f1-c55581365833 X-Archives-Hash: 1ab368fd37c665e68eec8d106989b9fd commit: 55625baddf58533609d5b1f55ed55bc262fac3c0 Author: Sam James gentoo org> AuthorDate: Sun Oct 5 05:51:21 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 5 05:56:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55625bad net-analyzer/iptraf-ng: drop 9999 Low upstream activity and maintainer-needed essentially. Signed-off-by: Sam James gentoo.org> net-analyzer/iptraf-ng/iptraf-ng-9999.ebuild | 60 ---------------------------- 1 file changed, 60 deletions(-) diff --git a/net-analyzer/iptraf-ng/iptraf-ng-9999.ebuild b/net-analyzer/iptraf-ng/iptraf-ng-9999.ebuild deleted file mode 100644 index d15aa1492515..000000000000 --- a/net-analyzer/iptraf-ng/iptraf-ng-9999.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit flag-o-matic git-r3 toolchain-funcs - -DESCRIPTION="A console-based network monitoring utility" -HOMEPAGE="https://github.com/iptraf-ng/iptraf-ng" -EGIT_REPO_URI="https://github.com/iptraf-ng/iptraf-ng" -EGIT_BRANCH="dev" - -LICENSE="GPL-2 doc? ( FDL-1.1 )" -SLOT="0" -KEYWORDS="" -IUSE="doc" - -RDEPEND=" - >=sys-libs/ncurses-5.7-r7:0= -" -DEPEND=" - ${RDEPEND} - virtual/os-headers -" -RESTRICT="test" - -src_prepare() { - sed -i \ - -e '/^CC =/d' \ - -e '/^CFLAGS/s:= -g -O2:+= :' \ - -e '/^LDFLAGS =/d' \ - -e 's|$(QUIET_[[:alpha:]]*)||g' \ - Makefile || die - sed -i \ - -e 's|IPTRAF|&-NG|g' \ - -e 's|IPTraf|&-NG|g' \ - -e 's|iptraf|&-ng|g' \ - src/*.8 || die - - default -} - -src_configure() { - # The configure script does not do very much we do not already control - append-cppflags '-DLOCKDIR=\"/run/lock/iptraf-ng\"' - tc-export CC -} - -src_install() { - dosbin ${PN} - - doman src/*.8 - dodoc AUTHORS CHANGES* FAQ README* - - if use doc; then - docinto html - dodoc -r Documentation/* - fi - - keepdir /var/{lib,log}/iptraf-ng #376157 -}