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/iptstate/files/, net-analyzer/iptstate/
Date: Sun, 20 Feb 2022 05:27:35
Message-Id: 1645334730.4a567cf87432bf1d76977d02d62245f4f7bb24aa.sam@gentoo
1 commit: 4a567cf87432bf1d76977d02d62245f4f7bb24aa
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 05:09:28 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 05:25:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a567cf8
7
8 net-analyzer/iptstate: drop 2.2.6
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/iptstate/Manifest | 1 -
13 .../iptstate/files/iptstate-2.2.5-gentoo.patch | 26 ----------------
14 net-analyzer/iptstate/iptstate-2.2.6.ebuild | 35 ----------------------
15 3 files changed, 62 deletions(-)
16
17 diff --git a/net-analyzer/iptstate/Manifest b/net-analyzer/iptstate/Manifest
18 index f5163c1b7238..5414199ac370 100644
19 --- a/net-analyzer/iptstate/Manifest
20 +++ b/net-analyzer/iptstate/Manifest
21 @@ -1,2 +1 @@
22 -DIST iptstate-2.2.6.tar.bz2 28700 BLAKE2B 66e18425a4fed423a5a03c8f9ecbc87f4553a64475ab77144f3f37969eb6a399d52d7166bb68d9c9e80753163b841c71b42bfc13796e4a9d2c23db084740f3f5 SHA512 411b357aced384c52caac17b23f3c6bd631ff34d41b6000b90ff6dfc3cf20e36e46416d3691ac699b06f16d6042a42681b42a5d3594ce287aa6cf3b3b637c999
23 DIST iptstate-2.2.7.tar.bz2 29994 BLAKE2B 0be657d4452b40b1835279bfa141b94e3db7adeeba141dede8456c64e4847efbb23197afab7e2452c9ad84c1be5eaffa1d9f7da15a5aaeb0c6fb28c1d62d6733 SHA512 43e258639e0f728d4a393d2dd7a834a6df1131da5291559a504800a0918dad3e010baaeb1bca66cb9a62bad6955f678be3302aac916fc956a525cdd7e9d0690a
24
25 diff --git a/net-analyzer/iptstate/files/iptstate-2.2.5-gentoo.patch b/net-analyzer/iptstate/files/iptstate-2.2.5-gentoo.patch
26 deleted file mode 100644
27 index fdaeeb7867b2..000000000000
28 --- a/net-analyzer/iptstate/files/iptstate-2.2.5-gentoo.patch
29 +++ /dev/null
30 @@ -1,26 +0,0 @@
31 ---- a/Makefile
32 -+++ b/Makefile
33 -@@ -17,12 +17,11 @@
34 - ### ADVANCED USERS AND PACKAGERS MIGHT WANT TO CHANGE THIS
35 -
36 - CXX?= g++
37 --CXXFLAGS?= -g -Wall -O2
38 -+CXXFLAGS+= -Wall
39 - CXXFILES?= iptstate.cc
40 -
41 - # THIS IS FOR NORMAL COMPILATION
42 --LIBS?= -lncurses -lnetfilter_conntrack
43 --CPPFLAGS=
44 -+LIBS= $(shell $(PKG_CONFIG) --libs ncurses libnetfilter_conntrack)
45 -
46 - ### YOU SHOULDN'T NEED TO CHANGE ANYTHING BELOW THIS
47 -
48 -@@ -45,7 +44,7 @@
49 - echo "+------------------------------------------------------------+" ;\
50 - echo "";
51 -
52 -- $(CXX) $(CXXFLAGS) $(CXXFILES) -o iptstate $(LIBS) $(CPPFLAGS)
53 -+ $(CXX) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(CXXFILES) -o iptstate $(LIBS)
54 - @touch iptstate
55 -
56 - @\
57
58 diff --git a/net-analyzer/iptstate/iptstate-2.2.6.ebuild b/net-analyzer/iptstate/iptstate-2.2.6.ebuild
59 deleted file mode 100644
60 index 0f85670270ce..000000000000
61 --- a/net-analyzer/iptstate/iptstate-2.2.6.ebuild
62 +++ /dev/null
63 @@ -1,35 +0,0 @@
64 -# Copyright 1999-2020 Gentoo Authors
65 -# Distributed under the terms of the GNU General Public License v2
66 -
67 -EAPI=6
68 -inherit toolchain-funcs
69 -
70 -DESCRIPTION="IP Tables State displays states being kept by iptables in a top-like format"
71 -HOMEPAGE="https://www.phildev.net/iptstate/ https://github.com/jaymzh/iptstate"
72 -SRC_URI="https://github.com/jaymzh/${PN}/releases/download/v${PV}/${P}.tar.bz2"
73 -
74 -LICENSE="ZLIB"
75 -SLOT="0"
76 -KEYWORDS="amd64 ~hppa ~ppc x86"
77 -
78 -RDEPEND="
79 - >=sys-libs/ncurses-5.7-r7:0=
80 - >=net-libs/libnetfilter_conntrack-0.0.50
81 -"
82 -DEPEND="
83 - ${RDEPEND}
84 - virtual/pkgconfig
85 -"
86 -PATCHES=(
87 - "${FILESDIR}"/${PN}-2.2.5-gentoo.patch
88 -)
89 -
90 -src_prepare() {
91 - default
92 - tc-export CXX PKG_CONFIG
93 -}
94 -
95 -src_install() {
96 - emake PREFIX="${D}"/usr install
97 - dodoc BUGS Changelog CONTRIB README.md WISHLIST
98 -}