public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scanlogd/
@ 2021-04-03 15:57 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-04-03 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     cf3aeadbf8d9741881746896690ea29c838a4d4e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 01:28:26 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 15:55:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf3aeadb

net-analyzer/scanlogd: EAPI 7, eutils--

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/scanlogd/scanlogd-2.2.7.ebuild | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/scanlogd/scanlogd-2.2.7.ebuild b/net-analyzer/scanlogd/scanlogd-2.2.7.ebuild
index b7c18a9d4cd..7fb4b5b2a9d 100644
--- a/net-analyzer/scanlogd/scanlogd-2.2.7.ebuild
+++ b/net-analyzer/scanlogd/scanlogd-2.2.7.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils savedconfig toolchain-funcs user
+EAPI=7
 
-DESCRIPTION="a port scan detection tool"
+inherit savedconfig toolchain-funcs user
+
+DESCRIPTION="A port scan detection tool"
 SRC_URI="http://www.openwall.com/scanlogd/${P}.tar.gz"
 HOMEPAGE="http://www.openwall.com/scanlogd/"
 
@@ -20,8 +21,12 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=(
+	"${FILESDIR}"/${P}-gentoo.patch
+)
+
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-gentoo.patch
+	default
 	restore_config params.h
 	tc-export CC
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scanlogd/
@ 2021-05-17  2:37 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-05-17  2:37 UTC (permalink / raw
  To: gentoo-commits

commit:     016d0d2d65dee18e204275754f1449757576dec2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 02:20:16 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 02:20:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016d0d2d

net-analyzer/scanlogd: add 2.2.8

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/scanlogd/Manifest              |  1 +
 net-analyzer/scanlogd/scanlogd-2.2.8.ebuild | 56 +++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/net-analyzer/scanlogd/Manifest b/net-analyzer/scanlogd/Manifest
index a9a4cbfaab6..299f13dffe9 100644
--- a/net-analyzer/scanlogd/Manifest
+++ b/net-analyzer/scanlogd/Manifest
@@ -1 +1,2 @@
 DIST scanlogd-2.2.7.tar.gz 11352 BLAKE2B 480e1ef78ac35ff04fb44961aa501f997786e20a3501f54f74b9e5761edba4736341d364a9a10772d795cb6025b88399bf3b56b0a980a0d2d0787f7a66eeeb22 SHA512 56238cb91a33524a9512914568984ed0d066eb84bea1c08551fbc4e02c9643a3f9535d59b364db00d538e4d9bcd9650ac24f2042584d3a9c639f99eb77ba1a7b
+DIST scanlogd-2.2.8.tar.gz 12190 BLAKE2B 26396c3174de3d3cceed9833354cae7d7bbcf3078a81472ae1fa28856f011e6984fa8182a994d5a10632c19f15f86e31f1ee73309273cad04e05fec942afa0a4 SHA512 92f7a28dd40593dad6afae4fd0572efeceea3f43f334ff82c349538d4a28e9ab624912f82fc5c102a4a9937009bbf7b76a81029588e2815ff9b305144143572a

diff --git a/net-analyzer/scanlogd/scanlogd-2.2.8.ebuild b/net-analyzer/scanlogd/scanlogd-2.2.8.ebuild
new file mode 100644
index 00000000000..c21dc3ec5c8
--- /dev/null
+++ b/net-analyzer/scanlogd/scanlogd-2.2.8.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit savedconfig toolchain-funcs user
+
+DESCRIPTION="A port scan detection tool"
+SRC_URI="https://www.openwall.com/scanlogd/${P}.tar.gz"
+HOMEPAGE="https://www.openwall.com/scanlogd/"
+
+LICENSE="scanlogd GPL-2" # GPL-2 for initscript
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+nids pcap"
+REQUIRED_USE="?? ( nids pcap )"
+
+DEPEND="
+	nids? ( net-libs/libnids )
+	pcap? ( net-libs/libpcap )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-2.2.7-gentoo.patch
+)
+
+src_prepare() {
+	default
+
+	restore_config params.h
+
+	tc-export CC
+}
+
+src_compile() {
+	local target=linux
+
+	use nids && target=libnids
+	use pcap && target=libpcap
+	emake ${target}
+}
+
+src_install() {
+	dosbin scanlogd
+
+	doman scanlogd.8
+	newinitd "${FILESDIR}"/scanlogd.rc scanlogd
+
+	save_config params.h
+}
+
+pkg_preinst() {
+	enewgroup scanlogd
+	enewuser scanlogd -1 -1 /dev/null scanlogd
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scanlogd/
@ 2021-10-11  5:45 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-10-11  5:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a9f1b7b41ad2b34f1d3672bcc2853e0f233b8743
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 05:44:57 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 05:44:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f1b7b4

net-analyzer/scanlogd: Stabilize 2.2.8-r1 ppc, #817656

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/scanlogd/scanlogd-2.2.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/scanlogd/scanlogd-2.2.8-r1.ebuild b/net-analyzer/scanlogd/scanlogd-2.2.8-r1.ebuild
index df7a9b460ec..2217afe380d 100644
--- a/net-analyzer/scanlogd/scanlogd-2.2.8-r1.ebuild
+++ b/net-analyzer/scanlogd/scanlogd-2.2.8-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://www.openwall.com/scanlogd/"
 
 LICENSE="scanlogd GPL-2" # GPL-2 for initscript
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="+nids pcap"
 REQUIRED_USE="?? ( nids pcap )"
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scanlogd/
@ 2023-05-01 13:36 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2023-05-01 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     cba2f6f018decaa92eeee72ab641ccf77da838b4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 13:26:53 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  1 13:26:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cba2f6f0

net-analyzer/scanlogd: drop 2.2.7-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/scanlogd/Manifest                 |  1 -
 net-analyzer/scanlogd/scanlogd-2.2.7-r1.ebuild | 50 --------------------------
 2 files changed, 51 deletions(-)

diff --git a/net-analyzer/scanlogd/Manifest b/net-analyzer/scanlogd/Manifest
index 299f13dffe9b..132bd95b882c 100644
--- a/net-analyzer/scanlogd/Manifest
+++ b/net-analyzer/scanlogd/Manifest
@@ -1,2 +1 @@
-DIST scanlogd-2.2.7.tar.gz 11352 BLAKE2B 480e1ef78ac35ff04fb44961aa501f997786e20a3501f54f74b9e5761edba4736341d364a9a10772d795cb6025b88399bf3b56b0a980a0d2d0787f7a66eeeb22 SHA512 56238cb91a33524a9512914568984ed0d066eb84bea1c08551fbc4e02c9643a3f9535d59b364db00d538e4d9bcd9650ac24f2042584d3a9c639f99eb77ba1a7b
 DIST scanlogd-2.2.8.tar.gz 12190 BLAKE2B 26396c3174de3d3cceed9833354cae7d7bbcf3078a81472ae1fa28856f011e6984fa8182a994d5a10632c19f15f86e31f1ee73309273cad04e05fec942afa0a4 SHA512 92f7a28dd40593dad6afae4fd0572efeceea3f43f334ff82c349538d4a28e9ab624912f82fc5c102a4a9937009bbf7b76a81029588e2815ff9b305144143572a

diff --git a/net-analyzer/scanlogd/scanlogd-2.2.7-r1.ebuild b/net-analyzer/scanlogd/scanlogd-2.2.7-r1.ebuild
deleted file mode 100644
index 425d76c6c154..000000000000
--- a/net-analyzer/scanlogd/scanlogd-2.2.7-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit savedconfig toolchain-funcs
-
-DESCRIPTION="A port scan detection tool"
-SRC_URI="http://www.openwall.com/scanlogd/${P}.tar.gz"
-HOMEPAGE="http://www.openwall.com/scanlogd/"
-
-LICENSE="scanlogd GPL-2" # GPL-2 for initscript
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="+nids pcap"
-REQUIRED_USE="?? ( nids pcap )"
-
-DEPEND="
-	nids? ( net-libs/libnids )
-	pcap? ( net-libs/libpcap )
-"
-RDEPEND="
-	${DEPEND}
-	acct-group/scanlogd
-	acct-user/scanlogd
-"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-gentoo.patch
-)
-
-src_prepare() {
-	default
-	restore_config params.h
-	tc-export CC
-}
-
-src_compile() {
-	local target=linux
-	use nids && target=libnids
-	use pcap && target=libpcap
-	emake ${target}
-}
-
-src_install() {
-	dosbin scanlogd
-	doman scanlogd.8
-	newinitd "${FILESDIR}"/scanlogd.rc scanlogd
-	save_config params.h
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-01 13:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-11  5:45 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scanlogd/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-05-01 13:36 Sam James
2021-05-17  2:37 Sam James
2021-04-03 15:57 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox