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/sec/
Date: Sat, 14 May 2022 03:00:52
Message-Id: 1652497216.f308cfca8ed2dba0bcd161e532aa47e7a1e05064.sam@gentoo
1 commit: f308cfca8ed2dba0bcd161e532aa47e7a1e05064
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 14 03:00:16 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 03:00:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f308cfca
7
8 net-analyzer/sec: add 2.9.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/sec/Manifest | 1 +
13 net-analyzer/sec/sec-2.9.1.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/net-analyzer/sec/Manifest b/net-analyzer/sec/Manifest
17 index 445d76d447c0..4ef9474c2207 100644
18 --- a/net-analyzer/sec/Manifest
19 +++ b/net-analyzer/sec/Manifest
20 @@ -1 +1,2 @@
21 DIST sec-2.8.3.tar.gz 144950 BLAKE2B 03e6f3077628a1e4221149875878642574ab00d87a0e601144b4c2f35f1d54cb937053a22d30ee7c5f13c4079e845dcccdf743a71a5afd75d2c46a34e4dadcf6 SHA512 9eba7db0dfa3661a3ef4e8aad3eeef1db710784f7a71131991a06918cc4f5634577b8bff3f00fcc1c5d998bf0c1e80efe88e1c1df3f5530b6ab4905ff00f2269
22 +DIST sec-2.9.1.tar.gz 153305 BLAKE2B 0bbc70f786badb24153f4f124aaedbf6f34970556630ee3e8763e7854dc1765d0eb8f7d10efce119ca936eade2af8064188f3372e63f7977240a0b10327269a3 SHA512 c6764cf660ad969d260e4993c38809580e448a9d941d1a763c1b70630c5d55a7f215feb6b0fa50cbf23d68fb442e34f0d270d03e1172850d63d64042a689ac90
23
24 diff --git a/net-analyzer/sec/sec-2.9.1.ebuild b/net-analyzer/sec/sec-2.9.1.ebuild
25 new file mode 100644
26 index 000000000000..bf2342ed790d
27 --- /dev/null
28 +++ b/net-analyzer/sec/sec-2.9.1.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DESCRIPTION="Simple Event Correlator"
36 +HOMEPAGE="https://simple-evcorr.github.io/ https://github.com/simple-evcorr/sec"
37 +SRC_URI="https://github.com/simple-evcorr/sec/releases/download/${PV}/${P}.tar.gz"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
42 +
43 +RDEPEND=">=dev-lang/perl-5.8.0
44 + virtual/perl-JSON-PP"
45 +
46 +src_install() {
47 + dobin sec
48 +
49 + dodoc ChangeLog README
50 + docinto contrib
51 + dodoc contrib/{itostream.c,convert.pl,swatch2sec.pl}
52 +
53 + newman sec.man sec.1
54 +
55 + newinitd "${FILESDIR}"/sec.init.d sec
56 + newconfd "${FILESDIR}"/sec.conf.d sec
57 +}