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 776991382C5 for ; Fri, 27 Nov 2020 14:46:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C9A3E0828; Fri, 27 Nov 2020 14:46:43 +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 60A67E0827 for ; Fri, 27 Nov 2020 14:46:43 +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 6B0F8340F39 for ; Fri, 27 Nov 2020 14:46:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95AB3476 for ; Fri, 27 Nov 2020 14:46:39 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606487898.7dc3a2ac8bbc94d6903ee6bd6920052f592c388c.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netwatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/netwatch/netwatch-1.3.0.1-r3.ebuild X-VCS-Directories: net-analyzer/netwatch/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 7dc3a2ac8bbc94d6903ee6bd6920052f592c388c X-VCS-Branch: master Date: Fri, 27 Nov 2020 14:46:39 +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: 75ba93c2-39ee-49f7-abad-64f00d4c6cd4 X-Archives-Hash: 44851996267a9b4a729597594c45a9e1 commit: 7dc3a2ac8bbc94d6903ee6bd6920052f592c388c Author: Aaron Bauman gentoo org> AuthorDate: Fri Nov 27 14:38:18 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Nov 27 14:38:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc3a2ac net-analyzer/netwatch: drop old Signed-off-by: Aaron Bauman gentoo.org> net-analyzer/netwatch/netwatch-1.3.0.1-r3.ebuild | 48 ------------------------ 1 file changed, 48 deletions(-) diff --git a/net-analyzer/netwatch/netwatch-1.3.0.1-r3.ebuild b/net-analyzer/netwatch/netwatch-1.3.0.1-r3.ebuild deleted file mode 100644 index dda5375c225..00000000000 --- a/net-analyzer/netwatch/netwatch-1.3.0.1-r3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils versionator - -MY_PV=$(replace_version_separator 3 '-') - -DESCRIPTION="Ethernet/PPP IP Packet Monitor" -HOMEPAGE="http://www.slctech.org/~mackay/netwatch.html" -SRC_URI="http://www.slctech.org/~mackay/NETWATCH/${PN}-${MY_PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="doc" - -RDEPEND="sys-libs/ncurses" -DEPEND=" - ${RDEPEND} - sys-kernel/linux-headers - virtual/pkgconfig -" - -S=${WORKDIR}/${PN}-$(get_version_component_range 1-3) - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-append_ldflags.patch \ - "${FILESDIR}"/${P}-open.patch \ - "${FILESDIR}"/${P}-fix-fortify.patch \ - "${FILESDIR}"/${P}-do-not-call.patch \ - "${FILESDIR}"/${P}-includes.patch \ - "${FILESDIR}"/${P}-tinfo.patch - - eautoreconf -} - -src_install() { - dosbin netresolv netwatch - - doman netwatch.1 - dodoc BUGS CHANGES README* TODO - - if use doc; then - dohtml NetwatchKeyCommands.html - fi -}