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/nfdump/
Date: Fri, 28 May 2021 02:27:38
Message-Id: 1622166467.02750cf1898eaeb6de650817fa875e00e33cdb9d.sam@gentoo
1 commit: 02750cf1898eaeb6de650817fa875e00e33cdb9d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 28 01:47:47 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 28 01:47:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02750cf1
7
8 net-analyzer/nfdump: drop 1.6.21-r1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/nfdump/Manifest | 1 -
13 net-analyzer/nfdump/nfdump-1.6.21-r1.ebuild | 73 -----------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/net-analyzer/nfdump/Manifest b/net-analyzer/nfdump/Manifest
17 index e70f758c6b1..a5942d524cc 100644
18 --- a/net-analyzer/nfdump/Manifest
19 +++ b/net-analyzer/nfdump/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST nfdump-1.6.21.tar.gz 561617 BLAKE2B 61a52cb7ee724c47f93e0ce8dd0515306c16b94d8b351f9543deecc2b28c813f09f0e4ba621f2561760924af683ffd527d00936fbc5f91f83d6f727d6cf9e5d9 SHA512 c9162b7a6653267cd4d66a2d75bb2c3d65c431bb29ee549bac2a208fe7f2bc871bb91dfa6d89d6f18cd69f1d435dd25ba1c5dfe6e10b0efc4a582f2e67913a34
22 DIST nfdump-1.6.22.tar.gz 563266 BLAKE2B f985a8f8bcbb7ff3ab98d4f01449b121e92914bc47ec7fa07c1a7a068f6722447228b0166d0f2e966c0bab2c93e34133743e8dff7d8dc41a1c70ffac64fbbf6e SHA512 3508e54b4c4785a79118147779300eebd9485532e157b37ed6487255dacaa49959d425c8fc489caa98ff559a4859b9e456e97a6c8a06a1029eb904aa1f9efb61
23 DIST nfdump-1.6.23.tar.gz 568879 BLAKE2B ca844f87e02fb3761d5b470cac11beada9873b0c7e3e9ca7ccc7899d57f0cfd96329698ac84467a55d683e83ce16c2b114a571845c7cb6069addcdd5d4a43903 SHA512 e3f79af69a170985fcbd1757fab86e90840d040cf7a6214c7f9851ed59695d3844a15269904c3ba989b6b6ed2ddf29fd19a493165d3037e49aa2bb69b831f168
24
25 diff --git a/net-analyzer/nfdump/nfdump-1.6.21-r1.ebuild b/net-analyzer/nfdump/nfdump-1.6.21-r1.ebuild
26 deleted file mode 100644
27 index 84ebe03aee2..00000000000
28 --- a/net-analyzer/nfdump/nfdump-1.6.21-r1.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit autotools
36 -
37 -DESCRIPTION="A set of tools to collect and process netflow data"
38 -HOMEPAGE="https://github.com/phaag/nfdump"
39 -SRC_URI="https://github.com/phaag/nfdump/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0/1.6.15"
43 -KEYWORDS="amd64 x86"
44 -IUSE="debug doc ftconv nfprofile nftrack readpcap sflow static-libs"
45 -
46 -COMMON_DEPEND="
47 - app-arch/bzip2
48 - sys-libs/zlib
49 - ftconv? ( sys-libs/zlib net-analyzer/flow-tools )
50 - nfprofile? ( net-analyzer/rrdtool )
51 - nftrack? ( net-analyzer/rrdtool )
52 - readpcap? ( net-libs/libpcap )
53 -"
54 -DEPEND="
55 - ${COMMON_DEPEND}
56 -"
57 -BDEPEND="
58 - sys-devel/flex
59 - virtual/yacc
60 - doc? ( app-doc/doxygen )
61 -"
62 -RDEPEND="
63 - ${COMMON_DEPEND}
64 -"
65 -PATCHES=(
66 - "${FILESDIR}"/${PN}-1.6.19-compiler.patch
67 - "${FILESDIR}"/${PN}-1.6.19-libft.patch
68 - "${FILESDIR}"/${PN}-1.6.21-remove-strict-rfc-7011-handling.patch
69 -)
70 -
71 -DOCS=( AUTHORS ChangeLog README.md )
72 -
73 -src_prepare() {
74 - default
75 -
76 - eautoreconf
77 -
78 - if use doc; then
79 - doxygen -u doc/Doxyfile.in || die
80 - fi
81 -}
82 -
83 -src_configure() {
84 - # --without-ftconf is not handled well #322201
85 - econf \
86 - $(use ftconv && echo "--enable-ftconv --with-ftpath=/usr") \
87 - $(use nfprofile && echo --enable-nfprofile) \
88 - $(use nftrack && echo --enable-nftrack) \
89 - $(use_enable debug devel) \
90 - $(use_enable readpcap) \
91 - $(use_enable sflow) \
92 - $(use_enable static-libs static)
93 -}
94 -
95 -src_install() {
96 - default
97 -
98 - find "${ED}" -name '*.la' -delete || die
99 -
100 - if use doc; then
101 - dodoc -r doc/html
102 - fi
103 -}