* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-07-23 12:57 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-07-23 12:57 UTC (permalink / raw
To: gentoo-commits
commit: 4b9eacf48e3748373a11e8a0e814be012103b5a1
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 23 12:57:27 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Jul 23 12:57:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b9eacf4
app-forensics/lynis: Update metadata
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index 542792de7f1..ced9fe07762 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -3,5 +3,6 @@
<pkgmetadata>
<maintainer type="person">
<email>mpagano@gentoo.org</email>
+ <name>Mike Pagano</name>
</maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-09-26 19:42 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-09-26 19:42 UTC (permalink / raw
To: gentoo-commits
commit: 3265180919cd9dce0ca75964aec45c29ed60bd00
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 26 19:42:14 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 19:42:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32651809
app-forensics/lynis: drop 3.1.1
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 -
app-forensics/lynis/lynis-3.1.1.ebuild | 70 ----------------------------------
2 files changed, 71 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 9d8334923534..61ee4ee65c17 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,2 +1 @@
-DIST lynis-3.1.1.tar.gz 344324 BLAKE2B 056e689f00ac0fa74bd1a6dc3915cbd70f28cdb5461e0749b68ce2cf84e425c295425f7bb6d5aeb0208693a0e38290cb90925e392928257c79bc5887f6e58498 SHA512 c37366154e03a661a7e995d14c651d5503c7189f50edfd194d8b7034e001b9610bfe79917221156ab3607f7c348625ea956fb0acb46a6c7e64a7d189dbcfd4ee
DIST lynis-3.1.2.tar.gz 355241 BLAKE2B fb224f626d1e42eaaae108a986e4b93fba36b1e6a8ea23208568e3be3dac782f60a9a996ebcc512eaea0234a95e16464a931895b28e3bf8c718ccc8c40126c68 SHA512 e471549898407da3eee58fc404be1e8a166d41e1a527c8d4942882bff60e91554c3a759e08bced7a7c177ccc7a9d7a0b7cad340f3edc3b0e2a39a17302b018ae
diff --git a/app-forensics/lynis/lynis-3.1.1.ebuild b/app-forensics/lynis/lynis-3.1.1.ebuild
deleted file mode 100644
index e0246de21ae4..000000000000
--- a/app-forensics/lynis/lynis-3.1.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-S="${WORKDIR}/${PN}"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-RDEPEND="
- app-shells/bash
- cron? ( !systemd? ( virtual/cron ) )"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-09-26 19:42 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-09-26 19:42 UTC (permalink / raw
To: gentoo-commits
commit: b487c0695871417acfdd9799827075db84d8b6dd
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 26 19:41:50 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 19:41:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b487c069
app-forensics/lynis: add 3.1.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-3.1.2.ebuild | 69 ++++++++++++++++++++++++++++++++++
app-forensics/lynis/metadata.xml | 5 +++
3 files changed, 75 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index a205a47150f4..9d8334923534 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1,2 @@
DIST lynis-3.1.1.tar.gz 344324 BLAKE2B 056e689f00ac0fa74bd1a6dc3915cbd70f28cdb5461e0749b68ce2cf84e425c295425f7bb6d5aeb0208693a0e38290cb90925e392928257c79bc5887f6e58498 SHA512 c37366154e03a661a7e995d14c651d5503c7189f50edfd194d8b7034e001b9610bfe79917221156ab3607f7c348625ea956fb0acb46a6c7e64a7d189dbcfd4ee
+DIST lynis-3.1.2.tar.gz 355241 BLAKE2B fb224f626d1e42eaaae108a986e4b93fba36b1e6a8ea23208568e3be3dac782f60a9a996ebcc512eaea0234a95e16464a931895b28e3bf8c718ccc8c40126c68 SHA512 e471549898407da3eee58fc404be1e8a166d41e1a527c8d4942882bff60e91554c3a759e08bced7a7c177ccc7a9d7a0b7cad340f3edc3b0e2a39a17302b018ae
diff --git a/app-forensics/lynis/lynis-3.1.2.ebuild b/app-forensics/lynis/lynis-3.1.2.ebuild
new file mode 100644
index 000000000000..f294c7a6665f
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.1.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://github.com/CISOfy/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+RDEPEND="
+ app-shells/bash
+ cron? ( !systemd? ( virtual/cron ) )"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index 72bf02bbb435..d93aeae57bbc 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -8,4 +8,9 @@
<use>
<flag name="cron">Install /etc/cron.* files</flag>
</use>
+ <upstream>
+ <bugs-to>https://github.com/CISOfy/lynis/issues</bugs-to>
+ <changelog>https://raw.githubusercontent.com/CISOfy/lynis/refs/heads/master/CHANGELOG.md</changelog>
+ <remote-id type="github">CISOfy/lynis</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-04-18 19:47 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-04-18 19:47 UTC (permalink / raw
To: gentoo-commits
commit: 0222fe4d2f60205d00f6b02fcbc060bbfd260fa5
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 19:47:07 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 19:47:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0222fe4d
app-forensics/lynis: Minor QA fixes
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.1.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/app-forensics/lynis/lynis-3.1.1.ebuild b/app-forensics/lynis/lynis-3.1.1.ebuild
index d3198792ee57..e0246de21ae4 100644
--- a/app-forensics/lynis/lynis-3.1.1.ebuild
+++ b/app-forensics/lynis/lynis-3.1.1.ebuild
@@ -9,6 +9,7 @@ DESCRIPTION="Security and system auditing tool"
HOMEPAGE="https://cisofy.com/lynis/"
SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+S="${WORKDIR}/${PN}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
@@ -18,8 +19,6 @@ RDEPEND="
app-shells/bash
cron? ( !systemd? ( virtual/cron ) )"
-S="${WORKDIR}/${PN}"
-
src_install() {
doman lynis.8
dodoc FAQ README
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-03-17 14:33 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-03-17 14:33 UTC (permalink / raw
To: gentoo-commits
commit: d64bc95934af41c3252e82ee32b0cb80498913d5
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 17 14:32:49 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 14:32:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64bc959
app-forensics/lynis: add 3.1.1
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-3.1.1.ebuild | 71 ++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index c91a6c744767..67b46385c00f 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1,2 @@
DIST lynis-3.1.0.tar.gz 344222 BLAKE2B 257c451d04f54ca1cebb36f2a336d93c15619ed416dae86f4fb3926ad4d830e0978db13c8885db1bbb03ccda5d1cca0b6c82b465f6fdee2f7a1e61a49f6486b9 SHA512 710d7a36c1e6526e4a9e309d985907a64128a1ae83430dd0e48bddc956c4f60344abcdb016f1c91fc1add6a1e4eca06d92a0231600faf0bd316b729bbd1deaf3
+DIST lynis-3.1.1.tar.gz 344324 BLAKE2B 056e689f00ac0fa74bd1a6dc3915cbd70f28cdb5461e0749b68ce2cf84e425c295425f7bb6d5aeb0208693a0e38290cb90925e392928257c79bc5887f6e58498 SHA512 c37366154e03a661a7e995d14c651d5503c7189f50edfd194d8b7034e001b9610bfe79917221156ab3607f7c348625ea956fb0acb46a6c7e64a7d189dbcfd4ee
diff --git a/app-forensics/lynis/lynis-3.1.1.ebuild b/app-forensics/lynis/lynis-3.1.1.ebuild
new file mode 100644
index 000000000000..d3198792ee57
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.1.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+RDEPEND="
+ app-shells/bash
+ cron? ( !systemd? ( virtual/cron ) )"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-03-17 14:33 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-03-17 14:33 UTC (permalink / raw
To: gentoo-commits
commit: 136f68188a9e03c69010abcdb1779f107158b8ef
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 17 14:33:02 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 14:33:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136f6818
app-forensics/lynis: drop 3.1.0
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 -
app-forensics/lynis/lynis-3.1.0.ebuild | 71 ----------------------------------
2 files changed, 72 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 67b46385c00f..a205a47150f4 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,2 +1 @@
-DIST lynis-3.1.0.tar.gz 344222 BLAKE2B 257c451d04f54ca1cebb36f2a336d93c15619ed416dae86f4fb3926ad4d830e0978db13c8885db1bbb03ccda5d1cca0b6c82b465f6fdee2f7a1e61a49f6486b9 SHA512 710d7a36c1e6526e4a9e309d985907a64128a1ae83430dd0e48bddc956c4f60344abcdb016f1c91fc1add6a1e4eca06d92a0231600faf0bd316b729bbd1deaf3
DIST lynis-3.1.1.tar.gz 344324 BLAKE2B 056e689f00ac0fa74bd1a6dc3915cbd70f28cdb5461e0749b68ce2cf84e425c295425f7bb6d5aeb0208693a0e38290cb90925e392928257c79bc5887f6e58498 SHA512 c37366154e03a661a7e995d14c651d5503c7189f50edfd194d8b7034e001b9610bfe79917221156ab3607f7c348625ea956fb0acb46a6c7e64a7d189dbcfd4ee
diff --git a/app-forensics/lynis/lynis-3.1.0.ebuild b/app-forensics/lynis/lynis-3.1.0.ebuild
deleted file mode 100644
index d3198792ee57..000000000000
--- a/app-forensics/lynis/lynis-3.1.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-RDEPEND="
- app-shells/bash
- cron? ( !systemd? ( virtual/cron ) )"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-03-11 22:19 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-03-11 22:19 UTC (permalink / raw
To: gentoo-commits
commit: 25c05e83b108fd9e880048c904976d25a18f4dea
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 11 22:18:42 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Mon Mar 11 22:18:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c05e83
app-forensics/lynis: add 3.1.0
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-3.1.0.ebuild | 71 ++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 1814ad4c449f..449415fa6ecb 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1,2 @@
DIST lynis-3.0.9.tar.gz 339171 BLAKE2B dc7912c7d1782c3ffdf369cc7f0f004267bd2a2c408982909e654db14ecfa83ebdbd2f731c3d3ee8864e7de21945b1faa2f9d2845dedf3e742a4c79c62373eda SHA512 7fc0349be9ea9d6e311b834cb7f9089bd0d393381edb5325a0bea88ed83dcd3d816dc213c6a6d17f88ff937af71be72004570894e427e4faf1b0d39448aa3a43
+DIST lynis-3.1.0.tar.gz 344222 BLAKE2B 257c451d04f54ca1cebb36f2a336d93c15619ed416dae86f4fb3926ad4d830e0978db13c8885db1bbb03ccda5d1cca0b6c82b465f6fdee2f7a1e61a49f6486b9 SHA512 710d7a36c1e6526e4a9e309d985907a64128a1ae83430dd0e48bddc956c4f60344abcdb016f1c91fc1add6a1e4eca06d92a0231600faf0bd316b729bbd1deaf3
diff --git a/app-forensics/lynis/lynis-3.1.0.ebuild b/app-forensics/lynis/lynis-3.1.0.ebuild
new file mode 100644
index 000000000000..d3198792ee57
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.1.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+RDEPEND="
+ app-shells/bash
+ cron? ( !systemd? ( virtual/cron ) )"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2024-03-11 22:19 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2024-03-11 22:19 UTC (permalink / raw
To: gentoo-commits
commit: eadc00492d3bad7afcbe9137f9d10b44bed9b81b
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 11 22:18:53 2024 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Mon Mar 11 22:18:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eadc0049
app-forensics/lynis: drop 3.0.9
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 -
app-forensics/lynis/lynis-3.0.9.ebuild | 71 ----------------------------------
2 files changed, 72 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 449415fa6ecb..c91a6c744767 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,2 +1 @@
-DIST lynis-3.0.9.tar.gz 339171 BLAKE2B dc7912c7d1782c3ffdf369cc7f0f004267bd2a2c408982909e654db14ecfa83ebdbd2f731c3d3ee8864e7de21945b1faa2f9d2845dedf3e742a4c79c62373eda SHA512 7fc0349be9ea9d6e311b834cb7f9089bd0d393381edb5325a0bea88ed83dcd3d816dc213c6a6d17f88ff937af71be72004570894e427e4faf1b0d39448aa3a43
DIST lynis-3.1.0.tar.gz 344222 BLAKE2B 257c451d04f54ca1cebb36f2a336d93c15619ed416dae86f4fb3926ad4d830e0978db13c8885db1bbb03ccda5d1cca0b6c82b465f6fdee2f7a1e61a49f6486b9 SHA512 710d7a36c1e6526e4a9e309d985907a64128a1ae83430dd0e48bddc956c4f60344abcdb016f1c91fc1add6a1e4eca06d92a0231600faf0bd316b729bbd1deaf3
diff --git a/app-forensics/lynis/lynis-3.0.9.ebuild b/app-forensics/lynis/lynis-3.0.9.ebuild
deleted file mode 100644
index 766e6e18f38e..000000000000
--- a/app-forensics/lynis/lynis-3.0.9.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-RDEPEND="
- app-shells/bash
- cron? ( !systemd? ( virtual/cron ) )"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2023-12-29 13:05 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2023-12-29 13:05 UTC (permalink / raw
To: gentoo-commits
commit: 28bc017849508f74a47a2c7d5b1db6378a9d03e1
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 13:05:18 2023 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 13:05:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28bc0178
app-forensics/lynis: [QA] Fix EmptyGlobalAssignment
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.9.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/app-forensics/lynis/lynis-3.0.9.ebuild b/app-forensics/lynis/lynis-3.0.9.ebuild
index 8ed08f4c8527..766e6e18f38e 100644
--- a/app-forensics/lynis/lynis-3.0.9.ebuild
+++ b/app-forensics/lynis/lynis-3.0.9.ebuild
@@ -14,7 +14,6 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+cron systemd"
-DEPEND=""
RDEPEND="
app-shells/bash
cron? ( !systemd? ( virtual/cron ) )"
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2023-08-04 14:21 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2023-08-04 14:21 UTC (permalink / raw
To: gentoo-commits
commit: 9a966ba58face3029150e3dbf26a5a029696ccd6
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 4 14:20:48 2023 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Fri Aug 4 14:20:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a966ba5
app-forensics/lynis: drop 3.0.8-r1
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 -
app-forensics/lynis/lynis-3.0.8-r1.ebuild | 72 -------------------------------
2 files changed, 73 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 12f931895573..1814ad4c449f 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,2 +1 @@
-DIST lynis-3.0.8.tar.gz 339467 BLAKE2B 490bd6799619a4247c3fa68cc96f2f1fead651b23db0ffb512394960f8ca0360ab7f25d2bb8d9e742641558972e1fdd4b1e18d7de0d13007988276eed3a97b1f SHA512 df41aa8b7518a72ee17732eb7e69ccc62ca6e1323d3adc7aec509cd1c21494fece873e101bc317655dafbf58b32699f56dd27eec13a2ce615801cee75961cd33
DIST lynis-3.0.9.tar.gz 339171 BLAKE2B dc7912c7d1782c3ffdf369cc7f0f004267bd2a2c408982909e654db14ecfa83ebdbd2f731c3d3ee8864e7de21945b1faa2f9d2845dedf3e742a4c79c62373eda SHA512 7fc0349be9ea9d6e311b834cb7f9089bd0d393381edb5325a0bea88ed83dcd3d816dc213c6a6d17f88ff937af71be72004570894e427e4faf1b0d39448aa3a43
diff --git a/app-forensics/lynis/lynis-3.0.8-r1.ebuild b/app-forensics/lynis/lynis-3.0.8-r1.ebuild
deleted file mode 100644
index b7df6561856b..000000000000
--- a/app-forensics/lynis/lynis-3.0.8-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-DEPEND=""
-RDEPEND="
- app-shells/bash
- cron? ( !systemd? ( virtual/cron ) )"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2023-08-04 14:21 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2023-08-04 14:21 UTC (permalink / raw
To: gentoo-commits
commit: d216c3ccebee8b34aa12e2f7efbca5bd1799d814
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 4 14:20:38 2023 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Fri Aug 4 14:20:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d216c3cc
app-forensics/lynis: add 3.0.9
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-3.0.9.ebuild | 72 ++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 8ebbc512db93..12f931895573 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1,2 @@
DIST lynis-3.0.8.tar.gz 339467 BLAKE2B 490bd6799619a4247c3fa68cc96f2f1fead651b23db0ffb512394960f8ca0360ab7f25d2bb8d9e742641558972e1fdd4b1e18d7de0d13007988276eed3a97b1f SHA512 df41aa8b7518a72ee17732eb7e69ccc62ca6e1323d3adc7aec509cd1c21494fece873e101bc317655dafbf58b32699f56dd27eec13a2ce615801cee75961cd33
+DIST lynis-3.0.9.tar.gz 339171 BLAKE2B dc7912c7d1782c3ffdf369cc7f0f004267bd2a2c408982909e654db14ecfa83ebdbd2f731c3d3ee8864e7de21945b1faa2f9d2845dedf3e742a4c79c62373eda SHA512 7fc0349be9ea9d6e311b834cb7f9089bd0d393381edb5325a0bea88ed83dcd3d816dc213c6a6d17f88ff937af71be72004570894e427e4faf1b0d39448aa3a43
diff --git a/app-forensics/lynis/lynis-3.0.9.ebuild b/app-forensics/lynis/lynis-3.0.9.ebuild
new file mode 100644
index 000000000000..8ed08f4c8527
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.0.9.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+DEPEND=""
+RDEPEND="
+ app-shells/bash
+ cron? ( !systemd? ( virtual/cron ) )"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-10-10 12:42 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-10-10 12:42 UTC (permalink / raw
To: gentoo-commits
commit: 03533810bee7f7177e1168eb517f17cb35069c4e
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 12:42:47 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 12:42:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03533810
app-forensics/lynis: drop 3.0.8
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.8.ebuild | 72 ----------------------------------
1 file changed, 72 deletions(-)
diff --git a/app-forensics/lynis/lynis-3.0.8.ebuild b/app-forensics/lynis/lynis-3.0.8.ebuild
deleted file mode 100644
index 6209f7360914..000000000000
--- a/app-forensics/lynis/lynis-3.0.8.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-DEPEND=""
-RDEPEND="
- app-shells/bash
- !systemd? ( virtual/cron )"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-09-01 20:18 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-09-01 20:18 UTC (permalink / raw
To: gentoo-commits
commit: 8d19cfdd58a312a671a7c89c7189584b4b6b4b2a
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 1 20:18:02 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Sep 1 20:18:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d19cfdd
app-forensics/lynis: update EAPI 7 -> 8, fix -cron
Make sure when -cron is present, we don't depend on
virtual/cron.
Closes: https://bugs.gentoo.org/867049
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.8-r1.ebuild | 72 +++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/app-forensics/lynis/lynis-3.0.8-r1.ebuild b/app-forensics/lynis/lynis-3.0.8-r1.ebuild
new file mode 100644
index 000000000000..b7df6561856b
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.0.8-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+DEPEND=""
+RDEPEND="
+ app-shells/bash
+ cron? ( !systemd? ( virtual/cron ) )"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-05-18 11:37 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-05-18 11:37 UTC (permalink / raw
To: gentoo-commits
commit: af97de81a6f86fde8c6455f38d470fe8bbd967b9
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Wed May 18 11:37:42 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Wed May 18 11:37:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af97de81
app-forensics/lynis: drop 3.0.7-r1
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 -
app-forensics/lynis/lynis-3.0.7-r1.ebuild | 72 -------------------------------
2 files changed, 73 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 8422be0db7b7..8ebbc512db93 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,2 +1 @@
-DIST lynis-3.0.7.tar.gz 338212 BLAKE2B d9cddcba9c83ddee08ea38c8e80bf6f0a78179ad102673a876a1fe3d4544612e945d8637a8d026ce7bff72b09d6274223031e1cb6fc74596b2c65f0380fecd67 SHA512 c65d42071a48b15c2f16ceaf30404db0dac740c4cc6109442a0757e0576f794ebaf9430547eb1a0a452ce85993f00e8779ce2c4ffc47c206d674b8fd2cb02e3a
DIST lynis-3.0.8.tar.gz 339467 BLAKE2B 490bd6799619a4247c3fa68cc96f2f1fead651b23db0ffb512394960f8ca0360ab7f25d2bb8d9e742641558972e1fdd4b1e18d7de0d13007988276eed3a97b1f SHA512 df41aa8b7518a72ee17732eb7e69ccc62ca6e1323d3adc7aec509cd1c21494fece873e101bc317655dafbf58b32699f56dd27eec13a2ce615801cee75961cd33
diff --git a/app-forensics/lynis/lynis-3.0.7-r1.ebuild b/app-forensics/lynis/lynis-3.0.7-r1.ebuild
deleted file mode 100644
index 6209f7360914..000000000000
--- a/app-forensics/lynis/lynis-3.0.7-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit bash-completion-r1 systemd
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+cron systemd"
-
-DEPEND=""
-RDEPEND="
- app-shells/bash
- !systemd? ( virtual/cron )"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
- systemd_dounit "${S}/extras/systemd/${PN}.timer"
-
- if ! use cron; then
- ebegin "removing cron files from installation image"
- rm -rfv "${ED}/etc/cron.daily" || die
- eend "$?"
- fi
-}
-
-pkg_postinst() {
- if use cron; then
- if systemd_is_booted || has_version sys-apps/systemd; then
- echo
- ewarn "Both 'cron' and 'systemd' flags are enabled."
- ewarn "So both ${PN}.target and cron files were installed."
- ewarn "Please don't use 2 implementations at the same time."
- ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
- ewarn "If you want to use systemd ${PN}.target timers"
- ewarn "disable 'cron' flag and reinstall ${PN}"
- echo
- else
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- fi
- fi
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-05-18 11:37 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-05-18 11:37 UTC (permalink / raw
To: gentoo-commits
commit: dfbe02a2df6619d7c4aba3fccfa801be0af85a9f
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Wed May 18 11:37:35 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Wed May 18 11:37:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfbe02a2
app-forensics/lynis: add 3.0.8
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-3.0.8.ebuild | 72 ++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 0647b525cc80..8422be0db7b7 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1,2 @@
DIST lynis-3.0.7.tar.gz 338212 BLAKE2B d9cddcba9c83ddee08ea38c8e80bf6f0a78179ad102673a876a1fe3d4544612e945d8637a8d026ce7bff72b09d6274223031e1cb6fc74596b2c65f0380fecd67 SHA512 c65d42071a48b15c2f16ceaf30404db0dac740c4cc6109442a0757e0576f794ebaf9430547eb1a0a452ce85993f00e8779ce2c4ffc47c206d674b8fd2cb02e3a
+DIST lynis-3.0.8.tar.gz 339467 BLAKE2B 490bd6799619a4247c3fa68cc96f2f1fead651b23db0ffb512394960f8ca0360ab7f25d2bb8d9e742641558972e1fdd4b1e18d7de0d13007988276eed3a97b1f SHA512 df41aa8b7518a72ee17732eb7e69ccc62ca6e1323d3adc7aec509cd1c21494fece873e101bc317655dafbf58b32699f56dd27eec13a2ce615801cee75961cd33
diff --git a/app-forensics/lynis/lynis-3.0.8.ebuild b/app-forensics/lynis/lynis-3.0.8.ebuild
new file mode 100644
index 000000000000..6209f7360914
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.0.8.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+cron systemd"
+
+DEPEND=""
+RDEPEND="
+ app-shells/bash
+ !systemd? ( virtual/cron )"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
+}
+
+pkg_postinst() {
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-01-20 23:57 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-01-20 23:57 UTC (permalink / raw
To: gentoo-commits
commit: d13389e042cea140a020a76e1fc9f5fcc519c821
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 23:57:41 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 23:57:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d13389e0
app-forensics/lynis: def use flag cron to ensure script install
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/lynis-3.0.7-r1.ebuild b/app-forensics/lynis/lynis-3.0.7-r1.ebuild
index 913dca9f8bb1..6209f7360914 100644
--- a/app-forensics/lynis/lynis-3.0.7-r1.ebuild
+++ b/app-forensics/lynis/lynis-3.0.7-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://cisofy.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="cron systemd"
+IUSE="+cron systemd"
DEPEND=""
RDEPEND="
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-01-20 23:51 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-01-20 23:51 UTC (permalink / raw
To: gentoo-commits
commit: 15b16fa6fd962c7278131da9156657287c6880a7
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 23:51:49 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 23:51:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b16fa6
app-forensics/lynis: Do not install cron scripts when not appropiate
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
.../{lynis-3.0.7.ebuild => lynis-3.0.7-r1.ebuild} | 29 ++++++++++++++++++----
app-forensics/lynis/metadata.xml | 3 +++
2 files changed, 27 insertions(+), 5 deletions(-)
diff --git a/app-forensics/lynis/lynis-3.0.7.ebuild b/app-forensics/lynis/lynis-3.0.7-r1.ebuild
similarity index 57%
rename from app-forensics/lynis/lynis-3.0.7.ebuild
rename to app-forensics/lynis/lynis-3.0.7-r1.ebuild
index 6ae259786a48..913dca9f8bb1 100644
--- a/app-forensics/lynis/lynis-3.0.7.ebuild
+++ b/app-forensics/lynis/lynis-3.0.7-r1.ebuild
@@ -12,10 +12,12 @@ SRC_URI="https://cisofy.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="cron systemd"
DEPEND=""
-RDEPEND="app-shells/bash"
+RDEPEND="
+ app-shells/bash
+ !systemd? ( virtual/cron )"
S="${WORKDIR}/${PN}"
@@ -44,10 +46,27 @@ src_install() {
sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.timer"
+
+ if ! use cron; then
+ ebegin "removing cron files from installation image"
+ rm -rfv "${ED}/etc/cron.daily" || die
+ eend "$?"
+ fi
}
pkg_postinst() {
- einfo
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- einfo
+ if use cron; then
+ if systemd_is_booted || has_version sys-apps/systemd; then
+ echo
+ ewarn "Both 'cron' and 'systemd' flags are enabled."
+ ewarn "So both ${PN}.target and cron files were installed."
+ ewarn "Please don't use 2 implementations at the same time."
+ ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
+ ewarn "If you want to use systemd ${PN}.target timers"
+ ewarn "disable 'cron' flag and reinstall ${PN}"
+ echo
+ else
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ fi
+ fi
}
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index 086891921a07..72bf02bbb435 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -5,4 +5,7 @@
<email>mpagano@gentoo.org</email>
<name>Mike Pagano</name>
</maintainer>
+ <use>
+ <flag name="cron">Install /etc/cron.* files</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2022-01-20 20:19 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2022-01-20 20:19 UTC (permalink / raw
To: gentoo-commits
commit: a4bc6009ee52e2495206a1339d9bac6a32f8ca3b
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 20:19:09 2022 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 20:19:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4bc6009
app-forensics/lynis: Version bump, remove old
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-3.0.6.ebuild => lynis-3.0.7.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 25a719c4f007..0647b525cc80 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.6.tar.gz 336725 BLAKE2B 49abad8af63e4eeb3585a241d34433f85f84719a0bbd0c2c1f87a2ab45fc0f88193236f3b10261a59e1c6efd9352134a29b8f311c5a5a749eccede2c8353c6e7 SHA512 113f3bf1b8ca4ec030bd971da41e3f182c2467d97e09eb0f2b502ab5d04c43b922570a00b62de06b97bfca64cb67576f14754f9921be63731500d3beb33d5a2a
+DIST lynis-3.0.7.tar.gz 338212 BLAKE2B d9cddcba9c83ddee08ea38c8e80bf6f0a78179ad102673a876a1fe3d4544612e945d8637a8d026ce7bff72b09d6274223031e1cb6fc74596b2c65f0380fecd67 SHA512 c65d42071a48b15c2f16ceaf30404db0dac740c4cc6109442a0757e0576f794ebaf9430547eb1a0a452ce85993f00e8779ce2c4ffc47c206d674b8fd2cb02e3a
diff --git a/app-forensics/lynis/lynis-3.0.6.ebuild b/app-forensics/lynis/lynis-3.0.7.ebuild
similarity index 96%
rename from app-forensics/lynis/lynis-3.0.6.ebuild
rename to app-forensics/lynis/lynis-3.0.7.ebuild
index 0de67b2421e8..6ae259786a48 100644
--- a/app-forensics/lynis/lynis-3.0.6.ebuild
+++ b/app-forensics/lynis/lynis-3.0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-08-09 14:54 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2021-08-09 14:54 UTC (permalink / raw
To: gentoo-commits
commit: 8c73b551f3459d960bddcfbc4b0c37cae72f51a9
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 9 14:53:40 2021 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Mon Aug 9 14:53:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c73b551
app-forensics/lynis: Version bump, remove all
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-3.0.4.ebuild => lynis-3.0.6.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index b81b36693a6..25a719c4f00 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.4.tar.gz 332004 BLAKE2B a68d85d679aae19304edc2ea7a982686d03897d806a7b44ca4c5318d8aa753a8b41b5ec2d80fbcda4bf69d35b5a6a0497b42d9b68c869763b09bfcb4922f5f83 SHA512 0e31cab00302678019d4a3d617e376fa1e8ca981b5eeb5dd22ce6f821f33957db351a4cd81a06f44eb0a8ca5094b1a5c062021c637b37e848ed0451de0f6c7c4
+DIST lynis-3.0.6.tar.gz 336725 BLAKE2B 49abad8af63e4eeb3585a241d34433f85f84719a0bbd0c2c1f87a2ab45fc0f88193236f3b10261a59e1c6efd9352134a29b8f311c5a5a749eccede2c8353c6e7 SHA512 113f3bf1b8ca4ec030bd971da41e3f182c2467d97e09eb0f2b502ab5d04c43b922570a00b62de06b97bfca64cb67576f14754f9921be63731500d3beb33d5a2a
diff --git a/app-forensics/lynis/lynis-3.0.4.ebuild b/app-forensics/lynis/lynis-3.0.6.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-3.0.4.ebuild
rename to app-forensics/lynis/lynis-3.0.6.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-06-03 16:51 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2021-06-03 16:51 UTC (permalink / raw
To: gentoo-commits
commit: 6e4f1bc839acca7059213fb43db627cfbbccf7af
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 3 16:50:46 2021 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Jun 3 16:50:46 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e4f1bc8
app-forensics/lynis: Version bump, remove old.
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/lynis-3.0.3.ebuild | 50 ----------------------
.../{lynis-3.0.3-r2.ebuild => lynis-3.0.4.ebuild} | 0
3 files changed, 1 insertion(+), 51 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index cddc6df7345..b81b36693a6 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.3.tar.gz 331182 BLAKE2B 7b424da8726e474992bcf6b13b6b82b48568b2d1f4268d0cb57f11560c4edbcd60d009c67fd333445392a184f1dbe38a55fde7cb7456498f89c451bc51ba3e8f SHA512 850f832fd45a2e440973c414f2c98caf3add1666573f60ea70bf36f57dbf3ac1b354632f09271b34f85eba25079e564d758e237dcded743a132da771c5bce151
+DIST lynis-3.0.4.tar.gz 332004 BLAKE2B a68d85d679aae19304edc2ea7a982686d03897d806a7b44ca4c5318d8aa753a8b41b5ec2d80fbcda4bf69d35b5a6a0497b42d9b68c869763b09bfcb4922f5f83 SHA512 0e31cab00302678019d4a3d617e376fa1e8ca981b5eeb5dd22ce6f821f33957db351a4cd81a06f44eb0a8ca5094b1a5c062021c637b37e848ed0451de0f6c7c4
diff --git a/app-forensics/lynis/lynis-3.0.3.ebuild b/app-forensics/lynis/lynis-3.0.3.ebuild
deleted file mode 100644
index f8eca98da98..00000000000
--- a/app-forensics/lynis/lynis-3.0.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit bash-completion-r1
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="https://cisofy.com/lynis/"
-SRC_URI="https://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="app-shells/bash"
-
-S="${WORKDIR}/${PN}"
-
-src_install() {
- doman lynis.8
- dodoc FAQ README
- newdoc CHANGELOG.md CHANGELOG
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
-}
-
-pkg_postinst() {
- einfo
- einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
- einfo
-}
diff --git a/app-forensics/lynis/lynis-3.0.3-r2.ebuild b/app-forensics/lynis/lynis-3.0.4.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-3.0.3-r2.ebuild
rename to app-forensics/lynis/lynis-3.0.4.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-03-16 22:40 Sam James
0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-16 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 5b3457f954cdc4332245adc6b1c82645a586d481
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 22:40:42 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 22:40:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b3457f9
app-forensics/lynis: fix typo
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.3-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/lynis-3.0.3-r2.ebuild b/app-forensics/lynis/lynis-3.0.3-r2.ebuild
index 9636cb8ccee..b7d94d5ae33 100644
--- a/app-forensics/lynis/lynis-3.0.3-r2.ebuild
+++ b/app-forensics/lynis/lynis-3.0.3-r2.ebuild
@@ -41,7 +41,7 @@ src_install() {
insinto /etc/${PN}
doins default.prf
- sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" die "Sed Failed!"
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.timer"
}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-03-16 22:38 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2021-03-16 22:38 UTC (permalink / raw
To: gentoo-commits
commit: 48bbc0e66de51003071d60e57fc153ffea342d43
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 22:38:21 2021 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 22:38:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48bbc0e6
app-forensics/lynis: Fix for lynis.service. See bug #776580
Closes: https://bugs.gentoo.org/776580
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/{lynis-3.0.3-r1.ebuild => lynis-3.0.3-r2.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-forensics/lynis/lynis-3.0.3-r1.ebuild b/app-forensics/lynis/lynis-3.0.3-r2.ebuild
similarity index 86%
rename from app-forensics/lynis/lynis-3.0.3-r1.ebuild
rename to app-forensics/lynis/lynis-3.0.3-r2.ebuild
index 98be2c95831..9636cb8ccee 100644
--- a/app-forensics/lynis/lynis-3.0.3-r1.ebuild
+++ b/app-forensics/lynis/lynis-3.0.3-r2.ebuild
@@ -41,7 +41,8 @@ src_install() {
insinto /etc/${PN}
doins default.prf
- systemd_dounit "${S}/extras/systemd/${PN}.service"
+ sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" die "Sed Failed!"
+ systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.timer"
}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-03-14 12:53 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2021-03-14 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 48c9ca02f6e8c3c6c1e5561574fad553db4cee9f
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 14 12:53:25 2021 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 12:53:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48c9ca02
app-forensics/lynis: Install systemd service and timer file.
Thanks to Alessandro Barbieri for reporting.
Closes: https://bugs.gentoo.org/775776
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.3-r1.ebuild | 52 +++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/app-forensics/lynis/lynis-3.0.3-r1.ebuild b/app-forensics/lynis/lynis-3.0.3-r1.ebuild
new file mode 100644
index 00000000000..98be2c95831
--- /dev/null
+++ b/app-forensics/lynis/lynis-3.0.3-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit eutils bash-completion-r1 systemd
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="app-shells/bash"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+ systemd_dounit "${S}/extras/systemd/${PN}.service"
+ systemd_dounit "${S}/extras/systemd/${PN}.timer"
+}
+
+pkg_postinst() {
+ einfo
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
+ einfo
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2021-01-08 14:21 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2021-01-08 14:21 UTC (permalink / raw
To: gentoo-commits
commit: 8ef0bfcfdf1764b2e56a64695318b8b1a5aa5225
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 14:20:56 2021 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 14:20:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef0bfcf
app-forensics/lynis: Version bump, remove old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-3.0.2.ebuild => lynis-3.0.3.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 5723b20ec43..cddc6df7345 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.2.tar.gz 330490 BLAKE2B 824ab760aedff00c39632431ecd60cfb7c784e1c944fa7e54830a56e87c605dcb697cdd7d34fcc1a91d876e5170350b66296dbb51f4734b6881820d59535bfe8 SHA512 a23207a1f227f723b3f7a1d46ac84b3cc14b0ac1a9727f57ca3f6f112d1b62ade6e6f21983fb74570aa1209bce8c7b8395f91245309d616c22cd245103028031
+DIST lynis-3.0.3.tar.gz 331182 BLAKE2B 7b424da8726e474992bcf6b13b6b82b48568b2d1f4268d0cb57f11560c4edbcd60d009c67fd333445392a184f1dbe38a55fde7cb7456498f89c451bc51ba3e8f SHA512 850f832fd45a2e440973c414f2c98caf3add1666573f60ea70bf36f57dbf3ac1b354632f09271b34f85eba25079e564d758e237dcded743a132da771c5bce151
diff --git a/app-forensics/lynis/lynis-3.0.2.ebuild b/app-forensics/lynis/lynis-3.0.3.ebuild
similarity index 96%
rename from app-forensics/lynis/lynis-3.0.2.ebuild
rename to app-forensics/lynis/lynis-3.0.3.ebuild
index 5ee09e290d0..b1cdf6c0b04 100644
--- a/app-forensics/lynis/lynis-3.0.2.ebuild
+++ b/app-forensics/lynis/lynis-3.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-12-25 12:38 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-12-25 12:38 UTC (permalink / raw
To: gentoo-commits
commit: 28c59b3966fa995c01cdc8833da6fcd75e52142a
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 25 12:38:24 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Fri Dec 25 12:38:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c59b39
app-forensics/lynis: Version bump, remove old
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-3.0.1.ebuild => lynis-3.0.2.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 720e9db62af..5723b20ec43 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.1.tar.gz 322638 BLAKE2B b0a6b03351af95e766321164fab34c7eb8314f18747d3df87946e379781970253406132a1674236a39879374ecc559489679d34ef3368d74faf98b0f44425293 SHA512 e237984b404752bd0856e1cbb884d0191a1177023780d9d0f885538846e419fcb75302a33320ba41e5895cabca0ead094e1c49865677906e547e255b4f5aab41
+DIST lynis-3.0.2.tar.gz 330490 BLAKE2B 824ab760aedff00c39632431ecd60cfb7c784e1c944fa7e54830a56e87c605dcb697cdd7d34fcc1a91d876e5170350b66296dbb51f4734b6881820d59535bfe8 SHA512 a23207a1f227f723b3f7a1d46ac84b3cc14b0ac1a9727f57ca3f6f112d1b62ade6e6f21983fb74570aa1209bce8c7b8395f91245309d616c22cd245103028031
diff --git a/app-forensics/lynis/lynis-3.0.1.ebuild b/app-forensics/lynis/lynis-3.0.2.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-3.0.1.ebuild
rename to app-forensics/lynis/lynis-3.0.2.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-10-06 15:35 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-10-06 15:35 UTC (permalink / raw
To: gentoo-commits
commit: 699cff3f22ef57e0eb4b2436682891827322bed9
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 6 15:34:53 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Oct 6 15:34:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=699cff3f
app-forensics/lynis: Version bump
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-3.0.0.ebuild => lynis-3.0.1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index a2ac02aaa3c..720e9db62af 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-3.0.0.tar.gz 320637 BLAKE2B a69346a0a0ba8236b6872a0523a36ae03be934bc128ad57f67179f120291197019f9387ffb6ec6390b344f7d17224b104c657fe8b474b339f0521a2a544f69cd SHA512 2f156002ff1cfcd2333c95b57e82e76260364fa58419b9414f2bb461aa77a22c2f1af57a6a934e88030baeb69aa9c274045cfcef359eb496d10acd5b886cb856
+DIST lynis-3.0.1.tar.gz 322638 BLAKE2B b0a6b03351af95e766321164fab34c7eb8314f18747d3df87946e379781970253406132a1674236a39879374ecc559489679d34ef3368d74faf98b0f44425293 SHA512 e237984b404752bd0856e1cbb884d0191a1177023780d9d0f885538846e419fcb75302a33320ba41e5895cabca0ead094e1c49865677906e547e255b4f5aab41
diff --git a/app-forensics/lynis/lynis-3.0.0.ebuild b/app-forensics/lynis/lynis-3.0.1.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-3.0.0.ebuild
rename to app-forensics/lynis/lynis-3.0.1.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-07-12 17:35 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-07-12 17:35 UTC (permalink / raw
To: gentoo-commits
commit: c0d5aed65feb5bbbe168f71ec8cee9d032911f10
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 12 17:35:46 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Jul 12 17:35:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0d5aed6
app-forensics/lynis: Add myself as maintainer
I've been bumping this one for two years now.
Making it official.
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/metadata.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index 7a38bb90096..542792de7f1 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>mpagano@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-07-11 15:19 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-07-11 15:19 UTC (permalink / raw
To: gentoo-commits
commit: ffe1fd0d36ad81ffd4e752d89edcc4f4b6d22442
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 11 15:19:18 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sat Jul 11 15:19:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffe1fd0d
app-forensics/lynis: Add trailing slash
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/lynis-3.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/lynis-3.0.0.ebuild b/app-forensics/lynis/lynis-3.0.0.ebuild
index 9d727a6d761..5ee09e290d0 100644
--- a/app-forensics/lynis/lynis-3.0.0.ebuild
+++ b/app-forensics/lynis/lynis-3.0.0.ebuild
@@ -45,6 +45,6 @@ src_install() {
pkg_postinst() {
einfo
- einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
+ einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
einfo
}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2020-07-11 14:55 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2020-07-11 14:55 UTC (permalink / raw
To: gentoo-commits
commit: a51e4e08b3ed6503b7b9bed9eaa57ad8c07dfb10
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 11 14:55:14 2020 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sat Jul 11 14:55:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51e4e08
app-forensics/lynis: Version bump, remove old
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.7.5.ebuild => lynis-3.0.0.ebuild} | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index fdafb0e556f..a2ac02aaa3c 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.7.5.tar.gz 288688 BLAKE2B e82dd67a49c234745e8af8faca9c4a9664568db9e6c9f9e33c1a3213582f2110a27109fa370642135bd3ec90fc9086314836cfe6d9712bedb110ef61e93aa115 SHA512 0ec814cb65252e3e8a44013ad0902e188a4825c521d47280586c0dd9924dfb7b79cce9797055ab7b7be59dacc111607d114175e0a793844227eadda76f68980b
+DIST lynis-3.0.0.tar.gz 320637 BLAKE2B a69346a0a0ba8236b6872a0523a36ae03be934bc128ad57f67179f120291197019f9387ffb6ec6390b344f7d17224b104c657fe8b474b339f0521a2a544f69cd SHA512 2f156002ff1cfcd2333c95b57e82e76260364fa58419b9414f2bb461aa77a22c2f1af57a6a934e88030baeb69aa9c274045cfcef359eb496d10acd5b886cb856
diff --git a/app-forensics/lynis/lynis-2.7.5.ebuild b/app-forensics/lynis/lynis-3.0.0.ebuild
similarity index 95%
rename from app-forensics/lynis/lynis-2.7.5.ebuild
rename to app-forensics/lynis/lynis-3.0.0.ebuild
index 1701f39cc6f..9d727a6d761 100644
--- a/app-forensics/lynis/lynis-2.7.5.ebuild
+++ b/app-forensics/lynis/lynis-3.0.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI="7"
inherit eutils bash-completion-r1
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2019-08-27 12:42 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2019-08-27 12:42 UTC (permalink / raw
To: gentoo-commits
commit: 2a750e1cc56095ad8fb52d87193a3c04fe5be559
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 27 12:42:29 2019 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Aug 27 12:42:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a750e1c
app-forensics/lynis: Version bump. Remove old
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.7.3.ebuild => lynis-2.7.5.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index b91538b182f..fdafb0e556f 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.7.3.tar.gz 282609 BLAKE2B 68dcb9d1fc9f81007c15a5f1074d9f42b6f558f7bc62dfba134adffb7b6d858604a10e188abea298eb51e82f8ec1ea5f270563d16a87a68de25dab8e13a1f1c1 SHA512 eb50d5d1769f0276a8383a5c6c664b390ced75248678edd80b00a7c344e8567d9c5fcc7a1f4a1a0e20a26c03bb3648d3b81f165266b3654e75bbec5061ab3837
+DIST lynis-2.7.5.tar.gz 288688 BLAKE2B e82dd67a49c234745e8af8faca9c4a9664568db9e6c9f9e33c1a3213582f2110a27109fa370642135bd3ec90fc9086314836cfe6d9712bedb110ef61e93aa115 SHA512 0ec814cb65252e3e8a44013ad0902e188a4825c521d47280586c0dd9924dfb7b79cce9797055ab7b7be59dacc111607d114175e0a793844227eadda76f68980b
diff --git a/app-forensics/lynis/lynis-2.7.3.ebuild b/app-forensics/lynis/lynis-2.7.5.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-2.7.3.ebuild
rename to app-forensics/lynis/lynis-2.7.5.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2019-03-28 12:11 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2019-03-28 12:11 UTC (permalink / raw
To: gentoo-commits
commit: 8773519a6ad729e00ed3f4188f6382790ee7449d
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 28 12:11:09 2019 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 12:11:19 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8773519a
app-forensics/lynis: Version bump. Remove old.
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.7.1.ebuild => lynis-2.7.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 05190e40f93..b91538b182f 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.7.1.tar.gz 278069 BLAKE2B 0e138a4dcdb1c68373e095a134f4ef1446402ae699e7d7e6afa146d593865c2855dcf7a809b9c19b0b996722256d2d98142cc1adc9c6f08d15e79aa842d3f643 SHA512 4ad1d9b79bbb7e74f3b171b9ee76eced1bb7812c560df4ac5a8445d4a6a5a0a46d9fc3fa7969509ba54d6658c466809f3286a59c91be69e40f03e7fd5902917b
+DIST lynis-2.7.3.tar.gz 282609 BLAKE2B 68dcb9d1fc9f81007c15a5f1074d9f42b6f558f7bc62dfba134adffb7b6d858604a10e188abea298eb51e82f8ec1ea5f270563d16a87a68de25dab8e13a1f1c1 SHA512 eb50d5d1769f0276a8383a5c6c664b390ced75248678edd80b00a7c344e8567d9c5fcc7a1f4a1a0e20a26c03bb3648d3b81f165266b3654e75bbec5061ab3837
diff --git a/app-forensics/lynis/lynis-2.7.1.ebuild b/app-forensics/lynis/lynis-2.7.3.ebuild
similarity index 100%
rename from app-forensics/lynis/lynis-2.7.1.ebuild
rename to app-forensics/lynis/lynis-2.7.3.ebuild
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2019-02-20 23:44 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2019-02-20 23:44 UTC (permalink / raw
To: gentoo-commits
commit: 29cdd669ebacd80fa48a71c8c5f4570f570de8a5
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 20 23:44:32 2019 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Wed Feb 20 23:44:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29cdd669
app-forensics/lynis: Version bump. Remove old.
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.7.0.ebuild => lynis-2.7.1.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 425e52f794f..05190e40f93 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.7.0.tar.gz 276959 BLAKE2B 51f9a811f0410547c1866addd7a545a5976f5d8ab51f58b4538e1cbf93faccce7ea24e1943eb6dceda851616651619eab5f1eb88e47658e3953c60bcd0a4c0e4 SHA512 bf7fab22f762a15c2ace620731dee5a05b3c463acc7c7a4d9c2729cd5fb04639cd41faa951a9a0c99a85ed816dd531abb8f76f35d2af9ad81e6691a6f278450b
+DIST lynis-2.7.1.tar.gz 278069 BLAKE2B 0e138a4dcdb1c68373e095a134f4ef1446402ae699e7d7e6afa146d593865c2855dcf7a809b9c19b0b996722256d2d98142cc1adc9c6f08d15e79aa842d3f643 SHA512 4ad1d9b79bbb7e74f3b171b9ee76eced1bb7812c560df4ac5a8445d4a6a5a0a46d9fc3fa7969509ba54d6658c466809f3286a59c91be69e40f03e7fd5902917b
diff --git a/app-forensics/lynis/lynis-2.7.0.ebuild b/app-forensics/lynis/lynis-2.7.1.ebuild
similarity index 96%
rename from app-forensics/lynis/lynis-2.7.0.ebuild
rename to app-forensics/lynis/lynis-2.7.1.ebuild
index df4bdf19881..1701f39cc6f 100644
--- a/app-forensics/lynis/lynis-2.7.0.ebuild
+++ b/app-forensics/lynis/lynis-2.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2018-11-27 23:41 Mike Pagano
0 siblings, 0 replies; 38+ messages in thread
From: Mike Pagano @ 2018-11-27 23:41 UTC (permalink / raw
To: gentoo-commits
commit: 87c757b2fc4f746b3059fc55cea023bfdb9c3c4d
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 27 23:40:49 2018 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Nov 27 23:41:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87c757b2
app-forensics/lynis: Version bump
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.6.4.ebuild => lynis-2.7.0.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 4999568a6e6..425e52f794f 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.6.4.tar.gz 273031 BLAKE2B 66d83050a348cc348f101f603c62eb3107ef7e088f57a6d0f36cb657a03cea48b93293b1c22a2bab68bd1ed1178e5bab7cf72cdcdd073637224559bb0c8b1198 SHA512 baa9f1c06b4d55b7962cb218707e057c7e7b5a5c4dbd89ba317c6525f08f80a5de53aa1371ad361611f8e44f0a32dda9409d2816caaedba4cd4f508929c5ab3c
+DIST lynis-2.7.0.tar.gz 276959 BLAKE2B 51f9a811f0410547c1866addd7a545a5976f5d8ab51f58b4538e1cbf93faccce7ea24e1943eb6dceda851616651619eab5f1eb88e47658e3953c60bcd0a4c0e4 SHA512 bf7fab22f762a15c2ace620731dee5a05b3c463acc7c7a4d9c2729cd5fb04639cd41faa951a9a0c99a85ed816dd531abb8f76f35d2af9ad81e6691a6f278450b
diff --git a/app-forensics/lynis/lynis-2.6.4.ebuild b/app-forensics/lynis/lynis-2.7.0.ebuild
similarity index 95%
rename from app-forensics/lynis/lynis-2.6.4.ebuild
rename to app-forensics/lynis/lynis-2.7.0.ebuild
index 03c1f53b426..df4bdf19881 100644
--- a/app-forensics/lynis/lynis-2.6.4.ebuild
+++ b/app-forensics/lynis/lynis-2.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2018-05-16 14:32 Richard Farina
0 siblings, 0 replies; 38+ messages in thread
From: Richard Farina @ 2018-05-16 14:32 UTC (permalink / raw
To: gentoo-commits
commit: 4cd83cc7131fa3034d7c5ec8e098ff61089cb2da
Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 14:32:12 2018 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Wed May 16 14:32:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd83cc7
app-forensics/lynis: eapi and version bump
Package-Manager: Portage-2.3.36, Repoman-2.3.9
app-forensics/lynis/Manifest | 2 +-
app-forensics/lynis/{lynis-2.5.2.ebuild => lynis-2.6.4.ebuild} | 9 ++-------
2 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 89c58343b26..4999568a6e6 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1 +1 @@
-DIST lynis-2.5.2.tar.gz 264098 BLAKE2B 6e65decc3f62f66a1a53e247c4d6da86ec1a9bc1268ec7b840d19ab40dab284d6f8c5716403dd1ce107550d7b3526242b16a000207d27d67b111db91a3ee4f22 SHA512 dc9b994190f5a6102baaf1c4d226ee90980a32908c009a9f68bb9e716e0ba04063d51f3cca98b9538f6b30224097470ca3d484b667f2af73b922c0b239f4bdae
+DIST lynis-2.6.4.tar.gz 273031 BLAKE2B 66d83050a348cc348f101f603c62eb3107ef7e088f57a6d0f36cb657a03cea48b93293b1c22a2bab68bd1ed1178e5bab7cf72cdcdd073637224559bb0c8b1198 SHA512 baa9f1c06b4d55b7962cb218707e057c7e7b5a5c4dbd89ba317c6525f08f80a5de53aa1371ad361611f8e44f0a32dda9409d2816caaedba4cd4f508929c5ab3c
diff --git a/app-forensics/lynis/lynis-2.5.2.ebuild b/app-forensics/lynis/lynis-2.6.4.ebuild
similarity index 90%
rename from app-forensics/lynis/lynis-2.5.2.ebuild
rename to app-forensics/lynis/lynis-2.6.4.ebuild
index 80b80fe374a..03c1f53b426 100644
--- a/app-forensics/lynis/lynis-2.5.2.ebuild
+++ b/app-forensics/lynis/lynis-2.6.4.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI="5"
+EAPI="6"
inherit eutils bash-completion-r1
@@ -19,11 +19,6 @@ RDEPEND="app-shells/bash"
S="${WORKDIR}/${PN}"
-src_prepare() {
- # Bug 507438
- epatch_user
-}
-
src_install() {
doman lynis.8
dodoc FAQ README
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2017-08-11 17:38 Michał Górny
0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2017-08-11 17:38 UTC (permalink / raw
To: gentoo-commits
commit: bd935474d1ab73516ebcb8b4be3f0e26bde63a3e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 11 17:30:46 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 17:37:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd935474
app-forensics/lynis: Remove forensics@ project, #626500
app-forensics/lynis/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index d021c5d6e25..7a38bb90096 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>forensics@gentoo.org</email>
- <name>Gentoo Forensics Project</name>
- </maintainer>
+ <!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2017-08-04 6:22 Patrice Clement
0 siblings, 0 replies; 38+ messages in thread
From: Patrice Clement @ 2017-08-04 6:22 UTC (permalink / raw
To: gentoo-commits
commit: cada6eaa63e82a908cb06a863b5e4252973f1ff8
Author: charIes17 <charles17 <AT> arcor <DOT> de>
AuthorDate: Thu Aug 3 07:14:43 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Aug 4 06:22:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cada6eaa
app-forensics/lynis: version bump to 2.5.2.
Gentoo-Bug: https://bugs.gentoo.org/621266
Gentoo-Bug: https://bugs.gentoo.org/591262
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/5281
app-forensics/lynis/Manifest | 1 +
app-forensics/lynis/lynis-2.5.2.ebuild | 55 ++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 0bc05dbaab3..5c2e0649f09 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,3 +1,4 @@
DIST lynis-1.6.4.tar.gz 171953 SHA256 886c74b591706f896149fe74adb481b58c549d32243d0cf620b46dfdd25dc66d SHA512 d0e102e4aac985460125dc26527e7902e9465e844c35253da7cc84e4c8fa19445e4b0b01d0db0b9e0f09c1929839aed33cf4b93f43c3be61490bcf11e2bbfa4b WHIRLPOOL 98275f8b014b70160e83ec6ddf0cdeec8a0e9ef78cc9dedf842a6524dabe3f44c7a42cf787d1180241a9122365cb2e1e908eedf05eab1768237fdb34322790bd
DIST lynis-2.1.0.tar.gz 180493 SHA256 16ed596c8c283b8e4c635ada25ceb042371384ae09b3238a658ca60801a73c24 SHA512 724c9d8d619d05a893197ff5e891056db3e6d4e03a59514499de0fda9134d2387c7c31c8e16fd58d7f3c1de9ce4c00df8f48679e1e27194dbcf6d34f6be94e62 WHIRLPOOL f50c32e36ab6b31bf4f1851e9b77c3f59d08b9f609bdb48c442603e21d61547483a0620de07fbd837c4ed6ffd9fc697e9b4cfcc40c970df9568de9da91e3fb7f
DIST lynis-2.1.1.tar.gz 181099 SHA256 d17b3cbbd305c52b9cd0d5141f41954882f398db44f26c10cb45fdaaa46a99d2 SHA512 03e694611b77cade352972360bd768355b945cf0919e445cb91eaa9801ab7501e533400c7a5b6912720fde0a90db47c3365c1f1c52aef41d84e32d6bbef8bf26 WHIRLPOOL 05a700425b94488ad1078a9c90093a4b250b7233d958183c57531f73b5431fbfb7aff315849c6451a8c2016f68018141917c3502a9cd3f1a2a41f09575ede8cd
+DIST lynis-2.5.2.tar.gz 264098 SHA256 6b4dc74ec0faa009fc5d34f8ab85895e53c6f4f02bc160377905dcb95b0585a1 SHA512 dc9b994190f5a6102baaf1c4d226ee90980a32908c009a9f68bb9e716e0ba04063d51f3cca98b9538f6b30224097470ca3d484b667f2af73b922c0b239f4bdae WHIRLPOOL 6d4bfa2171b671932f39e006aa3ee249f0a1e3014266ea0152193217a0780630fbe89c886353142216eac8e8396ebde4ba8428377f0b06d22e897876e2ac27f6
diff --git a/app-forensics/lynis/lynis-2.5.2.ebuild b/app-forensics/lynis/lynis-2.5.2.ebuild
new file mode 100644
index 00000000000..80b80fe374a
--- /dev/null
+++ b/app-forensics/lynis/lynis-2.5.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils bash-completion-r1
+
+DESCRIPTION="Security and system auditing tool"
+HOMEPAGE="https://cisofy.com/lynis/"
+SRC_URI="https://cisofy.com/files/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="app-shells/bash"
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+ # Bug 507438
+ epatch_user
+}
+
+src_install() {
+ doman lynis.8
+ dodoc FAQ README
+ newdoc CHANGELOG.md CHANGELOG
+
+ # Remove the old one during the next stabilize progress
+ exeinto /etc/cron.daily
+ newexe "${FILESDIR}"/lynis.cron-new lynis
+
+ dobashcomp extras/bash_completion.d/lynis
+
+ # stricter default perms - bug 507436
+ diropts -m0700
+ insopts -m0600
+
+ insinto /usr/share/${PN}
+ doins -r db/ include/ plugins/
+
+ dosbin lynis
+
+ insinto /etc/${PN}
+ doins default.prf
+}
+
+pkg_postinst() {
+ einfo
+ einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
+ einfo
+}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2017-08-04 6:22 Patrice Clement
0 siblings, 0 replies; 38+ messages in thread
From: Patrice Clement @ 2017-08-04 6:22 UTC (permalink / raw
To: gentoo-commits
commit: 6f1f6bea7cf05c5ede27af1a26f3c2f32e8c461e
Author: charIes17 <charles17 <AT> arcor <DOT> de>
AuthorDate: Thu Aug 3 07:18:00 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Aug 4 06:22:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1f6bea
app-forensics/lynis: remove vulnerable versions.
Gentoo-Bug: https://bugs.gentoo.org/621266
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/5281
app-forensics/lynis/Manifest | 3 --
app-forensics/lynis/lynis-1.6.4.ebuild | 54 ----------------------------------
app-forensics/lynis/lynis-2.1.0.ebuild | 54 ----------------------------------
app-forensics/lynis/lynis-2.1.1.ebuild | 54 ----------------------------------
4 files changed, 165 deletions(-)
diff --git a/app-forensics/lynis/Manifest b/app-forensics/lynis/Manifest
index 5c2e0649f09..63d7f5249bd 100644
--- a/app-forensics/lynis/Manifest
+++ b/app-forensics/lynis/Manifest
@@ -1,4 +1 @@
-DIST lynis-1.6.4.tar.gz 171953 SHA256 886c74b591706f896149fe74adb481b58c549d32243d0cf620b46dfdd25dc66d SHA512 d0e102e4aac985460125dc26527e7902e9465e844c35253da7cc84e4c8fa19445e4b0b01d0db0b9e0f09c1929839aed33cf4b93f43c3be61490bcf11e2bbfa4b WHIRLPOOL 98275f8b014b70160e83ec6ddf0cdeec8a0e9ef78cc9dedf842a6524dabe3f44c7a42cf787d1180241a9122365cb2e1e908eedf05eab1768237fdb34322790bd
-DIST lynis-2.1.0.tar.gz 180493 SHA256 16ed596c8c283b8e4c635ada25ceb042371384ae09b3238a658ca60801a73c24 SHA512 724c9d8d619d05a893197ff5e891056db3e6d4e03a59514499de0fda9134d2387c7c31c8e16fd58d7f3c1de9ce4c00df8f48679e1e27194dbcf6d34f6be94e62 WHIRLPOOL f50c32e36ab6b31bf4f1851e9b77c3f59d08b9f609bdb48c442603e21d61547483a0620de07fbd837c4ed6ffd9fc697e9b4cfcc40c970df9568de9da91e3fb7f
-DIST lynis-2.1.1.tar.gz 181099 SHA256 d17b3cbbd305c52b9cd0d5141f41954882f398db44f26c10cb45fdaaa46a99d2 SHA512 03e694611b77cade352972360bd768355b945cf0919e445cb91eaa9801ab7501e533400c7a5b6912720fde0a90db47c3365c1f1c52aef41d84e32d6bbef8bf26 WHIRLPOOL 05a700425b94488ad1078a9c90093a4b250b7233d958183c57531f73b5431fbfb7aff315849c6451a8c2016f68018141917c3502a9cd3f1a2a41f09575ede8cd
DIST lynis-2.5.2.tar.gz 264098 SHA256 6b4dc74ec0faa009fc5d34f8ab85895e53c6f4f02bc160377905dcb95b0585a1 SHA512 dc9b994190f5a6102baaf1c4d226ee90980a32908c009a9f68bb9e716e0ba04063d51f3cca98b9538f6b30224097470ca3d484b667f2af73b922c0b239f4bdae WHIRLPOOL 6d4bfa2171b671932f39e006aa3ee249f0a1e3014266ea0152193217a0780630fbe89c886353142216eac8e8396ebde4ba8428377f0b06d22e897876e2ac27f6
diff --git a/app-forensics/lynis/lynis-1.6.4.ebuild b/app-forensics/lynis/lynis-1.6.4.ebuild
deleted file mode 100644
index 7f568475aa6..00000000000
--- a/app-forensics/lynis/lynis-1.6.4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils bash-completion-r1
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="http://cisofy.com/lynis/"
-SRC_URI="http://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="app-shells/bash"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- # Bug 507438
- epatch_user
-}
-
-src_install() {
- doman lynis.8
- dodoc CHANGELOG FAQ README
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
-}
-
-pkg_postinst() {
- einfo
- einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
- einfo
-}
diff --git a/app-forensics/lynis/lynis-2.1.0.ebuild b/app-forensics/lynis/lynis-2.1.0.ebuild
deleted file mode 100644
index 01d2ac97728..00000000000
--- a/app-forensics/lynis/lynis-2.1.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils bash-completion-r1
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="http://cisofy.com/lynis/"
-SRC_URI="http://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="app-shells/bash"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- # Bug 507438
- epatch_user
-}
-
-src_install() {
- doman lynis.8
- dodoc CHANGELOG FAQ README
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
-}
-
-pkg_postinst() {
- einfo
- einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
- einfo
-}
diff --git a/app-forensics/lynis/lynis-2.1.1.ebuild b/app-forensics/lynis/lynis-2.1.1.ebuild
deleted file mode 100644
index 01d2ac97728..00000000000
--- a/app-forensics/lynis/lynis-2.1.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils bash-completion-r1
-
-DESCRIPTION="Security and system auditing tool"
-HOMEPAGE="http://cisofy.com/lynis/"
-SRC_URI="http://cisofy.com/files/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="app-shells/bash"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- # Bug 507438
- epatch_user
-}
-
-src_install() {
- doman lynis.8
- dodoc CHANGELOG FAQ README
-
- # Remove the old one during the next stabilize progress
- exeinto /etc/cron.daily
- newexe "${FILESDIR}"/lynis.cron-new lynis
-
- dobashcomp extras/bash_completion.d/lynis
-
- # stricter default perms - bug 507436
- diropts -m0700
- insopts -m0600
-
- insinto /usr/share/${PN}
- doins -r db/ include/ plugins/
-
- dosbin lynis
-
- insinto /etc/${PN}
- doins default.prf
-}
-
-pkg_postinst() {
- einfo
- einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
- einfo
-}
^ permalink raw reply related [flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/
@ 2017-01-06 12:25 Christian Ruppert
0 siblings, 0 replies; 38+ messages in thread
From: Christian Ruppert @ 2017-01-06 12:25 UTC (permalink / raw
To: gentoo-commits
commit: 37226b72b91eb16944f5fc68d2711b4e2e04cecb
Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 6 12:19:58 2017 +0000
Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
CommitDate: Fri Jan 6 12:25:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37226b72
app-forensics/lynis: Remove myself as maintainer
Package-Manager: portage-2.3.2
app-forensics/lynis/metadata.xml | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/app-forensics/lynis/metadata.xml b/app-forensics/lynis/metadata.xml
index ed81837..d021c5d 100644
--- a/app-forensics/lynis/metadata.xml
+++ b/app-forensics/lynis/metadata.xml
@@ -1,12 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
- <email>idl0r@gentoo.org</email>
- <name>Christian Ruppert</name>
-</maintainer>
-<maintainer type="project">
- <email>forensics@gentoo.org</email>
- <name>Gentoo Forensics Project</name>
-</maintainer>
+ <maintainer type="project">
+ <email>forensics@gentoo.org</email>
+ <name>Gentoo Forensics Project</name>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 38+ messages in thread
end of thread, other threads:[~2024-09-26 19:42 UTC | newest]
Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-23 12:57 [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/ Mike Pagano
-- strict thread matches above, loose matches on Subject: below --
2024-09-26 19:42 Mike Pagano
2024-09-26 19:42 Mike Pagano
2024-04-18 19:47 Mike Pagano
2024-03-17 14:33 Mike Pagano
2024-03-17 14:33 Mike Pagano
2024-03-11 22:19 Mike Pagano
2024-03-11 22:19 Mike Pagano
2023-12-29 13:05 Mike Pagano
2023-08-04 14:21 Mike Pagano
2023-08-04 14:21 Mike Pagano
2022-10-10 12:42 Mike Pagano
2022-09-01 20:18 Mike Pagano
2022-05-18 11:37 Mike Pagano
2022-05-18 11:37 Mike Pagano
2022-01-20 23:57 Mike Pagano
2022-01-20 23:51 Mike Pagano
2022-01-20 20:19 Mike Pagano
2021-08-09 14:54 Mike Pagano
2021-06-03 16:51 Mike Pagano
2021-03-16 22:40 Sam James
2021-03-16 22:38 Mike Pagano
2021-03-14 12:53 Mike Pagano
2021-01-08 14:21 Mike Pagano
2020-12-25 12:38 Mike Pagano
2020-10-06 15:35 Mike Pagano
2020-07-12 17:35 Mike Pagano
2020-07-11 15:19 Mike Pagano
2020-07-11 14:55 Mike Pagano
2019-08-27 12:42 Mike Pagano
2019-03-28 12:11 Mike Pagano
2019-02-20 23:44 Mike Pagano
2018-11-27 23:41 Mike Pagano
2018-05-16 14:32 Richard Farina
2017-08-11 17:38 Michał Górny
2017-08-04 6:22 Patrice Clement
2017-08-04 6:22 Patrice Clement
2017-01-06 12:25 Christian Ruppert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox