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 86FA3138334 for ; Mon, 7 Oct 2019 13:53:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DA48E087C; Mon, 7 Oct 2019 13:53:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EEC71E087C for ; Mon, 7 Oct 2019 13:53:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EB67634BA03 for ; Mon, 7 Oct 2019 13:53:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1798885 for ; Mon, 7 Oct 2019 13:53:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570456405.f42254bbf3af2ca41dc7c621bfff886926f5c3ba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcpstat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild net-analyzer/tcpstat/tcpstat-1.5.ebuild X-VCS-Directories: net-analyzer/tcpstat/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f42254bbf3af2ca41dc7c621bfff886926f5c3ba X-VCS-Branch: master Date: Mon, 7 Oct 2019 13:53:29 +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: c4f74748-45f1-409d-a061-dd588dd4d7f0 X-Archives-Hash: 4b38c67f92b48b2ae2da5d8c9def2f52 commit: f42254bbf3af2ca41dc7c621bfff886926f5c3ba Author: Michał Górny gentoo org> AuthorDate: Mon Oct 7 13:19:56 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 7 13:53:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f42254bb net-analyzer/tcpstat: Drop old (EAPI=0) Signed-off-by: Michał Górny gentoo.org> net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild | 38 ------------------------------ net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild | 34 -------------------------- net-analyzer/tcpstat/tcpstat-1.5.ebuild | 26 -------------------- 3 files changed, 98 deletions(-) diff --git a/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild b/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild deleted file mode 100644 index e12e9962899..00000000000 --- a/net-analyzer/tcpstat/tcpstat-1.5-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils autotools flag-o-matic - -DESCRIPTION="Reports network interface statistics" -SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz" -HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/" - -DEPEND="net-libs/libpcap" - -SLOT="0" -LICENSE="BSD-2" -KEYWORDS="amd64 ~ppc ~ppc64 sparc x86" - -IUSE="ipv6" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-db.patch" - eautoreconf -} - -src_compile() { - append-flags -Wall -Wextra - econf $(use_enable ipv6) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "emake install failed" - dobin src/{catpcap,packetdump} || die "dobin failed" - dodoc AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt - newdoc src/README README.src -} diff --git a/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild b/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild deleted file mode 100644 index cc4cd5ac89a..00000000000 --- a/net-analyzer/tcpstat/tcpstat-1.5-r2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils autotools flag-o-matic - -DESCRIPTION="Reports network interface statistics" -SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz" -HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/" - -DEPEND="net-libs/libpcap" - -SLOT="0" -LICENSE="BSD-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="ipv6" - -src_prepare() { - epatch "${FILESDIR}"/${P}-db.patch - eautoreconf -} - -src_configure() { - append-flags -Wall -Wextra - econf $(use_enable ipv6) -} - -DOCS=( AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt ) - -src_install() { - default - dobin src/{catpcap,packetdump} - newdoc src/README README.src -} diff --git a/net-analyzer/tcpstat/tcpstat-1.5.ebuild b/net-analyzer/tcpstat/tcpstat-1.5.ebuild deleted file mode 100644 index 3be19c53a62..00000000000 --- a/net-analyzer/tcpstat/tcpstat-1.5.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -IUSE="berkdb" - -DESCRIPTION="Reports network interface statistics" -SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz" -HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/" - -DEPEND="net-libs/libpcap - berkdb? (