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 0B10613835A for ; Mon, 15 Mar 2021 23:30:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52BC9E085B; Mon, 15 Mar 2021 23:30:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34EA3E085B for ; Mon, 15 Mar 2021 23:30:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CD7B340F70 for ; Mon, 15 Mar 2021 23:30:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34B285B9 for ; Mon, 15 Mar 2021 23:30:54 +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: <1615850760.c8fe7197c0d6656614285bca88190a06f80477a6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nethogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild net-analyzer/nethogs/nethogs-0.8.6.ebuild X-VCS-Directories: net-analyzer/nethogs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c8fe7197c0d6656614285bca88190a06f80477a6 X-VCS-Branch: master Date: Mon, 15 Mar 2021 23:30:54 +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: 15177ea4-e9ad-497d-bcdb-4b4c20fea94a X-Archives-Hash: 7ac2656394ed37eee975c5c81f38338b commit: c8fe7197c0d6656614285bca88190a06f80477a6 Author: Sam James gentoo org> AuthorDate: Mon Mar 15 23:26:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 15 23:26:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8fe7197 net-analyzer/nethogs: keep stable keywords for 0.8.6-r1 Signed-off-by: Sam James gentoo.org> net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild | 3 ++- net-analyzer/nethogs/nethogs-0.8.6.ebuild | 33 ---------------------------- 2 files changed, 2 insertions(+), 34 deletions(-) diff --git a/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild b/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild index 4cf2b0092cb..16a6a36ff84 100644 --- a/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild +++ b/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild @@ -11,7 +11,8 @@ SRC_URI="https://github.com/raboof/nethogs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ia64 ~x86" +KEYWORDS="amd64 ~arm ~ia64 x86" + DOCS=( DESIGN README.decpcap.txt README.md ) RDEPEND=" diff --git a/net-analyzer/nethogs/nethogs-0.8.6.ebuild b/net-analyzer/nethogs/nethogs-0.8.6.ebuild deleted file mode 100644 index bef9dec145f..00000000000 --- a/net-analyzer/nethogs/nethogs-0.8.6.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="A small 'net top' tool, grouping bandwidth by process" -HOMEPAGE="https://github.com/raboof/nethogs" -SRC_URI="https://github.com/raboof/nethogs/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ia64 x86" - -RDEPEND=" - net-libs/libpcap - sys-libs/ncurses:0= -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_compile() { - tc-export CC CXX - emake NCURSES_LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )" ${PN} -} - -src_install() { - emake DESTDIR="${ED}" PREFIX="/usr" install - dodoc DESIGN README.decpcap.txt README.md -}