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 C0A81158087 for ; Sat, 29 Jan 2022 15:16:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7B022BC00C; Sat, 29 Jan 2022 15:16:36 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57F802BC00C for ; Sat, 29 Jan 2022 15:16:36 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA7C5343327 for ; Sat, 29 Jan 2022 15:16:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0233E233 for ; Sat, 29 Jan 2022 15:16:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1643469385.3856afddab4496750121131c622907c21235343e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/snortsam/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/snortsam/snortsam-2.70-r1.ebuild net-analyzer/snortsam/snortsam-2.70.ebuild X-VCS-Directories: net-analyzer/snortsam/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3856afddab4496750121131c622907c21235343e X-VCS-Branch: master Date: Sat, 29 Jan 2022 15:16:33 +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: 8597f9ce-390c-4dbe-8a75-b5d83df1bfd2 X-Archives-Hash: 47fc7badff50df239789ff25217054d2 commit: 3856afddab4496750121131c622907c21235343e Author: David Seifert gentoo org> AuthorDate: Sat Jan 29 15:16:25 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jan 29 15:16:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3856afdd net-analyzer/snortsam: update EAPI 5 -> 7 Closes: https://bugs.gentoo.org/832319 Signed-off-by: David Seifert gentoo.org> .../{snortsam-2.70.ebuild => snortsam-2.70-r1.ebuild} | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/net-analyzer/snortsam/snortsam-2.70.ebuild b/net-analyzer/snortsam/snortsam-2.70-r1.ebuild similarity index 77% rename from net-analyzer/snortsam/snortsam-2.70.ebuild rename to net-analyzer/snortsam/snortsam-2.70-r1.ebuild index f32b3f6db2ed..d900b52d06f6 100644 --- a/net-analyzer/snortsam/snortsam-2.70.ebuild +++ b/net-analyzer/snortsam/snortsam-2.70-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit epatch flag-o-matic toolchain-funcs vcs-clean +inherit flag-o-matic toolchain-funcs vcs-clean DESCRIPTION="Snort plugin that allows automated blocking of IP addresses on several firewalls" HOMEPAGE="http://www.snortsam.net/" @@ -15,8 +15,10 @@ SLOT="0" KEYWORDS="~alpha amd64 ppc ppc64 sparc x86" IUSE="debug" +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) + src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.patch + default ecvs_clean } @@ -31,14 +33,13 @@ src_compile() { src_install() { dobin snortsam - find "${S}" -depth -type f -name "*.asc" -exec rm -f {} \; - dodoc docs/* conf/* + + find . -depth -type f -name '*.asc' -delete || die + dodoc -r docs/. conf/. } pkg_postinst() { - echo elog "To use snortsam with snort, you'll have to compile snort with USE=snortsam." elog "Read the INSTALL file to configure snort for snortsam, and configure" elog "snortsam for your particular firewall." - echo }