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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC4991382C5 for ; Fri, 12 Mar 2021 15:35:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C9A7E0AF7; Fri, 12 Mar 2021 15:35:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15F99E0AF7 for ; Fri, 12 Mar 2021 15:35:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B02B340CC5 for ; Fri, 12 Mar 2021 15:35:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED2C2597 for ; Fri, 12 Mar 2021 15:35:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615563323.409321d5479a254c2480ab786016db4650194138.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sagan/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/sagan/sagan-1.0.0_rc3.ebuild X-VCS-Directories: app-admin/sagan/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 409321d5479a254c2480ab786016db4650194138 X-VCS-Branch: master Date: Fri, 12 Mar 2021 15:35:52 +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: 8715353f-20a3-437c-91aa-5d599387ba95 X-Archives-Hash: 9c81cfd5dc6bcfe785145a8ab6074267 commit: 409321d5479a254c2480ab786016db4650194138 Author: Sam James gentoo org> AuthorDate: Fri Mar 12 15:35:19 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 12 15:35:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409321d5 app-admin/sagan: drop 1.0.0_rc3 Bug: https://bugs.gentoo.org/665814 Signed-off-by: Sam James gentoo.org> app-admin/sagan/sagan-1.0.0_rc3.ebuild | 96 ---------------------------------- 1 file changed, 96 deletions(-) diff --git a/app-admin/sagan/sagan-1.0.0_rc3.ebuild b/app-admin/sagan/sagan-1.0.0_rc3.ebuild deleted file mode 100644 index e03a2f39f7e..00000000000 --- a/app-admin/sagan/sagan-1.0.0_rc3.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic user - -DESCRIPTION="Sagan is a multi-threaded, real time system and event log monitoring system" -HOMEPAGE="http://sagan.quadrantsec.com/" -SRC_URI="http://sagan.quadrantsec.com/download/sagan-1.0.0RC3.tar.gz" -S="${WORKDIR}/sagan-1.0.0RC3/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="geoip +libdnet +lognorm mysql +pcap smtp snort" - -BDEPEND="virtual/pkgconfig" -RDEPEND="dev-libs/libpcre - app-admin/sagan-rules[lognorm?] - smtp? ( net-libs/libesmtp ) - pcap? ( net-libs/libpcap ) - mysql? ( virtual/mysql ) - lognorm? ( - dev-libs/liblognorm - dev-libs/json-c:= - dev-libs/libee - dev-libs/libestr - ) - libdnet? ( dev-libs/libdnet ) - snort? ( >=net-analyzer/snortsam-2.50 ) - geoip? ( dev-libs/geoip ) -" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog FAQ INSTALL README NEWS TODO ) - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.0-liblognorm-json-c.patch -) - -pkg_setup() { - enewgroup sagan - enewuser sagan -1 -1 /dev/null sagan -} - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - append-flags -fcommon - - local myeconfargs=( - $(use_enable smtp esmtp) - $(use_enable lognorm) - $(use_enable libdnet) - $(use_enable pcap libpcap) - $(use_enable snort snortsam) - $(use_enable geoip) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - diropts -g sagan -o sagan -m 775 - - dodir /var/log/sagan - - keepdir /var/log/sagan - - touch "${ED}"/var/log/sagan/sagan.log || die - chown sagan.sagan "${ED}"/var/log/sagan/sagan.log || die - - newinitd "${FILESDIR}"/sagan.init-r1 sagan - newconfd "${FILESDIR}"/sagan.confd sagan - - docinto examples - dodoc -r extra/* -} - -pkg_postinst() { - if use smtp; then - ewarn "You have enabled smtp use flag. If you plan on using Sagan with" - ewarn "email, create valid writable home directory for user 'sagan'" - ewarn "For security reasons it was created with /dev/null home directory" - fi - - einfo "For configuration assistance see" - einfo "http://wiki.quadrantsec.com/bin/view/Main/SaganHOWTO" -}