public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/ebtables/
Date: Sat,  8 May 2021 19:11:48 +0000 (UTC)	[thread overview]
Message-ID: <1620501068.9f057138d1061d8d85d4b219b3cc342d913de8b2.soap@gentoo> (raw)

commit:     9f057138d1061d8d85d4b219b3cc342d913de8b2
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May  8 19:11:08 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat May  8 19:11:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f057138

net-firewall/ebtables: Remove old 2.0.11-r2

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-firewall/ebtables/ebtables-2.0.11-r2.ebuild | 106 ------------------------
 1 file changed, 106 deletions(-)

diff --git a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild b/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild
deleted file mode 100644
index 2e2c4a00070..00000000000
--- a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs autotools
-
-MY_PV="$(ver_rs 3 '-' )"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="Controls Ethernet frame filtering on a Linux bridge, MAC NAT and brouting"
-HOMEPAGE="https://ebtables.netfilter.org/"
-SRC_URI="http://ftp.netfilter.org/pub/${PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc ~ppc64 x86"
-IUSE="+perl static"
-
-BDEPEND=">=app-eselect/eselect-iptables-20200508"
-# The ebtables-save script is written in perl.
-RDEPEND="${BDEPEND}
-	perl? ( dev-lang/perl )
-	net-misc/ethertypes"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.0.11-makefile.patch"
-
-	# Enhance ebtables-save to take table names as parameters bug #189315
-	"${FILESDIR}/${PN}-2.0.11-ebt-save.patch"
-
-	# from upstream git
-	"${FILESDIR}/ebtables-2.0.11-remove-stray-atsign.patch"
-)
-
-pkg_setup() {
-	if use static; then
-		ewarn "You've chosen static build which is useful for embedded devices."
-		ewarn "It has no init script. Make sure that's really what you want."
-	fi
-}
-
-src_prepare() {
-	default
-
-	# Don't install perl scripts if USE=perl is disabled.
-	if ! use perl; then
-		sed -e '/sbin_SCRIPTS/ d' -i Makefile.am || die
-	fi
-
-	# The bundled autotools are borked, so force a rebuild.
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--bindir="/bin" \
-		--sbindir="/sbin" \
-		--libdir=/$(get_libdir)/${PN} \
-		--sysconfdir="/usr/share/doc/${PF}" \
-		$(use_enable static)
-}
-
-src_compile() {
-	emake $(usex static 'static ebtables-legacy.8' '')
-}
-
-src_install() {
-	local -a DOCS=( ChangeLog THANKS )
-
-	if ! use static; then
-		emake DESTDIR="${D}" install
-		keepdir /var/lib/ebtables/
-		newinitd "${FILESDIR}"/ebtables.initd-r1 ebtables
-		newconfd "${FILESDIR}"/ebtables.confd-r1 ebtables
-
-		find "${D}" -name '*.la' -type f -delete || die
-	else
-		into /
-		newsbin static ebtables
-	fi
-
-	newman ebtables-legacy.8 ebtables.8
-	einstalldocs
-	docompress -x /usr/share/doc/${PF}/ethertypes #724138
-}
-
-pkg_postinst() {
-	if ! eselect ebtables show &>/dev/null; then
-		elog "Current ebtables implementation is unset, setting to ebtables-legacy"
-		eselect ebtables set ebtables-legacy
-	fi
-
-	eselect ebtables show
-}
-
-pkg_prerm() {
-	if [[ -z ${REPLACED_BY_VERSION} ]] && has_version 'net-firewall/iptables[nftables]'; then
-		elog "Resetting ebtables symlinks to xtables-nft-multi before removal"
-		eselect ebtables set xtables-nft-multi
-	else
-		elog "Unsetting ebtables symlinks before removal"
-		eselect ebtables unset
-	fi
-}


             reply	other threads:[~2021-05-08 19:11 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-08 19:11 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-03-12 12:31 [gentoo-commits] repo/gentoo:master commit in: net-firewall/ebtables/ Arthur Zamarin
2022-02-04 18:48 Sam James
2021-08-23 11:41 Marek Szuba
2021-05-08 18:55 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:44 Sam James
2021-05-08 18:41 Sam James
2021-02-09 15:59 Mike Frysinger
2021-02-09 15:59 Mike Frysinger
2021-02-09 15:59 Mike Frysinger
2020-12-29 17:02 Mike Gilbert
2020-08-20 13:20 Sam James
2020-07-19 23:31 Sam James
2020-07-18 17:06 Sam James
2020-07-17 15:21 Agostino Sarubbo
2020-06-19  6:51 Lars Wendler
2020-06-19  6:51 Lars Wendler
2020-05-10 20:49 Patrick McLean
2020-05-09  2:55 Patrick McLean
2020-05-04 17:36 Thomas Deutschmann
2019-12-28 21:32 Georgy Yakovlev
2018-03-07 19:26 Mike Gilbert
2018-03-07 19:26 Mike Gilbert
2015-09-29 19:53 Mike Frysinger
2015-09-23  2:33 Mike Frysinger
2015-09-23  2:33 Mike Frysinger
2015-09-23  2:33 Mike Frysinger
2015-09-23  2:33 Mike Frysinger
2015-09-22 21:39 Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1620501068.9f057138d1061d8d85d4b219b3cc342d913de8b2.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox