Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dropwatch/
Date: Sat, 28 Nov 2020 17:46:49
Message-Id: 1606585600.c1d5ed41427de0f84853676182e92a6aac054312.bman@gentoo
1 commit: c1d5ed41427de0f84853676182e92a6aac054312
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 17:43:30 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 17:46:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d5ed41
7
8 dev-util/dropwatch: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 dev-util/dropwatch/Manifest | 1 -
13 dev-util/dropwatch/dropwatch-1.4-r1.ebuild | 46 ------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-util/dropwatch/Manifest b/dev-util/dropwatch/Manifest
17 index 9d764314ec6..64fdc897acf 100644
18 --- a/dev-util/dropwatch/Manifest
19 +++ b/dev-util/dropwatch/Manifest
20 @@ -1,2 +1 @@
21 -DIST dropwatch-1.4.tbz2 32199 BLAKE2B 2f6a053ed2fc1280ba5aacef79b6b43903eb115ab0b81ed6dbdd7d789dccd5dcfc7d42a76718c73b3c6cc8013ef9a8a1a0e00be83ee2944ad2f101d0193f3a3f SHA512 a5744ea156464c53d31d5b54bcaf9bd61f2035285059bc05a3eec20be71d1451a6191237f194dc5d8e6fb6fcbb81d9ef87adf5ac2d878cc1f159191c47118e29
22 DIST dropwatch-1.4_p20150706.tar.xz 14880 BLAKE2B 4df44a517447a7e99fe5d84a79421c9810c3b67524eb1d208c36ebb503dd43c715e57c678c33a90689707680d1f42b9d30d00080894f22889553e551a23adfa6 SHA512 f78f19f063408cb655869e662e92709b1cec820ab35b11272b87a990c380e0799c6e9067dcf53edab795916347dfe3fd04932f9699c3f5649f96d62567957fbd
23
24 diff --git a/dev-util/dropwatch/dropwatch-1.4-r1.ebuild b/dev-util/dropwatch/dropwatch-1.4-r1.ebuild
25 deleted file mode 100644
26 index 341fd711b33..00000000000
27 --- a/dev-util/dropwatch/dropwatch-1.4-r1.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit linux-info toolchain-funcs
36 -
37 -DESCRIPTION="A utility to interface to the kernel to monitor for dropped network packets"
38 -HOMEPAGE="https://fedorahosted.org/dropwatch/"
39 -SRC_URI="https://fedorahosted.org/releases/d/r/dropwatch/${P}.tbz2"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -
45 -RDEPEND="dev-libs/libnl:3
46 - sys-libs/binutils-libs
47 - sys-libs/readline:="
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig"
50 -
51 -CONFIG_CHECK="~NET_DROP_MONITOR"
52 -
53 -PATCHES=(
54 - "${FILESDIR}/${P}-makefile.patch"
55 - "${FILESDIR}/${P}-binutils-2.23.patch"
56 -)
57 -
58 -src_prepare() {
59 - epatch "${PATCHES[@]}"
60 - epatch_user
61 -}
62 -
63 -src_compile() {
64 - emake CC="$(tc-getCC)" -C src
65 -}
66 -
67 -src_install() {
68 - dobin "src/${PN}"
69 - doman "doc/${PN}.1"
70 - dodoc README
71 -}
72 -
73 -pkg_postinst() {
74 - einfo "Ensure that 'drop_monitor' kernel module is loaded before running ${PN}"
75 -}