Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcptraceroute/
Date: Wed, 23 Dec 2020 22:57:53
Message-Id: 1608764165.a52b132a070291fa3e89d02de4fdcd8e439fe503.sam@gentoo
1 commit: a52b132a070291fa3e89d02de4fdcd8e439fe503
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 22:56:05 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 22:56:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a52b132a
7
8 net-analyzer/tcptraceroute: cleanup old (EAPI 5)
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../tcptraceroute-1.5_beta7-r2.ebuild | 40 ----------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild b/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild
17 deleted file mode 100644
18 index 13ba3f2fa32..00000000000
19 --- a/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit autotools eutils
27 -
28 -MY_P=${P/_beta/beta}
29 -
30 -DESCRIPTION="tcptraceroute is a traceroute implementation using TCP packets"
31 -HOMEPAGE="https://github.com/mct/tcptraceroute"
32 -SRC_URI="https://codeload.github.com/mct/${PN}/tar.gz/${MY_P} -> ${P}.tar.gz"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
37 -
38 -DEPEND="
39 - net-libs/libnet:1.1
40 - net-libs/libpcap
41 -"
42 -RDEPEND="${DEPEND}"
43 -
44 -# michael.toren.net is no longer available
45 -RESTRICT="test"
46 -
47 -S=${WORKDIR}/${PN}-${MY_P}
48 -
49 -src_prepare() {
50 - epatch "${FILESDIR}"/${P}-cross-compile-checks.patch
51 - eautoreconf
52 -}
53 -
54 -src_install() {
55 - dosbin tcptraceroute
56 - fowners root:wheel /usr/sbin/tcptraceroute
57 - fperms 4710 /usr/sbin/tcptraceroute
58 - doman tcptraceroute.1
59 - dodoc examples.txt README ChangeLog
60 - dohtml tcptraceroute.1.html
61 -}