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 9CFC3138359 for ; Sat, 26 Sep 2020 14:33:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D04D7E083D; Sat, 26 Sep 2020 14:33:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 ADC1BE0835 for ; Sat, 26 Sep 2020 14:33:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 ADD98340A03 for ; Sat, 26 Sep 2020 14:33:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D13637B for ; Sat, 26 Sep 2020 14:33:40 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1601130805.f6da7e0c09c44461d43d2526bd242b52c67298fe.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/bastille/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/bastille/bastille-3.0.9-r1.ebuild X-VCS-Directories: app-admin/bastille/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: f6da7e0c09c44461d43d2526bd242b52c67298fe X-VCS-Branch: master Date: Sat, 26 Sep 2020 14:33:40 +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: c4a19eff-ebde-4995-8507-4bba6a641752 X-Archives-Hash: ec95d87ff40aaecf495dcf0b5f064a9d commit: f6da7e0c09c44461d43d2526bd242b52c67298fe Author: Aaron Bauman gentoo org> AuthorDate: Sat Sep 26 13:21:35 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Sep 26 14:33:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6da7e0c app-admin/bastille: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> app-admin/bastille/bastille-3.0.9-r1.ebuild | 69 ----------------------------- 1 file changed, 69 deletions(-) diff --git a/app-admin/bastille/bastille-3.0.9-r1.ebuild b/app-admin/bastille/bastille-3.0.9-r1.ebuild deleted file mode 100644 index 19860743e3f..00000000000 --- a/app-admin/bastille/bastille-3.0.9-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PERL_EXPORT_PHASE_FUNCTIONS=no -inherit eutils perl-module - -PATCHVER=0.2 -MY_PN=${PN/b/B} -MY_P=${MY_PN}-${PV} -S=${WORKDIR}/${MY_PN} -DESCRIPTION="Bastille-Linux is a security hardening tool" -HOMEPAGE="http://bastille-linux.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}-linux/${MY_P}.tar.bz2 - mirror://gentoo/${P}-gentoo-${PATCHVER}.patch.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="X" - -RDEPEND=" - app-admin/logrotate - dev-perl/Curses - net-firewall/iptables - net-firewall/psad - virtual/logger - X? ( dev-perl/Tk ) -" - -src_prepare() { - epatch "${WORKDIR}"/${P}-gentoo-${PATCHVER}.patch - - # make sure the Perl modules go into vendor dir - epatch "${FILESDIR}/${P}-perl.patch" - perl_set_version - - cd "${S}" || die - chmod a+x Install.sh bastille-ipchains bastille-netfilter -} - -src_install() { - perl_set_version - export VENDOR_LIB - - cd "${S}" || die - DESTDIR="${D}" ./Install.sh - - # Example configs - cd "${S}" || die - insinto /usr/share/Bastille - doins *.config - - newinitd ${PN}-firewall.gentoo-init ${PN}-firewall - - # Documentation - cd "${S}" || die - dodoc *.txt BUGS Change* README* - cd "${S}"/docs || die - doman *.1m -} - -pkg_postinst() { - elog "Please be aware that when using the Server Lax, Server Moderate, or" - elog "Server Paranoia configurations, you may need to use InteractiveBastille" - elog "to set any advanced network information, such as masquerading and" - elog "internal interfaces, if you plan to use them." -}