From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 00AF1158094 for ; Thu, 1 Sep 2022 20:19:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 339E4E09DD; Thu, 1 Sep 2022 20:19:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 161FAE09DD for ; Thu, 1 Sep 2022 20:19:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 082D933BEC7 for ; Thu, 1 Sep 2022 20:18:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72ED4599 for ; Thu, 1 Sep 2022 20:18:57 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1662063482.8d19cfdd58a312a671a7c89c7189584b4b6b4b2a.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/lynis/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/lynis/lynis-3.0.8-r1.ebuild X-VCS-Directories: app-forensics/lynis/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 8d19cfdd58a312a671a7c89c7189584b4b6b4b2a X-VCS-Branch: master Date: Thu, 1 Sep 2022 20:18:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0d0c9cdb-a595-4fbe-8e1e-11c52f7e04a5 X-Archives-Hash: e87a77af4051c81f2eb9ed08a1aefe78 commit: 8d19cfdd58a312a671a7c89c7189584b4b6b4b2a Author: Mike Pagano gentoo org> AuthorDate: Thu Sep 1 20:18:02 2022 +0000 Commit: Mike Pagano gentoo 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 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 +}