public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron Bauman" <bman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iptraf-ng/
Date: Mon, 14 Dec 2020 15:34:03 +0000 (UTC)	[thread overview]
Message-ID: <1607960039.2144bd3cb935e676db7cb397aa9663903904a31c.bman@gentoo> (raw)

commit:     2144bd3cb935e676db7cb397aa9663903904a31c
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 15:33:02 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 15:33:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2144bd3c

net-analyzer/iptraf-ng: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 net-analyzer/iptraf-ng/Manifest                  |  2 -
 net-analyzer/iptraf-ng/iptraf-ng-1.1.4-r1.ebuild | 62 ------------------------
 net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild | 60 -----------------------
 3 files changed, 124 deletions(-)

diff --git a/net-analyzer/iptraf-ng/Manifest b/net-analyzer/iptraf-ng/Manifest
index 31a22d69eb8..148254cc234 100644
--- a/net-analyzer/iptraf-ng/Manifest
+++ b/net-analyzer/iptraf-ng/Manifest
@@ -1,3 +1 @@
-DIST iptraf-ng-1.1.4.tar.gz 583306 BLAKE2B c06fdc25838901fc5528057ade5ebe28b5679a6a545f461cef2a5f4d3cbc1346a7ab3e94f4fe317a1760067e480c3c622df1027591d978b0ac1236ba9203e9da SHA512 8cafb0000cec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774
-DIST iptraf-ng-1.2.0.tar.gz 324969 BLAKE2B 45a67fc64b5ab518339e55adfc158c8cf10eacded15941545d8d7cee19c954aae2619c39a11b1eeaa79f5a381b5dcf2e6a6e0b8fdd7e78e75f41ab10b71e6a0a SHA512 6dc3b5deb7c6fb3776ce696492975db43c13fa2d1d956712e7738ef34ac1bfc5f5d63a5211ba8e9fabf391e8bc5560c08c5d5e219b0cfe067e3499b2c02e6f3d
 DIST iptraf-ng-1.2.1.tar.gz 325177 BLAKE2B 9b8df7fa24711b401464d492993b9c27424ec7ab6230218d1b792a66e5fb60c99b5cdb92ac1b5a6da578c4b10da79333f248f14d10e74057118aadf50263a4ed SHA512 44d36fc92cdbf379f62cb63638663c3ee610225b9c28d60ee55e62e358f398a6b0db281129327b3472e45fb553ee3dd605af09c129f2233f8839ae3dbd799384

diff --git a/net-analyzer/iptraf-ng/iptraf-ng-1.1.4-r1.ebuild b/net-analyzer/iptraf-ng/iptraf-ng-1.1.4-r1.ebuild
deleted file mode 100644
index 3a2bcb201de..00000000000
--- a/net-analyzer/iptraf-ng/iptraf-ng-1.1.4-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A console-based network monitoring utility"
-HOMEPAGE="http://fedorahosted.org/iptraf-ng/"
-SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2 doc? ( FDL-1.1 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE="doc"
-
-RESTRICT="test"
-
-RDEPEND="
-	>=sys-libs/ncurses-5.7-r7:0=
-"
-DEPEND="
-	${RDEPEND}
-	virtual/os-headers
-	!net-analyzer/iptraf
-"
-
-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' \
-		-e 's|rvnamed|&-ng|g' \
-		-e 's|RVNAMED|&-NG|g' \
-		src/*.8 || die
-
-	epatch "${FILESDIR}"/${P}-tcplog_flowrate_msg.patch
-}
-
-# configure does not do very much we do not already control
-src_configure() { :; }
-
-src_compile() {
-	tc-export CC
-	CFLAGS+=' -DLOCKDIR=\"/run/lock/iptraf-ng\"'
-	default
-}
-
-src_install() {
-	dosbin {iptraf,rvnamed}-ng
-
-	doman src/*.8
-	dodoc AUTHORS CHANGES FAQ README* RELEASE-NOTES
-	use doc && dohtml -a gif,html,png -r Documentation/*
-
-	keepdir /var/{lib,log}/iptraf-ng #376157
-}

diff --git a/net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild b/net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild
deleted file mode 100644
index bda05a1a02a..00000000000
--- a/net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="A console-based network monitoring utility"
-HOMEPAGE="https://github.com/iptraf-ng/iptraf-ng"
-SRC_URI="https://github.com/iptraf-ng/iptraf-ng/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 doc? ( FDL-1.1 )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="doc"
-
-RDEPEND="
-	>=sys-libs/ncurses-5.7-r7:0=
-"
-DEPEND="
-	${RDEPEND}
-	virtual/os-headers
-	!net-analyzer/iptraf
-"
-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
-}


             reply	other threads:[~2020-12-14 15:34 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-14 15:34 Aaron Bauman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-09-27 14:53 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/iptraf-ng/ Marek Szuba
2020-12-13  7:42 Sam James
2020-12-02 23:21 Sam James
2020-11-30 22:31 Sergei Trofimovich
2020-11-27 16:10 Agostino Sarubbo
2020-11-27  8:41 Agostino Sarubbo
2020-11-27  8:39 Agostino Sarubbo
2020-11-27  8:07 Agostino Sarubbo
2020-11-27  0:07 Thomas Deutschmann
2020-07-22  6:07 Jeroen Roovers
2020-06-10 12:35 Jeroen Roovers
2020-06-03 10:06 Jeroen Roovers
2020-06-01 13:48 Jeroen Roovers
2020-06-01 13:48 Jeroen Roovers
2019-11-10 15:27 Michał Górny
2019-11-05 20:29 Jeroen Roovers
2019-11-05 20:29 Jeroen Roovers
2019-11-02 13:44 Jeroen Roovers
2015-08-16 11:30 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1607960039.2144bd3cb935e676db7cb397aa9663903904a31c.bman@gentoo \
    --to=bman@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox