* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-08-10 17:20 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2015-08-10 17:20 UTC (permalink / raw
To: gentoo-commits
commit: 5bf3e07dcbe7c254e4343e669562b9d8899720b5
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 10 14:52:41 2015 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Mon Aug 10 17:16:27 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf3e07d
net-firewall/firehol: Version bump
Package-Manager: portage-2.2.20
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-2.0.3.ebuild | 57 +++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index e571ba7..4edadeb 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,2 +1,3 @@
DIST firehol-1.273.tar.bz2 128128 SHA256 e8d3b4ac3e54097c0e0f14bfab773a75d43b522fa123a42088b7f23f13495ea2 SHA512 dbb311fb9d4fa8861480bae1fac449ce85f52612264ec21658946d87be02027c37af13b754acd791ad454964c588897f8187ec8ce80de3b3ed8a888429bfd708 WHIRLPOOL 0fa7f7644d7bf0268bfc6e817eeb95e7c1784cefa6d4a930c2fec6644774347c28e7a4d39c55df7a4e0f7a0c4697ce6b3c4bafdf6e2124bd478c097b9a6cfb27
DIST firehol-2.0.2.tar.xz 918860 SHA256 8778d0fc891676777b55e68d852a765205a995029f6e9f599c0090a14ca8ee7c SHA512 d125c4ca7d60494afde04f806bb0fc44ebdb12d7bf59e027c441a087082d9c326d009ba568ef640b01409abdecc3c192a9ae6db6c7370ad0221a19cb3a706902 WHIRLPOOL 10b6edee6a4db07a217e7d13eea4dc5ba02d7f3a44ba1955a5b138a09aa41aea6e39acbcdb04e0ee80d22f3f1d9fc1f061d26d7a10a9d1a7f02230ca21efe514
+DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
diff --git a/net-firewall/firehol/firehol-2.0.3.ebuild b/net-firewall/firehol/firehol-2.0.3.ebuild
new file mode 100644
index 0000000..d9e6580
--- /dev/null
+++ b/net-firewall/firehol/firehol-2.0.3.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="http://firehol.sourceforge.net/"
+SRC_URI="http://firehol.org/download/releases/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal]
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
+ ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
+ ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
+ ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
+
+ get_version
+ if [ ${KV_PATCH} -ge 25 ]; then
+ CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
+ else
+ CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
+ fi
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ # removing IP6TABLES_CMD has no effect and enable build
+ # without ipv6 available
+ econf \
+ --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+ --with-autosave="${EPREFIX}/var/lib/iptables/rules-save" \
+ --with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
+ $(use_enable doc) \
+ IP6TABLES_CMD=/bin/false \
+ IP6TABLES_SAVE_CMD=/bin/false
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd.1 firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-10-12 16:32 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2015-10-12 16:32 UTC (permalink / raw
To: gentoo-commits
commit: 93cc469a95cc8a97007ba8d9ce5eeebb43fddf55
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 12 16:32:21 2015 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 16:32:21 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93cc469a
net-firewall/firehol: set dummy ip6tables-restore
Bug: 562942
Package-Manager: portage-2.2.20.1
net-firewall/firehol/firehol-2.0.3.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-2.0.3.ebuild b/net-firewall/firehol/firehol-2.0.3.ebuild
index 3026dd7..182c9eb 100644
--- a/net-firewall/firehol/firehol-2.0.3.ebuild
+++ b/net-firewall/firehol/firehol-2.0.3.ebuild
@@ -44,7 +44,8 @@ src_configure() {
--with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
$(use_enable doc) \
IP6TABLES_CMD=/bin/false \
- IP6TABLES_SAVE_CMD=/bin/false
+ IP6TABLES_SAVE_CMD=/bin/false \
+ IP6TABLES_RESTORE_CMD=/bin/false
}
src_install() {
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-10-19 9:27 Agostino Sarubbo
0 siblings, 0 replies; 39+ messages in thread
From: Agostino Sarubbo @ 2015-10-19 9:27 UTC (permalink / raw
To: gentoo-commits
commit: 27c70561d309d802f77c73204aaa26b71fc3de90
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 19 09:26:05 2015 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 09:26:05 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c70561
net-firewall/firehol: amd64 stable wrt bug #562504
Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"
net-firewall/firehol/firehol-2.0.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-2.0.3.ebuild b/net-firewall/firehol/firehol-2.0.3.ebuild
index 182c9eb..eda56e5 100644
--- a/net-firewall/firehol/firehol-2.0.3.ebuild
+++ b/net-firewall/firehol/firehol-2.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://firehol.org/download/releases/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-10-22 7:54 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2015-10-22 7:54 UTC (permalink / raw
To: gentoo-commits
commit: b641bf3eeb87f462d2a69e989a682764fef30c23
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 21 20:04:20 2015 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Thu Oct 22 07:52:08 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b641bf3e
net-firewall/firehol: fix autosave location issue
Package-Manager: portage-2.2.20.1
RepoMan-Options: --force
.../firehol/{firehol-2.0.3.ebuild => firehol-2.0.3-r1.ebuild} | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/net-firewall/firehol/firehol-2.0.3.ebuild b/net-firewall/firehol/firehol-2.0.3-r1.ebuild
similarity index 96%
rename from net-firewall/firehol/firehol-2.0.3.ebuild
rename to net-firewall/firehol/firehol-2.0.3-r1.ebuild
index eda56e5..5fae331 100644
--- a/net-firewall/firehol/firehol-2.0.3.ebuild
+++ b/net-firewall/firehol/firehol-2.0.3-r1.ebuild
@@ -35,6 +35,10 @@ pkg_setup() {
linux-info_pkg_setup
}
+src_prepare() {
+ epatch "${FILESDIR}/${PN}-2.0.2-autosave.patch"
+}
+
src_configure() {
# removing IP6TABLES_CMD has no effect and enable build
# without ipv6 available
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-10-25 11:07 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2015-10-25 11:07 UTC (permalink / raw
To: gentoo-commits
commit: e24988ef04a22a4090c69f8c693689f6ab977929
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 25 11:05:02 2015 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Oct 25 11:05:02 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e24988ef
net-firewall/firehol: x86 stable wrt bug #562504
Package-Manager: portage-2.2.20.1
net-firewall/firehol/firehol-2.0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-2.0.3-r1.ebuild b/net-firewall/firehol/firehol-2.0.3-r1.ebuild
index 5fae331..0cb0c65 100644
--- a/net-firewall/firehol/firehol-2.0.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-2.0.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://firehol.org/download/releases/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2015-10-25 17:48 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2015-10-25 17:48 UTC (permalink / raw
To: gentoo-commits
commit: 9581cdd6bf9ba6b2e996979bea55e6329cf97fbb
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 25 15:18:03 2015 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sun Oct 25 17:48:01 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9581cdd6
net-firewall/firehol - cleanup
Package-Manager: portage-2.2.20.1
net-firewall/firehol/Manifest | 2 -
net-firewall/firehol/firehol-1.273-r3.ebuild | 78 ----------------------------
net-firewall/firehol/firehol-2.0.2.ebuild | 61 ----------------------
3 files changed, 141 deletions(-)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 4edadeb..8989966 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,3 +1 @@
-DIST firehol-1.273.tar.bz2 128128 SHA256 e8d3b4ac3e54097c0e0f14bfab773a75d43b522fa123a42088b7f23f13495ea2 SHA512 dbb311fb9d4fa8861480bae1fac449ce85f52612264ec21658946d87be02027c37af13b754acd791ad454964c588897f8187ec8ce80de3b3ed8a888429bfd708 WHIRLPOOL 0fa7f7644d7bf0268bfc6e817eeb95e7c1784cefa6d4a930c2fec6644774347c28e7a4d39c55df7a4e0f7a0c4697ce6b3c4bafdf6e2124bd478c097b9a6cfb27
-DIST firehol-2.0.2.tar.xz 918860 SHA256 8778d0fc891676777b55e68d852a765205a995029f6e9f599c0090a14ca8ee7c SHA512 d125c4ca7d60494afde04f806bb0fc44ebdb12d7bf59e027c441a087082d9c326d009ba568ef640b01409abdecc3c192a9ae6db6c7370ad0221a19cb3a706902 WHIRLPOOL 10b6edee6a4db07a217e7d13eea4dc5ba02d7f3a44ba1955a5b138a09aa41aea6e39acbcdb04e0ee80d22f3f1d9fc1f061d26d7a10a9d1a7f02230ca21efe514
DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
diff --git a/net-firewall/firehol/firehol-1.273-r3.ebuild b/net-firewall/firehol/firehol-1.273-r3.ebuild
deleted file mode 100644
index d5f5d8b..0000000
--- a/net-firewall/firehol/firehol-1.273-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="http://firehol.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 ~ppc ~sparc x86"
-
-DEPEND="sys-apps/iproute2"
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal]
- virtual/modutils
- || (
- net-misc/wget
- net-misc/curl
- )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-CVE-2008-4953.patch
- epatch "${FILESDIR}"/${P}-log-output.patch #332507
-}
-
-pkg_setup() {
- local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
- ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
- ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
- ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
-
- get_version
- if [ ${KV_PATCH} -ge 25 ]; then
- CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
- else
- CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
- fi
- linux-info_pkg_setup
-}
-
-src_install() {
- newsbin firehol.sh firehol
-
- dodir /etc/firehol /etc/firehol/examples /etc/firehol/services
- insinto /etc/firehol/examples
- doins examples/* || die
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd.1 firehol
-
- dodoc ChangeLog README TODO WhatIsNew
- dohtml doc/*.html doc/*.css
-
- docinto scripts
- dodoc get-iana.sh adblock.sh
-
- doman man/*.1 man/*.5
-
- # Install this RESERVED_IPS as discussed in bug #332135
- insinto /etc/firehol
- doins "${FILESDIR}"/RESERVED_IPS
-}
-
-pkg_postinst() {
- elog "The default path to firehol's configuration file is /etc/firehol/firehol.conf"
- elog "See /etc/firehol/examples for configuration examples."
- #
- # Install a default configuration if none is available yet
- if [[ ! -e "${ROOT}/etc/firehol/firehol.conf" ]]; then
- einfo "Installing a sample configuration as ${ROOT}/etc/firehol/firehol.conf"
- cp "${ROOT}/etc/firehol/examples/client-all.conf" "${ROOT}/etc/firehol/firehol.conf"
- fi
-}
diff --git a/net-firewall/firehol/firehol-2.0.2.ebuild b/net-firewall/firehol/firehol-2.0.2.ebuild
deleted file mode 100644
index f39413c..0000000
--- a/net-firewall/firehol/firehol-2.0.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="http://firehol.sourceforge.net/"
-SRC_URI="http://firehol.org/download/releases/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal]
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
- ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
- ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
- ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
-
- get_version
- if [ ${KV_PATCH} -ge 25 ]; then
- CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
- else
- CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
- fi
- linux-info_pkg_setup
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-autosave.patch"
-}
-
-src_configure() {
- # removing IP6TABLES_CMD has no effect and enable build
- # without ipv6 available
- econf \
- --docdir="${EPREFIX}/usr/share/doc/${PF}" \
- --with-autosave="${EPREFIX}/var/lib/iptables/rules-save" \
- --with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
- $(use_enable doc) \
- IP6TABLES_CMD=/bin/false \
- IP6TABLES_SAVE_CMD=/bin/false
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd.1 firehol
- newconfd "${FILESDIR}"/fireqos.conf.d fireqos
- newinitd "${FILESDIR}"/fireqos.initrd fireqos
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-01-21 20:04 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-01-21 20:04 UTC (permalink / raw
To: gentoo-commits
commit: 151b2a413d51947c600f17a7de7033b7685608c4
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 20:03:13 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 20:04:17 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=151b2a41
net-firewall/firehol: version bump
Bug: 571940
Package-Manager: portage-2.2.26
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-2.0.4.ebuild | 62 +++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 8989966..a8fcdc4 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1 +1,2 @@
DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
+DIST firehol-2.0.4.tar.xz 900876 SHA256 f41ff31920402c80aa823a298cc437e9a0b4d9ff0320f3f75cb55c62407dad4c SHA512 b73053c3fc1cb4e5e83cc2b25a99bf06c14623f9e574af2b11b198ecc2fb84119f0ab60cb3ff96b32601c717118693869eb3fea2b0fdc61bb49f197fb73abcca WHIRLPOOL 05bc39636c7d496e321f191b03efe2f8d1dcd6aec537a41e7ae4bac3ee4386f718728ad965fdacb46f02f949986f6979f17d41dc21f06d7ad62f3e744f0599d1
diff --git a/net-firewall/firehol/firehol-2.0.4.ebuild b/net-firewall/firehol/firehol-2.0.4.ebuild
new file mode 100644
index 0000000..2a0dbba
--- /dev/null
+++ b/net-firewall/firehol/firehol-2.0.4.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="http://firehol.sourceforge.net/"
+SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal]
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
+ ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
+ ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
+ ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
+
+ get_version
+ if [ ${KV_PATCH} -ge 25 ]; then
+ CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
+ else
+ CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
+ fi
+ linux-info_pkg_setup
+}
+
+src_prepare() {
+ epatch "${FILESDIR}/${PN}-2.0.2-autosave.patch"
+}
+
+src_configure() {
+ # removing IP6TABLES_CMD has no effect and enable build
+ # without ipv6 available
+ econf \
+ --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+ --with-autosave="${EPREFIX}/var/lib/iptables/rules-save" \
+ --with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
+ $(use_enable doc) \
+ IP6TABLES_CMD=/bin/false \
+ IP6TABLES_SAVE_CMD=/bin/false \
+ IP6TABLES_RESTORE_CMD=/bin/false
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-01-21 20:46 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-01-21 20:46 UTC (permalink / raw
To: gentoo-commits
commit: d68ae7e391da0f456ed0d9c97ff1e17461e246ab
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 20:42:46 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 20:42:46 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68ae7e3
net-firewall/firehol: version bump
Package-Manager: portage-2.2.26
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.0.1.ebuild | 57 +++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index a8fcdc4..4c8eeb4 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,2 +1,3 @@
DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
DIST firehol-2.0.4.tar.xz 900876 SHA256 f41ff31920402c80aa823a298cc437e9a0b4d9ff0320f3f75cb55c62407dad4c SHA512 b73053c3fc1cb4e5e83cc2b25a99bf06c14623f9e574af2b11b198ecc2fb84119f0ab60cb3ff96b32601c717118693869eb3fea2b0fdc61bb49f197fb73abcca WHIRLPOOL 05bc39636c7d496e321f191b03efe2f8d1dcd6aec537a41e7ae4bac3ee4386f718728ad965fdacb46f02f949986f6979f17d41dc21f06d7ad62f3e744f0599d1
+DIST firehol-3.0.1.tar.xz 1407436 SHA256 63904b635dbd096035a720f84ad4ff74f32cec75357001638f4748c49cce46c7 SHA512 8c1bdb2a8b1bf551036d0ee58e7538a2e6513427db353af7e4415ed91cab95fe363e348d5ff32a82767b0fa4db69c469d228a05fa70fdfb8a9b81a2e6b78bae4 WHIRLPOOL a0189ef5da2f2ed15a51b32ec0be60a036d9806053b44bbc538e524fe57d28230e8676fb8352ab1b7b36998e6e68806b324768606c21f64c2c39b6698f2e6d58
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
new file mode 100644
index 0000000..2509875
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.0.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="http://firehol.sourceforge.net/"
+SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6"
+KEYWORDS="~amd64"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal]
+ net-misc/iprange
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
+ ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
+ ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
+ ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
+
+ get_version
+ if [ ${KV_PATCH} -ge 25 ]; then
+ CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
+ else
+ CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
+ fi
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ # removing IP6TABLES_CMD has no effect and enable build
+ # without ipv6 available
+ econf \
+ --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+ --disable-vnetbuild \
+ --disable-update-ipsets \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-01-21 21:01 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-01-21 21:01 UTC (permalink / raw
To: gentoo-commits
commit: de179b7f1e4362fc67983fe166f9b9c53dc046d0
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 21:01:24 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 21:01:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de179b7f
net-firewall/firehol: remove uselss comments
Package-Manager: portage-2.2.26
net-firewall/firehol/firehol-3.0.1.ebuild | 2 --
1 file changed, 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
index 2509875..f5fc8df 100644
--- a/net-firewall/firehol/firehol-3.0.1.ebuild
+++ b/net-firewall/firehol/firehol-3.0.1.ebuild
@@ -37,8 +37,6 @@ pkg_setup() {
}
src_configure() {
- # removing IP6TABLES_CMD has no effect and enable build
- # without ipv6 available
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--disable-vnetbuild \
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-01-22 12:02 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-01-22 12:02 UTC (permalink / raw
To: gentoo-commits
commit: 191c8ac2f49e80edc01761208d570363e041adf1
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 12:01:17 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 12:01:17 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191c8ac2
net-firewall/firehol: add traceroute dependency
Bug: 572598
Package-Manager: portage-2.2.26
net-firewall/firehol/firehol-3.0.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
index f5fc8df..825b6a2 100644
--- a/net-firewall/firehol/firehol-3.0.1.ebuild
+++ b/net-firewall/firehol/firehol-3.0.1.ebuild
@@ -17,6 +17,7 @@ KEYWORDS="~amd64"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal]
net-misc/iprange
+ net-analyzer/traceroute
virtual/modutils
app-arch/gzip"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-01-22 12:15 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-01-22 12:15 UTC (permalink / raw
To: gentoo-commits
commit: e046aeac147a4a369bc38d483caedc485a5508d9
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 12:14:12 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 12:14:56 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e046aeac
net-firewall/firehol: fix more dependnecies
Package-Manager: portage-2.2.26
net-firewall/firehol/firehol-3.0.1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
index 825b6a2..0de3c98 100644
--- a/net-firewall/firehol/firehol-3.0.1.ebuild
+++ b/net-firewall/firehol/firehol-3.0.1.ebuild
@@ -15,7 +15,8 @@ IUSE="doc ipv6"
KEYWORDS="~amd64"
RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal]
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
net-misc/iprange
net-analyzer/traceroute
virtual/modutils
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-04-05 22:37 Anthony G. Basile
0 siblings, 0 replies; 39+ messages in thread
From: Anthony G. Basile @ 2016-04-05 22:37 UTC (permalink / raw
To: gentoo-commits
commit: 519ecf720c13c45823ce6a32f8cc60b6a4cc110f
Author: Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Tue Apr 5 22:28:32 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Apr 5 22:44:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519ecf72
net-firewall/firehol: Add ~arm.
I successfully installed and used it on Raspberry Pi 3 board.
net-firewall/firehol/firehol-3.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
index 0de3c98..9e84fe1 100644
--- a/net-firewall/firehol/firehol-3.0.1.ebuild
+++ b/net-firewall/firehol/firehol-3.0.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2016-05-20 11:53 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2016-05-20 11:53 UTC (permalink / raw
To: gentoo-commits
commit: a6c94220d800dfe76fa4c8b9c615a41a69c06219
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri May 20 08:59:18 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri May 20 11:52:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6c94220
net-firewall/firehol: fix kernel config validation
Bug: 582850
Package-Manager: portage-2.2.28
net-firewall/firehol/firehol-3.0.1-r1.ebuild | 63 ++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/net-firewall/firehol/firehol-3.0.1-r1.ebuild b/net-firewall/firehol/firehol-3.0.1-r1.ebuild
new file mode 100644
index 0000000..74bdc57
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.0.1-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="http://firehol.sourceforge.net/"
+SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6"
+KEYWORDS="~amd64 ~arm"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+ --disable-vnetbuild \
+ --disable-update-ipsets \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-02-05 19:28 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-02-05 19:28 UTC (permalink / raw
To: gentoo-commits
commit: da17fc729f9b43d592c27d69ab1d8eca5486f6e6
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 5 19:28:07 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sun Feb 5 19:28:51 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da17fc72
net-firewall/firehol: version bump
Bug: 608318
Package-Manager: portage-2.3.3
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.1.2.ebuild | 62 +++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 4c8eeb4..dc55a39 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,3 +1,4 @@
DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
DIST firehol-2.0.4.tar.xz 900876 SHA256 f41ff31920402c80aa823a298cc437e9a0b4d9ff0320f3f75cb55c62407dad4c SHA512 b73053c3fc1cb4e5e83cc2b25a99bf06c14623f9e574af2b11b198ecc2fb84119f0ab60cb3ff96b32601c717118693869eb3fea2b0fdc61bb49f197fb73abcca WHIRLPOOL 05bc39636c7d496e321f191b03efe2f8d1dcd6aec537a41e7ae4bac3ee4386f718728ad965fdacb46f02f949986f6979f17d41dc21f06d7ad62f3e744f0599d1
DIST firehol-3.0.1.tar.xz 1407436 SHA256 63904b635dbd096035a720f84ad4ff74f32cec75357001638f4748c49cce46c7 SHA512 8c1bdb2a8b1bf551036d0ee58e7538a2e6513427db353af7e4415ed91cab95fe363e348d5ff32a82767b0fa4db69c469d228a05fa70fdfb8a9b81a2e6b78bae4 WHIRLPOOL a0189ef5da2f2ed15a51b32ec0be60a036d9806053b44bbc538e524fe57d28230e8676fb8352ab1b7b36998e6e68806b324768606c21f64c2c39b6698f2e6d58
+DIST firehol-3.1.2.tar.xz 1451112 SHA256 3731bdb1ab6d442a8a5b3103fcefd5d9fb0688406033f8833c2b0fdc9c1780ba SHA512 8b7e6e48e1eadf9c8ab3d97a5eec92dc239a48634949c71bf537fb75e095e51968bb6095a1a2193c719ecef53d4c623cc2e13035fbd6d6f277e89fc12f7bdb63 WHIRLPOOL 07b6af7783cdb33d0237c51b265e5c8085386602cfeb369e745a51bd2ea508672b0271382b214f4b4464c6f6bf1bbd0e9070ca998036dbba7a332ea6b8172951
diff --git a/net-firewall/firehol/firehol-3.1.2.ebuild b/net-firewall/firehol/firehol-3.1.2.ebuild
new file mode 100644
index 00000000..ef29205
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6"
+KEYWORDS="~amd64 ~arm"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ --disable-update-ipsets \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-02-17 20:52 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-02-17 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 470cab9984805c6134d14f3b83d04cc536c89d30
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 17 20:51:45 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 20:52:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470cab99
net-firewall/firehol: version bump
Bug: 609626
Package-Manager: portage-2.3.3
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.1.3.ebuild | 62 +++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index dc55a39a4c..e9ed53826c 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -2,3 +2,4 @@ DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3eb
DIST firehol-2.0.4.tar.xz 900876 SHA256 f41ff31920402c80aa823a298cc437e9a0b4d9ff0320f3f75cb55c62407dad4c SHA512 b73053c3fc1cb4e5e83cc2b25a99bf06c14623f9e574af2b11b198ecc2fb84119f0ab60cb3ff96b32601c717118693869eb3fea2b0fdc61bb49f197fb73abcca WHIRLPOOL 05bc39636c7d496e321f191b03efe2f8d1dcd6aec537a41e7ae4bac3ee4386f718728ad965fdacb46f02f949986f6979f17d41dc21f06d7ad62f3e744f0599d1
DIST firehol-3.0.1.tar.xz 1407436 SHA256 63904b635dbd096035a720f84ad4ff74f32cec75357001638f4748c49cce46c7 SHA512 8c1bdb2a8b1bf551036d0ee58e7538a2e6513427db353af7e4415ed91cab95fe363e348d5ff32a82767b0fa4db69c469d228a05fa70fdfb8a9b81a2e6b78bae4 WHIRLPOOL a0189ef5da2f2ed15a51b32ec0be60a036d9806053b44bbc538e524fe57d28230e8676fb8352ab1b7b36998e6e68806b324768606c21f64c2c39b6698f2e6d58
DIST firehol-3.1.2.tar.xz 1451112 SHA256 3731bdb1ab6d442a8a5b3103fcefd5d9fb0688406033f8833c2b0fdc9c1780ba SHA512 8b7e6e48e1eadf9c8ab3d97a5eec92dc239a48634949c71bf537fb75e095e51968bb6095a1a2193c719ecef53d4c623cc2e13035fbd6d6f277e89fc12f7bdb63 WHIRLPOOL 07b6af7783cdb33d0237c51b265e5c8085386602cfeb369e745a51bd2ea508672b0271382b214f4b4464c6f6bf1bbd0e9070ca998036dbba7a332ea6b8172951
+DIST firehol-3.1.3.tar.xz 1476220 SHA256 4693d7238d411ffcaacd1febf7231a9e69657e8b198f1b0726429bdb258372e7 SHA512 6c75b57650d918cfc485f6eb01d69694acd5c7b487a10a566fc26b8d5e0cd6a6a9a09bd8d3219bf4e78aa4fe47f83e5ac399107a07770b787e1ccba3078c5f3f WHIRLPOOL b14628fe4e9f7d0b45231a0720b4142dfd41edadd5bafd74650c8af2c67b5a535b8c32e03c696a06332455b18b18900c063a7cdbeb7582c15b409a83cfea83b7
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
new file mode 100644
index 0000000000..ef292052a4
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6"
+KEYWORDS="~amd64 ~arm"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ --disable-update-ipsets \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-05 0:34 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-03-05 0:34 UTC (permalink / raw
To: gentoo-commits
commit: b1aaa6c39c6efbd1b84a9c52ed244704cfb9cbd2
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 5 00:23:45 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sun Mar 5 00:33:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1aaa6c3
net-firewall/firehol: cleanup
Package-Manager: Portage-2.3.3, Repoman-2.3.1
net-firewall/firehol/Manifest | 3 --
net-firewall/firehol/firehol-2.0.4.ebuild | 61 ---------------------------
net-firewall/firehol/firehol-3.0.1-r1.ebuild | 62 ----------------------------
net-firewall/firehol/firehol-3.0.1.ebuild | 56 -------------------------
net-firewall/firehol/firehol-3.1.2.ebuild | 61 ---------------------------
5 files changed, 243 deletions(-)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index e9ed53826c5..0c6391f1245 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,5 +1,2 @@
DIST firehol-2.0.3.tar.xz 898248 SHA256 4bcc2d19ee7d41377f19c3bcd3ae882ba10dd3ebed6eac2deedbce202d1a3d72 SHA512 fab1ddea6d60d5cb91eacc73f79549f454abc7d581c696463f4396465257a708af175f18da7aa2c6ddc3dddc68b21528edb043a3fe539d16f5057e4f0c0db0b6 WHIRLPOOL 50556da7e392575ef2e36a489e544295f909c8621be5e7c91ad8b00f99879d1eebe59076948d8e58839869771547e85c425262438eb5f79d4b2bd8f2bb0009f8
-DIST firehol-2.0.4.tar.xz 900876 SHA256 f41ff31920402c80aa823a298cc437e9a0b4d9ff0320f3f75cb55c62407dad4c SHA512 b73053c3fc1cb4e5e83cc2b25a99bf06c14623f9e574af2b11b198ecc2fb84119f0ab60cb3ff96b32601c717118693869eb3fea2b0fdc61bb49f197fb73abcca WHIRLPOOL 05bc39636c7d496e321f191b03efe2f8d1dcd6aec537a41e7ae4bac3ee4386f718728ad965fdacb46f02f949986f6979f17d41dc21f06d7ad62f3e744f0599d1
-DIST firehol-3.0.1.tar.xz 1407436 SHA256 63904b635dbd096035a720f84ad4ff74f32cec75357001638f4748c49cce46c7 SHA512 8c1bdb2a8b1bf551036d0ee58e7538a2e6513427db353af7e4415ed91cab95fe363e348d5ff32a82767b0fa4db69c469d228a05fa70fdfb8a9b81a2e6b78bae4 WHIRLPOOL a0189ef5da2f2ed15a51b32ec0be60a036d9806053b44bbc538e524fe57d28230e8676fb8352ab1b7b36998e6e68806b324768606c21f64c2c39b6698f2e6d58
-DIST firehol-3.1.2.tar.xz 1451112 SHA256 3731bdb1ab6d442a8a5b3103fcefd5d9fb0688406033f8833c2b0fdc9c1780ba SHA512 8b7e6e48e1eadf9c8ab3d97a5eec92dc239a48634949c71bf537fb75e095e51968bb6095a1a2193c719ecef53d4c623cc2e13035fbd6d6f277e89fc12f7bdb63 WHIRLPOOL 07b6af7783cdb33d0237c51b265e5c8085386602cfeb369e745a51bd2ea508672b0271382b214f4b4464c6f6bf1bbd0e9070ca998036dbba7a332ea6b8172951
DIST firehol-3.1.3.tar.xz 1476220 SHA256 4693d7238d411ffcaacd1febf7231a9e69657e8b198f1b0726429bdb258372e7 SHA512 6c75b57650d918cfc485f6eb01d69694acd5c7b487a10a566fc26b8d5e0cd6a6a9a09bd8d3219bf4e78aa4fe47f83e5ac399107a07770b787e1ccba3078c5f3f WHIRLPOOL b14628fe4e9f7d0b45231a0720b4142dfd41edadd5bafd74650c8af2c67b5a535b8c32e03c696a06332455b18b18900c063a7cdbeb7582c15b409a83cfea83b7
diff --git a/net-firewall/firehol/firehol-2.0.4.ebuild b/net-firewall/firehol/firehol-2.0.4.ebuild
deleted file mode 100644
index a65aba74ef2..00000000000
--- a/net-firewall/firehol/firehol-2.0.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="http://firehol.sourceforge.net/"
-SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal]
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
- ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
- ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
- ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
-
- get_version
- if [ ${KV_PATCH} -ge 25 ]; then
- CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
- else
- CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
- fi
- linux-info_pkg_setup
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-2.0.2-autosave.patch"
-}
-
-src_configure() {
- # removing IP6TABLES_CMD has no effect and enable build
- # without ipv6 available
- econf \
- --docdir="${EPREFIX}/usr/share/doc/${PF}" \
- --with-autosave="${EPREFIX}/var/lib/iptables/rules-save" \
- --with-autosave6="${EPREFIX}/var/lib/ip6tables/rules-save" \
- $(use_enable doc) \
- IP6TABLES_CMD=/bin/false \
- IP6TABLES_SAVE_CMD=/bin/false \
- IP6TABLES_RESTORE_CMD=/bin/false
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd firehol
- newconfd "${FILESDIR}"/fireqos.conf.d fireqos
- newinitd "${FILESDIR}"/fireqos.initrd fireqos
-}
diff --git a/net-firewall/firehol/firehol-3.0.1-r1.ebuild b/net-firewall/firehol/firehol-3.0.1-r1.ebuild
deleted file mode 100644
index a42ed48296a..00000000000
--- a/net-firewall/firehol/firehol-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="http://firehol.sourceforge.net/"
-SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6"
-KEYWORDS="~amd64 ~arm"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local KCONFIG_OPTS=" \
- ~IP_NF_FILTER \
- ~IP_NF_IPTABLES \
- ~IP_NF_MANGLE \
- ~IP_NF_TARGET_MASQUERADE
- ~IP_NF_TARGET_REDIRECT \
- ~IP_NF_TARGET_REJECT \
- ~NETFILTER_XT_MATCH_LIMIT \
- ~NETFILTER_XT_MATCH_OWNER \
- ~NETFILTER_XT_MATCH_STATE \
- ~NF_CONNTRACK \
- ~NF_CONNTRACK_IPV4 \
- ~NF_CONNTRACK_MARK \
- ~NF_NAT \
- ~NF_NAT_FTP \
- ~NF_NAT_IRC \
- "
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --docdir="${EPREFIX}/usr/share/doc/${PF}" \
- --disable-vnetbuild \
- --disable-update-ipsets \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd firehol
- newconfd "${FILESDIR}"/fireqos.conf.d fireqos
- newinitd "${FILESDIR}"/fireqos.initrd fireqos
-}
diff --git a/net-firewall/firehol/firehol-3.0.1.ebuild b/net-firewall/firehol/firehol-3.0.1.ebuild
deleted file mode 100644
index 0a3d149fcb8..00000000000
--- a/net-firewall/firehol/firehol-3.0.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="http://firehol.sourceforge.net/"
-SRC_URI="https://firehol.org/download/firehol/releases/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6"
-KEYWORDS="~amd64 ~arm"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local KCONFIG_OPTS="~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_MARK ~NF_NAT ~NF_NAT_FTP ~NF_NAT_IRC \
- ~IP_NF_IPTABLES ~IP_NF_FILTER ~IP_NF_TARGET_REJECT ~IP_NF_TARGET_LOG ~IP_NF_TARGET_ULOG \
- ~IP_NF_TARGET_MASQUERADE ~IP_NF_TARGET_REDIRECT ~IP_NF_MANGLE \
- ~NETFILTER_XT_MATCH_LIMIT ~NETFILTER_XT_MATCH_STATE ~NETFILTER_XT_MATCH_OWNER"
-
- get_version
- if [ ${KV_PATCH} -ge 25 ]; then
- CONFIG_CHECK="~NF_CONNTRACK ${KCONFIG_OPTS}"
- else
- CONFIG_CHECK="~NF_CONNTRACK_ENABLED ${KCONFIG_OPTS}"
- fi
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --docdir="${EPREFIX}/usr/share/doc/${PF}" \
- --disable-vnetbuild \
- --disable-update-ipsets \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd firehol
- newconfd "${FILESDIR}"/fireqos.conf.d fireqos
- newinitd "${FILESDIR}"/fireqos.initrd fireqos
-}
diff --git a/net-firewall/firehol/firehol-3.1.2.ebuild b/net-firewall/firehol/firehol-3.1.2.ebuild
deleted file mode 100644
index 4061bbc8a55..00000000000
--- a/net-firewall/firehol/firehol-3.1.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://github.com/firehol/firehol"
-SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6"
-KEYWORDS="~amd64 ~arm"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local KCONFIG_OPTS=" \
- ~IP_NF_FILTER \
- ~IP_NF_IPTABLES \
- ~IP_NF_MANGLE \
- ~IP_NF_TARGET_MASQUERADE
- ~IP_NF_TARGET_REDIRECT \
- ~IP_NF_TARGET_REJECT \
- ~NETFILTER_XT_MATCH_LIMIT \
- ~NETFILTER_XT_MATCH_OWNER \
- ~NETFILTER_XT_MATCH_STATE \
- ~NF_CONNTRACK \
- ~NF_CONNTRACK_IPV4 \
- ~NF_CONNTRACK_MARK \
- ~NF_NAT \
- ~NF_NAT_FTP \
- ~NF_NAT_IRC \
- "
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --disable-vnetbuild \
- --disable-update-ipsets \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.conf.d firehol
- newinitd "${FILESDIR}"/firehol.initrd firehol
- newconfd "${FILESDIR}"/fireqos.conf.d fireqos
- newinitd "${FILESDIR}"/fireqos.initrd fireqos
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-10 16:37 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-03-10 16:37 UTC (permalink / raw
To: gentoo-commits
commit: 1b7fb9885e1edb059e64a58fee5153d1e57a1f29
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 16:36:43 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 16:36:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b7fb988
net-firewall/firehol: add ipset support
Package-Manager: Portage-2.3.3, Repoman-2.3.1
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 64 ++++++++++++++++++++++++++++
net-firewall/firehol/metadata.xml | 5 +++
2 files changed, 69 insertions(+)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
new file mode 100644
index 00000000000..99e09bd7cb9
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6 ipset"
+KEYWORDS="~amd64 ~arm"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip
+ ipset? (
+ net-firewall/ipset
+ )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ $(use_enable ipset update-ipsets) \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
diff --git a/net-firewall/firehol/metadata.xml b/net-firewall/firehol/metadata.xml
index 1d39106f948..eea67008d3f 100644
--- a/net-firewall/firehol/metadata.xml
+++ b/net-firewall/firehol/metadata.xml
@@ -7,4 +7,9 @@
<upstream>
<remote-id type="sourceforge">firehol</remote-id>
</upstream>
+ <use>
+ <flag name="ipset">
+ Use <pkg>net-firewall/ipset</pkg>.
+ </flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-16 10:13 Michael Weber
0 siblings, 0 replies; 39+ messages in thread
From: Michael Weber @ 2017-03-16 10:13 UTC (permalink / raw
To: gentoo-commits
commit: dc67fdc3ae1d8a98448a754580afb17e3ecea21f
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 09:58:44 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 10:13:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc67fdc3
net-firewall/firehol: arm stable (bug 611750).
Package-Manager: Portage-2.3.4, Repoman-2.3.2
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index 0e3b23fb5c7..51a0d52381d 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6"
-KEYWORDS="amd64 ~arm"
+KEYWORDS="amd64 arm"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-16 10:15 Michael Weber
0 siblings, 0 replies; 39+ messages in thread
From: Michael Weber @ 2017-03-16 10:15 UTC (permalink / raw
To: gentoo-commits
commit: afcadfd7fa32a1c4d8b5f9946fb4628a5333f4d7
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 10:15:26 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 10:15:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afcadfd7
net-firewall/firehol: add ~ppc keyword (bug 611750).
Package-Manager: Portage-2.3.4, Repoman-2.3.2
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index 99e09bd7cb9..45d722cbe81 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~ppc"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index 51a0d52381d..449816ce5f0 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6"
-KEYWORDS="amd64 arm"
+KEYWORDS="amd64 arm ~ppc"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-16 10:59 Michael Weber
0 siblings, 0 replies; 39+ messages in thread
From: Michael Weber @ 2017-03-16 10:59 UTC (permalink / raw
To: gentoo-commits
commit: e76ddad08087b9330b702eed528f13d455d0f5d9
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 10:26:58 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 10:59:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e76ddad0
net-firewall/firehol: ppc stable (bug 611750).
Package-Manager: Portage-2.3.4, Repoman-2.3.2
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index 449816ce5f0..18d79395cc9 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6"
-KEYWORDS="amd64 arm ~ppc"
+KEYWORDS="amd64 arm ppc"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-03-25 18:11 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-03-25 18:11 UTC (permalink / raw
To: gentoo-commits
commit: 06290afb2555f9bed92d564a33a27a044f46ee61
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 25 17:38:17 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 18:11:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06290afb
net-firewall/firehol: remove eutils
Package-Manager: Portage-2.3.3, Repoman-2.3.1
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index 45d722cbe81..92789cbbace 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils linux-info
+inherit linux-info
DESCRIPTION="iptables firewall generator"
HOMEPAGE="https://github.com/firehol/firehol"
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index 18d79395cc9..72db0e343d5 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils linux-info
+inherit linux-info
DESCRIPTION="iptables firewall generator"
HOMEPAGE="https://github.com/firehol/firehol"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-08-31 14:34 Tim Harder
0 siblings, 0 replies; 39+ messages in thread
From: Tim Harder @ 2017-08-31 14:34 UTC (permalink / raw
To: gentoo-commits
commit: 0c70ca1ea3c6b26de1222376e0dbed9f219ffe56
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 14:32:42 2017 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 14:33:18 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c70ca1e
net-firewall/firehol: add the main website to HOMEPAGE
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index 92789cbbace..f95d2d08acf 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
inherit linux-info
DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://github.com/firehol/firehol"
+HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index 72db0e343d5..dec6cac43af 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -5,7 +5,7 @@ EAPI=6
inherit linux-info
DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://github.com/firehol/firehol"
+HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-09-08 19:39 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2017-09-08 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 5147f7f6e24ab95bd5ae108bba4460279b5f5dfa
Author: Alessandro Rosetti <alessandro.rosetti <AT> gmail <DOT> com>
AuthorDate: Thu Sep 7 00:34:55 2017 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Sep 8 19:38:53 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5147f7f6
net-firewall/firehol: Bump to 3.1.4
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.1.4.ebuild | 64 +++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 8d965920961..05b7e77efd3 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1 +1,2 @@
DIST firehol-3.1.3.tar.xz 1476220 SHA256 4693d7238d411ffcaacd1febf7231a9e69657e8b198f1b0726429bdb258372e7 SHA512 6c75b57650d918cfc485f6eb01d69694acd5c7b487a10a566fc26b8d5e0cd6a6a9a09bd8d3219bf4e78aa4fe47f83e5ac399107a07770b787e1ccba3078c5f3f WHIRLPOOL b14628fe4e9f7d0b45231a0720b4142dfd41edadd5bafd74650c8af2c67b5a535b8c32e03c696a06332455b18b18900c063a7cdbeb7582c15b409a83cfea83b7
+DIST firehol-3.1.4.tar.xz 1481320 SHA256 a73c26bb81dfa4c476b7b02c3e71c34715c044c496feea56551614a195b93d7e SHA512 1a17b6e810274b346f66788c4c4736421583e6a4ed76df7a1d7f46dcb99e434460998c05755c8342941413d23c02e2ca0d0bf2123cb555a6c7513d24983a13ed WHIRLPOOL b551cd98641a3ae74a06d29080c70451ee7bd2174f0658ed91c55d42691c4f07d7c248ed63d208c6ef7084294726482ab1d398a79fddeec88865b7308ee10cff
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
new file mode 100644
index 00000000000..f95d2d08acf
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6 ipset"
+KEYWORDS="~amd64 ~arm ~ppc"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip
+ ipset? (
+ net-firewall/ipset
+ )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ $(use_enable ipset update-ipsets) \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-11-30 20:40 Thomas Deutschmann
0 siblings, 0 replies; 39+ messages in thread
From: Thomas Deutschmann @ 2017-11-30 20:40 UTC (permalink / raw
To: gentoo-commits
commit: 4116ad482b8de97a564db3bcd74cb91173c4e1bd
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 30 20:26:45 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 30 20:40:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4116ad48
net-firewall/firehol: x86 keyword added (bug #611748)
Package-Manager: Portage-2.3.16, Repoman-2.3.6
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.4.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index f95d2d08acf..ce59c1998af 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm ~ppc"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index dec6cac43af..d67b5390673 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6"
-KEYWORDS="amd64 arm ppc"
+KEYWORDS="amd64 arm ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
index f95d2d08acf..ce59c1998af 100644
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm ~ppc"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2017-12-16 10:31 Tobias Klausmann
0 siblings, 0 replies; 39+ messages in thread
From: Tobias Klausmann @ 2017-12-16 10:31 UTC (permalink / raw
To: gentoo-commits
commit: 4f0bda85245b30f623303524b3eef426047ce1fc
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 10:29:44 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 10:31:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f0bda85
net-firewall/firehol-3.1.4-r0: amd64 stable
Gentoo-Bug: http://bugs.gentoo.org/633688
net-firewall/firehol/firehol-3.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
index ce59c1998af..9857dba9a49 100644
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2018-08-18 4:51 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2018-08-18 4:51 UTC (permalink / raw
To: gentoo-commits
commit: f5d83b45d64852b1e5fd1472c379a7a86234ba96
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 18 04:50:43 2018 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sat Aug 18 04:50:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5d83b45
net-firewall/firehol: version bump
Closes: https://github.com/gentoo/gentoo/pull/9606
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.1.6.ebuild | 64 +++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index f544ddca6fe..7419c1e9478 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,2 +1,3 @@
DIST firehol-3.1.3.tar.xz 1476220 BLAKE2B 19ac9db805fc4452b447a45a7ed35c781bc8595f3ede0af7de0ff5a89ab50a9f8a634e0754869774d767b50d720019a5ac466e9d1726a75a34a283473b17a94b SHA512 6c75b57650d918cfc485f6eb01d69694acd5c7b487a10a566fc26b8d5e0cd6a6a9a09bd8d3219bf4e78aa4fe47f83e5ac399107a07770b787e1ccba3078c5f3f
DIST firehol-3.1.4.tar.xz 1481320 BLAKE2B 0fabef4a853aece966a8f273cc82947a6e63ac44ccac2494d5d6a2f0916658a78cfe0c28cc2414e797411e4795216400b1fa95193a619f7e26fe545182a5fc44 SHA512 1a17b6e810274b346f66788c4c4736421583e6a4ed76df7a1d7f46dcb99e434460998c05755c8342941413d23c02e2ca0d0bf2123cb555a6c7513d24983a13ed
+DIST firehol-3.1.6.tar.xz 1484424 BLAKE2B aea45aa424b7b43ed0576916f52a785601a21489263c1b5c6abbf3b2b97db80bf2a2420ae8176cd55e335ab93c18a8209a47f467dba80a63cf2c319b3e3e27d8 SHA512 5ffa7e59d3f10a6c7d3f5b5ef9d93f1b2138063374a10cb0c1ac4e75578d6cf7755e154b51febf546563ba003f100af13f89bca3843b66a8d22b8fc2da3fadfe
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
new file mode 100644
index 00000000000..b4f770df400
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6 ipset"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ virtual/modutils
+ app-arch/gzip
+ ipset? (
+ net-firewall/ipset
+ )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local KCONFIG_OPTS=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ $(use_enable ipset update-ipsets) \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.conf.d firehol
+ newinitd "${FILESDIR}"/firehol.initrd firehol
+ newconfd "${FILESDIR}"/fireqos.conf.d fireqos
+ newinitd "${FILESDIR}"/fireqos.initrd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2018-09-28 0:18 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2018-09-28 0:18 UTC (permalink / raw
To: gentoo-commits
commit: 1ee1d7b16891b989a5d8f7a235b333e68491cc04
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 28 00:08:26 2018 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Sep 28 00:18:41 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee1d7b1
net-firewall/firehol: eapi bump
Package-Manager: Portage-2.3.49, Repoman-2.3.10
net-firewall/firehol/firehol-3.1.6.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
index b4f770df400..4bc872ba533 100644
--- a/net-firewall/firehol/firehol-3.1.6.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
+
inherit linux-info
DESCRIPTION="iptables firewall generator"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2018-11-25 10:21 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2018-11-25 10:21 UTC (permalink / raw
To: gentoo-commits
commit: 989b36bd39fc770634737154439c6a5c020cab6b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 25 10:21:08 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Nov 25 10:21:22 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=989b36bd
net-firewall/firehol: arm stable wrt bug #633688
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
net-firewall/firehol/firehol-3.1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
index 9857dba9a49..45bbcc4441d 100644
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2018-12-28 19:17 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2018-12-28 19:17 UTC (permalink / raw
To: gentoo-commits
commit: 8d420444471ab784195296b0468170f67af24a35
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 28 19:16:37 2018 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Dec 28 19:16:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d420444
net-firewall/firehol: add additional config options
Closes: https://bugs.gentoo.org/show_bug.cgi?id=673898
Thanks: Sebastian Pipping
Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
net-firewall/firehol/firehol-3.1.6.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
index 4bc872ba533..79fc08da978 100644
--- a/net-firewall/firehol/firehol-3.1.6.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -34,6 +34,8 @@ pkg_setup() {
~IP_NF_TARGET_MASQUERADE
~IP_NF_TARGET_REDIRECT \
~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_CONNMARK \
+ ~NETFILTER_XT_MATCH_HELPER \
~NETFILTER_XT_MATCH_LIMIT \
~NETFILTER_XT_MATCH_OWNER \
~NETFILTER_XT_MATCH_STATE \
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2018-12-28 20:09 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2018-12-28 20:09 UTC (permalink / raw
To: gentoo-commits
commit: fb9f5884364430db600f8a2824c1ef2d9c14d0e7
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 28 20:04:21 2018 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Dec 28 20:09:22 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb9f5884
net-firewall/firehol: use CONFIG_CHECK to actually check configuration
Closes: https://bugs.gentoo.org/show_bug.cgi?id=673898
Thanks: Sebastian Pipping
Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.3.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.4.ebuild | 2 +-
net-firewall/firehol/firehol-3.1.6.ebuild | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index ce59c1998af..866cded9cb6 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -26,7 +26,7 @@ RDEPEND="net-firewall/iptables
DEPEND="${RDEPEND}"
pkg_setup() {
- local KCONFIG_OPTS=" \
+ local CONFIG_CHECK=" \
~IP_NF_FILTER \
~IP_NF_IPTABLES \
~IP_NF_MANGLE \
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
index d67b5390673..b153a88c319 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -23,7 +23,7 @@ RDEPEND="net-firewall/iptables
DEPEND="${RDEPEND}"
pkg_setup() {
- local KCONFIG_OPTS=" \
+ local CONFIG_CHECK=" \
~IP_NF_FILTER \
~IP_NF_IPTABLES \
~IP_NF_MANGLE \
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
index 45bbcc4441d..67745a1203c 100644
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -26,7 +26,7 @@ RDEPEND="net-firewall/iptables
DEPEND="${RDEPEND}"
pkg_setup() {
- local KCONFIG_OPTS=" \
+ local CONFIG_CHECK=" \
~IP_NF_FILTER \
~IP_NF_IPTABLES \
~IP_NF_MANGLE \
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
index 79fc08da978..626180343e1 100644
--- a/net-firewall/firehol/firehol-3.1.6.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -27,7 +27,7 @@ RDEPEND="net-firewall/iptables
DEPEND="${RDEPEND}"
pkg_setup() {
- local KCONFIG_OPTS=" \
+ local CONFIG_CHECK=" \
~IP_NF_FILTER \
~IP_NF_IPTABLES \
~IP_NF_MANGLE \
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2019-03-25 21:15 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2019-03-25 21:15 UTC (permalink / raw
To: gentoo-commits
commit: 973eb34f16600492d3cb99fad18cc001cc871dc2
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 25 21:14:57 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Mar 25 21:14:57 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973eb34f
net-firewall/firehol: amd64 stable wrt bug #681106
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
net-firewall/firehol/firehol-3.1.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
index 8bddf14115b..8257506bfa3 100644
--- a/net-firewall/firehol/firehol-3.1.6.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2019-03-30 19:05 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2019-03-30 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 7f6e11149b14c4fa155649a6b20949c0c8f35c8e
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 30 18:59:10 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Mar 30 19:05:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6e1114
net-firewall/firehol: arm stable wrt bug #681106
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"
net-firewall/firehol/firehol-3.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.6.ebuild b/net-firewall/firehol/firehol-3.1.6.ebuild
index 8257506bfa3..c17a7cde2bf 100644
--- a/net-firewall/firehol/firehol-3.1.6.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2019-04-19 20:02 Alon Bar-Lev
0 siblings, 0 replies; 39+ messages in thread
From: Alon Bar-Lev @ 2019-04-19 20:02 UTC (permalink / raw
To: gentoo-commits
commit: 0f2405bc0854b274f272c039e196361fb66ddb51
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 20:01:42 2019 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 20:01:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2405bc
net-firewall/firehol: cleanup old
ppc goes unstable as ipset is not stabilized
Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
net-firewall/firehol/Manifest | 2 -
net-firewall/firehol/firehol-3.1.3-r1.ebuild | 64 ----------------------------
net-firewall/firehol/firehol-3.1.3.ebuild | 61 --------------------------
net-firewall/firehol/firehol-3.1.4.ebuild | 64 ----------------------------
4 files changed, 191 deletions(-)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 7419c1e9478..7547639c83b 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1,3 +1 @@
-DIST firehol-3.1.3.tar.xz 1476220 BLAKE2B 19ac9db805fc4452b447a45a7ed35c781bc8595f3ede0af7de0ff5a89ab50a9f8a634e0754869774d767b50d720019a5ac466e9d1726a75a34a283473b17a94b SHA512 6c75b57650d918cfc485f6eb01d69694acd5c7b487a10a566fc26b8d5e0cd6a6a9a09bd8d3219bf4e78aa4fe47f83e5ac399107a07770b787e1ccba3078c5f3f
-DIST firehol-3.1.4.tar.xz 1481320 BLAKE2B 0fabef4a853aece966a8f273cc82947a6e63ac44ccac2494d5d6a2f0916658a78cfe0c28cc2414e797411e4795216400b1fa95193a619f7e26fe545182a5fc44 SHA512 1a17b6e810274b346f66788c4c4736421583e6a4ed76df7a1d7f46dcb99e434460998c05755c8342941413d23c02e2ca0d0bf2123cb555a6c7513d24983a13ed
DIST firehol-3.1.6.tar.xz 1484424 BLAKE2B aea45aa424b7b43ed0576916f52a785601a21489263c1b5c6abbf3b2b97db80bf2a2420ae8176cd55e335ab93c18a8209a47f467dba80a63cf2c319b3e3e27d8 SHA512 5ffa7e59d3f10a6c7d3f5b5ef9d93f1b2138063374a10cb0c1ac4e75578d6cf7755e154b51febf546563ba003f100af13f89bca3843b66a8d22b8fc2da3fadfe
diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
deleted file mode 100644
index db92d61855d..00000000000
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
-SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6 ipset"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip
- ipset? (
- net-firewall/ipset
- )"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local CONFIG_CHECK=" \
- ~IP_NF_FILTER \
- ~IP_NF_IPTABLES \
- ~IP_NF_MANGLE \
- ~IP_NF_TARGET_MASQUERADE
- ~IP_NF_TARGET_REDIRECT \
- ~IP_NF_TARGET_REJECT \
- ~NETFILTER_XT_MATCH_LIMIT \
- ~NETFILTER_XT_MATCH_OWNER \
- ~NETFILTER_XT_MATCH_STATE \
- ~NF_CONNTRACK \
- ~NF_CONNTRACK_IPV4 \
- ~NF_CONNTRACK_MARK \
- ~NF_NAT \
- ~NF_NAT_FTP \
- ~NF_NAT_IRC \
- "
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --disable-vnetbuild \
- $(use_enable ipset update-ipsets) \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.confd firehol
- newinitd "${FILESDIR}"/firehol.initd firehol
- newconfd "${FILESDIR}"/fireqos.confd fireqos
- newinitd "${FILESDIR}"/fireqos.initd fireqos
-}
diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild b/net-firewall/firehol/firehol-3.1.3.ebuild
deleted file mode 100644
index 11a79fd5b62..00000000000
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
-SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6"
-KEYWORDS="amd64 arm ppc ~x86"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local CONFIG_CHECK=" \
- ~IP_NF_FILTER \
- ~IP_NF_IPTABLES \
- ~IP_NF_MANGLE \
- ~IP_NF_TARGET_MASQUERADE
- ~IP_NF_TARGET_REDIRECT \
- ~IP_NF_TARGET_REJECT \
- ~NETFILTER_XT_MATCH_LIMIT \
- ~NETFILTER_XT_MATCH_OWNER \
- ~NETFILTER_XT_MATCH_STATE \
- ~NF_CONNTRACK \
- ~NF_CONNTRACK_IPV4 \
- ~NF_CONNTRACK_MARK \
- ~NF_NAT \
- ~NF_NAT_FTP \
- ~NF_NAT_IRC \
- "
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --disable-vnetbuild \
- --disable-update-ipsets \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.confd firehol
- newinitd "${FILESDIR}"/firehol.initd firehol
- newconfd "${FILESDIR}"/fireqos.confd fireqos
- newinitd "${FILESDIR}"/fireqos.initd fireqos
-}
diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild b/net-firewall/firehol/firehol-3.1.4.ebuild
deleted file mode 100644
index d9c5fb2ca8d..00000000000
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit linux-info
-
-DESCRIPTION="iptables firewall generator"
-HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
-SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6 ipset"
-KEYWORDS="amd64 arm ~ppc ~x86"
-
-RDEPEND="net-firewall/iptables
- sys-apps/iproute2[-minimal,ipv6?]
- net-misc/iputils[ipv6?]
- net-misc/iprange
- net-analyzer/traceroute
- virtual/modutils
- app-arch/gzip
- ipset? (
- net-firewall/ipset
- )"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- local CONFIG_CHECK=" \
- ~IP_NF_FILTER \
- ~IP_NF_IPTABLES \
- ~IP_NF_MANGLE \
- ~IP_NF_TARGET_MASQUERADE
- ~IP_NF_TARGET_REDIRECT \
- ~IP_NF_TARGET_REJECT \
- ~NETFILTER_XT_MATCH_LIMIT \
- ~NETFILTER_XT_MATCH_OWNER \
- ~NETFILTER_XT_MATCH_STATE \
- ~NF_CONNTRACK \
- ~NF_CONNTRACK_IPV4 \
- ~NF_CONNTRACK_MARK \
- ~NF_NAT \
- ~NF_NAT_FTP \
- ~NF_NAT_IRC \
- "
- linux-info_pkg_setup
-}
-
-src_configure() {
- econf \
- --disable-vnetbuild \
- $(use_enable ipset update-ipsets) \
- $(use_enable doc) \
- $(use_enable ipv6)
-}
-
-src_install() {
- default
-
- newconfd "${FILESDIR}"/firehol.confd firehol
- newinitd "${FILESDIR}"/firehol.initd firehol
- newconfd "${FILESDIR}"/fireqos.confd fireqos
- newinitd "${FILESDIR}"/fireqos.initd fireqos
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2019-11-30 9:58 James Le Cuirot
0 siblings, 0 replies; 39+ messages in thread
From: James Le Cuirot @ 2019-11-30 9:58 UTC (permalink / raw
To: gentoo-commits
commit: 8c31df8663fd2ea9754c2cd8411274f5448d8c27
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 30 09:52:40 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Nov 30 09:52:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c31df86
net-firewall/firehol: Take over as maintainer
Package-Manager: Portage-2.3.80, Repoman-2.3.17
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
net-firewall/firehol/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-firewall/firehol/metadata.xml b/net-firewall/firehol/metadata.xml
index 9b7a8d9bc00..7a5ef45d7d6 100644
--- a/net-firewall/firehol/metadata.xml
+++ b/net-firewall/firehol/metadata.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>chewi@gentoo.org</email>
+ <name>James Le Cuirot</name>
+ </maintainer>
<upstream>
<remote-id type="sourceforge">firehol</remote-id>
<remote-id type="github">firehol/firehol</remote-id>
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2020-08-08 14:16 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2020-08-08 14:16 UTC (permalink / raw
To: gentoo-commits
commit: 71038e1cd88ab29be1e1bf56177d3716752cde72
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 8 14:16:47 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Aug 8 14:16:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71038e1c
net-firewall/firehol: migrate to sys-apps/kmod
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
.../firehol/{firehol-3.1.6-r1.ebuild => firehol-3.1.6-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.6-r1.ebuild b/net-firewall/firehol/firehol-3.1.6-r2.ebuild
similarity index 98%
rename from net-firewall/firehol/firehol-3.1.6-r1.ebuild
rename to net-firewall/firehol/firehol-3.1.6-r2.ebuild
index 9307f76bb41..99733663266 100644
--- a/net-firewall/firehol/firehol-3.1.6-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6-r2.ebuild
@@ -16,10 +16,10 @@ KEYWORDS="amd64 arm ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
+ sys-apps/kmod[tools]
net-misc/iputils[ipv6?]
net-misc/iprange
net-analyzer/traceroute
- virtual/modutils
app-arch/gzip
ipset? (
net-firewall/ipset
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2020-11-20 13:44 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2020-11-20 13:44 UTC (permalink / raw
To: gentoo-commits
commit: 343ad36168cfc95b8789438491f035f6b27af798
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 13:43:54 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 13:43:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343ad361
net-firewall/firehol: arm64 keyworded (bug #754780)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-firewall/firehol/firehol-3.1.6-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/firehol/firehol-3.1.6-r2.ebuild b/net-firewall/firehol/firehol-3.1.6-r2.ebuild
index 99733663266..0a6d297bcce 100644
--- a/net-firewall/firehol/firehol-3.1.6-r2.ebuild
+++ b/net-firewall/firehol/firehol-3.1.6-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
IUSE="doc ipv6 ipset"
-KEYWORDS="amd64 arm ~ppc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~x86"
RDEPEND="net-firewall/iptables
sys-apps/iproute2[-minimal,ipv6?]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2021-01-02 21:00 James Le Cuirot
0 siblings, 0 replies; 39+ messages in thread
From: James Le Cuirot @ 2021-01-02 21:00 UTC (permalink / raw
To: gentoo-commits
commit: 667a1bfc583e75efefdbc007b69bd10d3989dc3f
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 2 21:00:28 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 21:00:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667a1bfc
net-firewall/firehol: Version bump to 3.1.7
Package-Manager: Portage-3.0.12, Repoman-3.0.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
net-firewall/firehol/Manifest | 1 +
net-firewall/firehol/firehol-3.1.7.ebuild | 67 +++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/net-firewall/firehol/Manifest b/net-firewall/firehol/Manifest
index 7547639c83b..e7ed5e2a55f 100644
--- a/net-firewall/firehol/Manifest
+++ b/net-firewall/firehol/Manifest
@@ -1 +1,2 @@
DIST firehol-3.1.6.tar.xz 1484424 BLAKE2B aea45aa424b7b43ed0576916f52a785601a21489263c1b5c6abbf3b2b97db80bf2a2420ae8176cd55e335ab93c18a8209a47f467dba80a63cf2c319b3e3e27d8 SHA512 5ffa7e59d3f10a6c7d3f5b5ef9d93f1b2138063374a10cb0c1ac4e75578d6cf7755e154b51febf546563ba003f100af13f89bca3843b66a8d22b8fc2da3fadfe
+DIST firehol-3.1.7.tar.xz 1457932 BLAKE2B 9a861f2e9c900bce45d0dbd12f4546bc14eb4d74aea27a8d4cb0e5bfe8bea92d9bff3ccf008d46bd64212d689123273c99d0b0faaaadd34f0e1d85e22ee757c9 SHA512 b05cec806c2c8fc410bf9c7a30e3ad1d9f1c06fd2d501a7e5434010f6bb38722aac5b64de9b4285d2c71cacbf6b2f3c758685da5a70c05621df52879eb5148c2
diff --git a/net-firewall/firehol/firehol-3.1.7.ebuild b/net-firewall/firehol/firehol-3.1.7.ebuild
new file mode 100644
index 00000000000..3d7828d589f
--- /dev/null
+++ b/net-firewall/firehol/firehol-3.1.7.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+DESCRIPTION="iptables firewall generator"
+HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
+SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc ipv6 ipset"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+
+RDEPEND="net-firewall/iptables
+ sys-apps/iproute2[-minimal,ipv6?]
+ sys-apps/kmod[tools]
+ net-misc/iputils[ipv6?]
+ net-misc/iprange
+ net-analyzer/traceroute
+ app-arch/gzip
+ ipset? (
+ net-firewall/ipset
+ )"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ local CONFIG_CHECK=" \
+ ~IP_NF_FILTER \
+ ~IP_NF_IPTABLES \
+ ~IP_NF_MANGLE \
+ ~IP_NF_TARGET_MASQUERADE
+ ~IP_NF_TARGET_REDIRECT \
+ ~IP_NF_TARGET_REJECT \
+ ~NETFILTER_XT_CONNMARK \
+ ~NETFILTER_XT_MATCH_HELPER \
+ ~NETFILTER_XT_MATCH_LIMIT \
+ ~NETFILTER_XT_MATCH_OWNER \
+ ~NETFILTER_XT_MATCH_STATE \
+ ~NF_CONNTRACK \
+ ~NF_CONNTRACK_IPV4 \
+ ~NF_CONNTRACK_MARK \
+ ~NF_NAT \
+ ~NF_NAT_FTP \
+ ~NF_NAT_IRC \
+ "
+ linux-info_pkg_setup
+}
+
+src_configure() {
+ econf \
+ --disable-vnetbuild \
+ $(use_enable ipset update-ipsets) \
+ $(use_enable doc) \
+ $(use_enable ipv6)
+}
+
+src_install() {
+ default
+
+ newconfd "${FILESDIR}"/firehol.confd firehol
+ newinitd "${FILESDIR}"/firehol.initd firehol
+ newconfd "${FILESDIR}"/fireqos.confd fireqos
+ newinitd "${FILESDIR}"/fireqos.initd fireqos
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2022-07-21 22:39 James Le Cuirot
0 siblings, 0 replies; 39+ messages in thread
From: James Le Cuirot @ 2022-07-21 22:39 UTC (permalink / raw
To: gentoo-commits
commit: 28f7686eec572ee9d5e6c956b68c4582197f763d
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 22:39:21 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 22:39:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f7686e
net-firewall/firehol: Install systemd service units, EAPI 8
Closes: https://bugs.gentoo.org/856964
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
.../firehol/{firehol-3.1.7-r1.ebuild => firehol-3.1.7-r2.ebuild} | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.7-r1.ebuild b/net-firewall/firehol/firehol-3.1.7-r2.ebuild
similarity index 94%
rename from net-firewall/firehol/firehol-3.1.7-r1.ebuild
rename to net-firewall/firehol/firehol-3.1.7-r2.ebuild
index 1432243602f9..79ef83977169 100644
--- a/net-firewall/firehol/firehol-3.1.7-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.7-r2.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit linux-info
+inherit linux-info systemd
DESCRIPTION="iptables firewall generator"
HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol"
@@ -64,4 +64,6 @@ src_install() {
newinitd "${FILESDIR}"/firehol.initd firehol
newconfd "${FILESDIR}"/fireqos.confd fireqos
newinitd "${FILESDIR}"/fireqos.initd fireqos
+
+ systemd_dounit contrib/fire{hol,qos}.service
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/
@ 2022-11-08 22:44 James Le Cuirot
0 siblings, 0 replies; 39+ messages in thread
From: James Le Cuirot @ 2022-11-08 22:44 UTC (permalink / raw
To: gentoo-commits
commit: 659557f22c2738833fb3a588880a2b0e53a6679b
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 8 22:43:40 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 8 22:43:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659557f2
net-firewall/firehol: Set bash and iprange versions to aid cross-compiling
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
net-firewall/firehol/firehol-3.1.7-r2.ebuild | 25 +++++++++++++++++--------
1 file changed, 17 insertions(+), 8 deletions(-)
diff --git a/net-firewall/firehol/firehol-3.1.7-r2.ebuild b/net-firewall/firehol/firehol-3.1.7-r2.ebuild
index 79ef83977169..f750bfab3a7b 100644
--- a/net-firewall/firehol/firehol-3.1.7-r2.ebuild
+++ b/net-firewall/firehol/firehol-3.1.7-r2.ebuild
@@ -14,16 +14,22 @@ SLOT="0"
IUSE="doc ipv6 ipset"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-RDEPEND="net-firewall/iptables
+# Set the dependency versions to aid cross-compiling. Keep them at their
+# minimums as the configure script merely checks whether they are sufficient.
+MY_BASH_VERSION=4.0
+MY_IPRANGE_VERSION=1.0.2
+
+RDEPEND="
+ app-arch/gzip
+ >=app-shells/bash-${MY_BASH_VERSION}:0
+ net-analyzer/traceroute
+ net-firewall/iptables
+ >=net-misc/iprange-${MY_IPRANGE_VERSION}:0
+ net-misc/iputils[ipv6(+)?]
sys-apps/iproute2[-minimal,ipv6(+)?]
sys-apps/kmod[tools]
- net-misc/iputils[ipv6(+)?]
- net-misc/iprange
- net-analyzer/traceroute
- app-arch/gzip
- ipset? (
- net-firewall/ipset
- )"
+ ipset? ( net-firewall/ipset )
+"
DEPEND="${RDEPEND}"
pkg_setup() {
@@ -50,6 +56,9 @@ pkg_setup() {
}
src_configure() {
+ # This erroneously checks for BASH_VERSION_PATH rather than BASH_VERSION.
+ BASH_VERSION_PATH=${MY_BASH_VERSION} \
+ IPRANGE_VERSION=${MY_IPRANGE_VERSION} \
econf \
--disable-vnetbuild \
$(use_enable ipset update-ipsets) \
^ permalink raw reply related [flat|nested] 39+ messages in thread
end of thread, other threads:[~2022-11-08 22:44 UTC | newest]
Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-05 19:28 [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/ Alon Bar-Lev
-- strict thread matches above, loose matches on Subject: below --
2022-11-08 22:44 James Le Cuirot
2022-07-21 22:39 James Le Cuirot
2021-01-02 21:00 James Le Cuirot
2020-11-20 13:44 Sam James
2020-08-08 14:16 Mikle Kolyada
2019-11-30 9:58 James Le Cuirot
2019-04-19 20:02 Alon Bar-Lev
2019-03-30 19:05 Mikle Kolyada
2019-03-25 21:15 Mikle Kolyada
2018-12-28 20:09 Alon Bar-Lev
2018-12-28 19:17 Alon Bar-Lev
2018-11-25 10:21 Mikle Kolyada
2018-09-28 0:18 Alon Bar-Lev
2018-08-18 4:51 Alon Bar-Lev
2017-12-16 10:31 Tobias Klausmann
2017-11-30 20:40 Thomas Deutschmann
2017-09-08 19:39 Alon Bar-Lev
2017-08-31 14:34 Tim Harder
2017-03-25 18:11 Alon Bar-Lev
2017-03-16 10:59 Michael Weber
2017-03-16 10:15 Michael Weber
2017-03-16 10:13 Michael Weber
2017-03-10 16:37 Alon Bar-Lev
2017-03-05 0:34 Alon Bar-Lev
2017-02-17 20:52 Alon Bar-Lev
2016-05-20 11:53 Alon Bar-Lev
2016-04-05 22:37 Anthony G. Basile
2016-01-22 12:15 Alon Bar-Lev
2016-01-22 12:02 Alon Bar-Lev
2016-01-21 21:01 Alon Bar-Lev
2016-01-21 20:46 Alon Bar-Lev
2016-01-21 20:04 Alon Bar-Lev
2015-10-25 17:48 Alon Bar-Lev
2015-10-25 11:07 Mikle Kolyada
2015-10-22 7:54 Alon Bar-Lev
2015-10-19 9:27 Agostino Sarubbo
2015-10-12 16:32 Alon Bar-Lev
2015-08-10 17:20 Alon Bar-Lev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox