commit:     ba2bb6a122f97c46c4925fb9c73790f3d4ded388
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 21:58:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 22:01:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba2bb6a1

net-analyzer/flow-tools: drop 0.68.5.1-r11

Bug: https://bugs.gentoo.org/776526
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/flow-tools/Manifest                   |  1 -
 .../files/flow-tools-0.68.5.1-syslog.patch         | 47 ---------------
 .../flow-tools/flow-tools-0.68.5.1-r11.ebuild      | 68 ----------------------
 3 files changed, 116 deletions(-)

diff --git a/net-analyzer/flow-tools/Manifest b/net-analyzer/flow-tools/Manifest
index 11214dc160a..958d870d3dc 100644
--- a/net-analyzer/flow-tools/Manifest
+++ b/net-analyzer/flow-tools/Manifest
@@ -1,2 +1 @@
-DIST flow-tools-0.68.5.1.tar.bz2 914062 BLAKE2B 
8a987c1aac53a1370045ab118888c51ce2de7b8db4074432e86e701153469163870cf1cf9da9e2267ed934d240de4b4bf2391b4681012b82db7e4205207b7fa4
 SHA512 
ae17ba39854daa8ef3deecd3a554bb6d1fa47648cb791d8225a40bec13f65bf0692871660b2c3490d133b1251875c323d066bb0c0483eceb0707cec9b7714c57
 DIST flow-tools-0.68.6.tar.gz 1078778 BLAKE2B 
8a6179e44f2efa90bb2c3ace73bfbb8a928c1d7aabc8f47a778ca7361a92c13f2df168194bdd9c489c175079c1bd977f6ad9852711a62d99649d1f44609d746b
 SHA512 
fc3d0650ace93ec2180340624648b5967fd7f094900f8409e751b439eb659c9623e2ee55effeb74164ec6b15f0a1edd8ed7735ccfacfd72af08e9c5c0d65b740

diff --git a/net-analyzer/flow-tools/files/flow-tools-0.68.5.1-syslog.patch 
b/net-analyzer/flow-tools/files/flow-tools-0.68.5.1-syslog.patch
deleted file mode 100644
index cb17471072b..00000000000
--- a/net-analyzer/flow-tools/files/flow-tools-0.68.5.1-syslog.patch
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/lib/fterr.c
-+++ b/lib/fterr.c
-@@ -112,7 +112,7 @@
-     fprintf(((fterr_file) ? fterr_file : stderr), "%s\n", buf2);
- 
-   if (fterr_flags & FTERR_SYSLOG)
--    syslog(LOG_INFO, buf);
-+    syslog(LOG_INFO, "%s", buf);
- 
- } /* fterr_info */
- 
-@@ -134,7 +134,7 @@
- 
-   if (fterr_flags & FTERR_SYSLOG) {
-     snprintf(buf2, 1024, "%s: %s", buf, strerror(errno));
--    syslog(LOG_INFO, buf2);
-+    syslog(LOG_INFO, "%s", buf2);
-   }
- 
-   if (fterr_exit)
-@@ -159,7 +159,7 @@
-   }
- 
-   if (fterr_flags & FTERR_SYSLOG)
--    syslog(LOG_INFO, buf);
-+    syslog(LOG_INFO, "%s", buf);
- 
-   if (fterr_exit)
-     fterr_exit(code);
-@@ -183,7 +183,7 @@
-   }
- 
-   if (fterr_flags & FTERR_SYSLOG)
--    syslog(LOG_INFO, buf);
-+    syslog(LOG_INFO, "%s", buf);
- 
- } /* fterr_warnx */
- 
-@@ -205,7 +205,7 @@
- 
-   if (fterr_flags & FTERR_SYSLOG) {
-     snprintf(buf2, 1024, "%s: %s", buf, strerror(errno));
--    syslog(LOG_INFO, buf2);
-+    syslog(LOG_INFO, "%s", buf2);
-   }
- 
- } /* fterr_warn */

diff --git a/net-analyzer/flow-tools/flow-tools-0.68.5.1-r11.ebuild 
b/net-analyzer/flow-tools/flow-tools-0.68.5.1-r11.ebuild
deleted file mode 100644
index d1f4fc95e62..00000000000
--- a/net-analyzer/flow-tools/flow-tools-0.68.5.1-r11.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="library and programs to process reports from NetFlow data"
-HOMEPAGE="https://code.google.com/p/flow-tools/";
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.bz2";
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug libressl mysql postgres ssl static-libs"
-
-RDEPEND="
-       acct-group/flows
-       acct-user/flows
-       sys-apps/tcp-wrappers
-       sys-libs/zlib
-       mysql? ( dev-db/mysql-connector-c:0= )
-       postgres? ( dev-db/postgresql:* )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0= )
-               libressl? ( dev-libs/libressl:0= )
-       )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       sys-devel/flex
-       sys-devel/bison"
-
-DOCS=( ChangeLog README SECURITY TODO )
-
-PATCHES=(
-       "${FILESDIR}"/${P}-run.patch
-       "${FILESDIR}"/${P}-syslog.patch
-       "${FILESDIR}"/${P}-openssl11.patch
-       "${FILESDIR}"/${P}-fno-common.patch
-)
-
-src_configure() {
-       econf \
-               $(use_enable static-libs static) \
-               $(usex mysql --with-mysql '') \
-               $(usex postgres --with-postgresql=yes --with-postgresql=no) \
-               $(usex ssl --with-openssl '') \
-               --sysconfdir=/etc/flow-tools
-}
-
-src_install() {
-       default
-
-       find "${D}" -name '*.la' -delete || die
-
-       exeinto /var/lib/flows/bin
-       doexe "${FILESDIR}"/linkme
-
-       keepdir /var/lib/flows/ft
-
-       newinitd "${FILESDIR}/flowcapture.initd" flowcapture
-       newconfd "${FILESDIR}/flowcapture.confd" flowcapture
-
-       fowners flows:flows /var/lib/flows
-       fowners flows:flows /var/lib/flows/bin
-       fowners flows:flows /var/lib/flows/ft
-
-       fperms 0755 /var/lib/flows
-       fperms 0755 /var/lib/flows/bin
-}

Reply via email to