From: "Matthias Maier" <tamiko@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/firewalld/
Date: Tue, 31 May 2016 22:09:24 +0000 (UTC) [thread overview]
Message-ID: <1464732554.793b24acc338d0ee04959bced8ccea400f3b6cf1.tamiko@gentoo> (raw)
commit: 793b24acc338d0ee04959bced8ccea400f3b6cf1
Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 22:08:50 2016 +0000
Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Tue May 31 22:09:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793b24ac
net-firewall/firewalld: version bump to 0.42, multiple fixes
This commit also fixes
- bug #573648: incorrect path to iptables and family
- bug #581760: update homepage
- bug #566772: missing dependency dev-python/PyQt4
Package-Manager: portage-2.2.28
net-firewall/firewalld/Manifest | 1 +
net-firewall/firewalld/firewalld-0.4.2.ebuild | 106 ++++++++++++++++++++++++++
2 files changed, 107 insertions(+)
diff --git a/net-firewall/firewalld/Manifest b/net-firewall/firewalld/Manifest
index 3273e4a..d211a6f 100644
--- a/net-firewall/firewalld/Manifest
+++ b/net-firewall/firewalld/Manifest
@@ -1,3 +1,4 @@
DIST firewalld-0.3.13.tar.bz2 561948 SHA256 bca88cbce4290b6959b3c0eea560e7f19c7cf2f563caca585b7db5cd2fca8ac9 SHA512 987ea3e243f87b8ded2f9627b4efc9649a22d878d19b6b760ba1a281e9e7280abcda558feebe6bd30e1cd27e7277a8ec99a7da623c29f04ab290c1d7ac3d6789 WHIRLPOOL 795f63fa5415c37ea9c6a835860dca4eb71879d1d69fcd6fbb022d0c4b4ab507d74e0e17098724846bd97246be3a98fab1d25134df69c9ac25db2fb77508b159
DIST firewalld-0.3.14.2.tar.bz2 617592 SHA256 4b6c3e1deab41b6002b8dc25639e466085941c98a6c14a56bef4f621a5651567 SHA512 18d57ca4501101b217b0854851f6bf18b5bd036e1e143ef1b3c2b97ef06e0cbb7399249f4904576381c9839a82ff51296f44f4520c7b221568c9e4518e593d8c WHIRLPOOL a00930a63dab654f64caac0deb5c24a28f5aa7c9882ca40bde642b9b765c9eeb81a582dcf015885b989543d4c85f6da6dc792c6532a844d87110bda2aa9a598f
DIST firewalld-0.4.0.tar.bz2 603881 SHA256 858dca878c65853dec9044e3531a7ee4cd00a1766c268c354eb3480fe6e14914 SHA512 7ebb220e919619927c72faa04f1831ff679fdaecec3dd66ba58222a83c235f53acdaf7ec5bb6fe17d782e5e22a2525abbe27a3e6c7d4e32b16be15dd5bca2b7e WHIRLPOOL c189c26f49798f623699583a1a7470834491ca36d79a7fb5e9e6affb1f98c83edc362fcb6ecef46a25bf24b4bcd5336963e2ff4b2c643d0ed7cf876991711d8c
+DIST firewalld-0.4.2.tar.bz2 649581 SHA256 329e44b7d8de2400222d602d6c87c368865531ffe4004c392803dbe55717068e SHA512 4e1ad32878393beaec70f91f462785c99464ce3ec610b68b20862af2bbb631b1bcffd0e68cff441944d5e272d63051dc783a7f5c0256c7a191e2340dab8f29a2 WHIRLPOOL 01b8928d9b570b70a358c68a2220712b329aace9c52905cc5420e9881575660c44b395d1b5f1ffc2550d74bcf42939db0a66fa9bdc02cb1d95959ab7a50072cd
diff --git a/net-firewall/firewalld/firewalld-0.4.2.ebuild b/net-firewall/firewalld/firewalld-0.4.2.ebuild
new file mode 100644
index 0000000..112ffe5
--- /dev/null
+++ b/net-firewall/firewalld/firewalld-0.4.2.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+#BACKPORTS=
+
+inherit autotools eutils gnome2-utils python-r1 systemd multilib bash-completion-r1
+
+DESCRIPTION="A firewall daemon with D-BUS interface providing a dynamic firewall"
+HOMEPAGE="http://www.firewalld.org/"
+SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.bz2
+ ${BACKPORTS:+https://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gui"
+
+RDEPEND="${PYTHON_DEPS}
+ dev-python/dbus-python[${PYTHON_USEDEP}]
+ dev-python/decorator[${PYTHON_USEDEP}]
+ >=dev-python/python-slip-0.2.7[dbus,${PYTHON_USEDEP}]
+ dev-python/pygobject:3[${PYTHON_USEDEP}]
+ net-firewall/ebtables
+ net-firewall/iptables[ipv6]
+ || ( >=sys-apps/openrc-0.11.5 sys-apps/systemd )
+ gui? (
+ x11-libs/gtk+:3
+ dev-python/PyQt4[${PYTHON_USEDEP}]
+ )"
+DEPEND="${RDEPEND}
+ dev-libs/glib:2
+ >=dev-util/intltool-0.35
+ sys-devel/gettext"
+
+src_prepare() {
+ [[ -n ${BACKPORTS} ]] && \
+ EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
+ epatch
+
+ epatch_user
+ eautoreconf
+}
+
+src_configure() {
+ python_setup
+
+ econf \
+ --enable-systemd \
+ --with-iptables="${EROOT}/sbin/iptables" \
+ --with-ip6tables="${EROOT}/sbin/ip6tables" \
+ --with-iptables_restore="${EROOT}/sbin/iptables-restore" \
+ --with-ip6tables_restore="${EROOT}/sbin/ip6tables-restore" \
+ --with-ebtables="${EROOT}/sbin/ebtables" \
+ --with-ebtables_restore="${EROOT}/sbin/ebtables-restore" \
+ "$(systemd_with_unitdir 'systemd-unitdir')" \
+ --with-bashcompletiondir="$(get_bashcompdir)"
+}
+
+src_install() {
+ # manually split up the installation to avoid "file already exists" errors
+ emake -C config DESTDIR="${D}" install
+ emake -C po DESTDIR="${D}" install
+ emake -C shell-completion DESTDIR="${D}" install
+ emake -C doc DESTDIR="${D}" install
+
+ install_python() {
+ emake -C src DESTDIR="${D}" pythondir="$(python_get_sitedir)" install
+ python_optimize
+ }
+ python_foreach_impl install_python
+
+ python_replicate_script "${D}"/usr/bin/firewall-{offline-cmd,cmd,applet,config}
+ python_replicate_script "${D}/usr/sbin/firewalld"
+
+ # Get rid of junk
+ rm -rf "${D}/etc/rc.d/"
+ rm -rf "${D}/etc/sysconfig/"
+
+ # For non-gui installs we need to remove GUI bits
+ if ! use gui; then
+ rm -f "${D}/usr/bin/firewall-applet"
+ rm -f "${D}/usr/bin/firewall-config"
+ rm -rf "${D}/usr/share/icons"
+ rm -rf "${D}/usr/share/applications"
+ fi
+
+ newinitd "${FILESDIR}"/firewalld.init firewalld
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+ gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+ gnome2_schemas_update
+}
next reply other threads:[~2016-05-31 22:09 UTC|newest]
Thread overview: 193+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-31 22:09 Matthias Maier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-05 10:17 [gentoo-commits] repo/gentoo:master commit in: net-firewall/firewalld/ Sam James
2025-03-04 20:02 Sam James
2025-03-04 20:02 Sam James
2025-01-06 4:16 Sam James
2025-01-06 3:47 WANG Xuerui
2025-01-06 3:26 Sam James
2025-01-06 3:26 Sam James
2025-01-06 3:24 Sam James
2025-01-06 3:24 Sam James
2024-12-14 19:06 Arthur Zamarin
2024-12-10 15:22 Sam James
2024-12-07 11:06 Arthur Zamarin
2024-12-07 6:34 Arthur Zamarin
2024-12-07 6:34 Arthur Zamarin
2024-11-27 6:24 Sam James
2024-11-23 17:31 Andreas Sturmlechner
2024-10-29 2:45 Sam James
2024-10-05 11:12 Sam James
2024-10-05 1:14 Sam James
2024-09-18 8:10 Jakov Smolić
2024-08-26 11:51 Sam James
2024-07-24 11:53 Sam James
2024-07-21 2:17 Sam James
2024-07-21 0:31 Sam James
2024-07-21 0:31 Sam James
2024-06-24 17:34 Kenton Groombridge
2024-04-29 21:48 Sam James
2024-04-29 10:38 Joonas Niilola
2024-04-29 10:36 Joonas Niilola
2024-04-29 1:01 Sam James
2024-03-21 2:41 Sam James
2024-03-14 21:44 Sam James
2024-03-14 7:06 Joonas Niilola
2024-03-14 6:13 Sam James
2024-03-14 6:11 Sam James
2024-03-14 6:11 Sam James
2024-03-02 14:55 Arthur Zamarin
2024-03-02 13:59 Arthur Zamarin
2024-02-19 19:53 Dennis Lamm
2024-02-18 13:31 Sam James
2024-01-23 6:14 Sam James
2024-01-07 13:26 Sam James
2024-01-07 13:26 Sam James
2024-01-07 9:31 Sam James
2024-01-07 9:31 Sam James
2024-01-07 9:05 Sam James
2023-11-30 3:07 Sam James
2023-11-25 5:28 Sam James
2023-10-03 23:38 Sam James
2023-08-17 2:55 Sam James
2023-07-24 3:59 Sam James
2023-07-24 3:57 Sam James
2023-07-24 3:57 Sam James
2023-07-24 3:21 Sam James
2023-06-23 20:28 Sam James
2023-06-15 22:06 Sam James
2023-05-01 13:36 Sam James
2023-04-25 6:10 Jakov Smolić
2023-04-23 21:45 Sam James
2023-04-23 8:02 Sam James
2023-04-23 8:02 Sam James
2023-04-23 8:02 Sam James
2023-04-23 6:06 Sam James
2023-04-13 19:07 Sam James
2023-04-13 19:07 Sam James
2023-03-04 11:56 Arthur Zamarin
2023-03-04 7:47 Arthur Zamarin
2023-03-04 7:42 Arthur Zamarin
2023-03-04 6:27 Arthur Zamarin
2023-03-04 5:34 Arthur Zamarin
2023-01-13 17:32 Arthur Zamarin
2023-01-13 13:37 Arthur Zamarin
2023-01-13 12:17 Arthur Zamarin
2023-01-06 1:27 Sam James
2023-01-06 1:27 Sam James
2022-12-10 8:58 Joonas Niilola
2022-12-10 8:49 Joonas Niilola
2022-12-10 4:36 Sam James
2022-12-04 9:23 WANG Xuerui
2022-11-30 4:14 Sam James
2022-11-19 10:34 Arthur Zamarin
2022-11-19 10:34 Arthur Zamarin
2022-11-19 10:34 Arthur Zamarin
2022-10-31 16:41 Agostino Sarubbo
2022-10-31 16:38 Agostino Sarubbo
2022-10-29 5:47 Arthur Zamarin
2022-10-29 5:47 Arthur Zamarin
2022-10-29 5:47 Arthur Zamarin
2022-10-28 19:53 Sam James
2022-10-11 7:45 Joonas Niilola
2022-10-11 7:45 Joonas Niilola
2022-09-28 23:35 Sam James
2022-09-28 23:35 Sam James
2022-07-02 20:31 Sam James
2022-07-02 20:31 Sam James
2022-05-04 23:28 Sam James
2022-05-03 18:11 Arthur Zamarin
2022-05-03 17:52 Arthur Zamarin
2022-04-29 19:21 Sam James
2022-04-29 7:41 Joonas Niilola
2022-04-29 7:41 Joonas Niilola
2022-04-29 7:41 Joonas Niilola
2022-04-17 16:44 Sam James
2022-04-09 19:52 Arthur Zamarin
2022-04-05 2:37 Sam James
2022-04-04 18:28 Jakov Smolić
2022-04-04 6:37 Agostino Sarubbo
2022-04-04 6:37 Agostino Sarubbo
2022-03-26 21:21 Sam James
2022-03-12 12:31 Arthur Zamarin
2022-02-26 5:35 Sam James
2022-02-26 5:34 Sam James
2022-02-20 5:51 Sam James
2022-02-18 2:44 Sam James
2022-02-11 12:25 Sam James
2022-02-10 7:51 Sam James
2022-02-10 7:51 Sam James
2022-02-10 7:51 Sam James
2022-02-04 18:48 Sam James
2022-01-10 22:53 Sam James
2022-01-10 22:52 Sam James
2021-12-28 1:55 Sam James
2021-12-28 1:51 Sam James
2021-12-28 1:51 Sam James
2021-11-17 22:47 Sam James
2021-11-14 20:29 Sam James
2021-11-14 8:38 Sam James
2021-11-04 16:14 Sam James
2021-11-04 16:13 Sam James
2021-11-04 16:12 Sam James
2021-10-22 2:47 Sam James
2021-09-04 21:39 Sam James
2021-09-03 6:40 Agostino Sarubbo
2021-08-30 7:26 Agostino Sarubbo
2021-08-29 23:24 Sam James
2021-08-29 23:22 Sam James
2021-08-29 23:21 Sam James
2021-08-23 11:41 Marek Szuba
2021-07-04 14:03 Ulrich Müller
2021-06-03 7:19 Joonas Niilola
2021-05-16 12:45 Sam James
2021-05-14 18:23 Agostino Sarubbo
2021-05-13 20:26 Matthias Maier
2021-05-13 20:26 Matthias Maier
2021-03-30 16:17 Thomas Deutschmann
2021-02-22 7:12 Sam James
2020-12-04 5:37 Matthias Maier
2020-12-04 5:37 Matthias Maier
2020-08-20 13:20 Sam James
2020-08-01 23:20 Andreas Sturmlechner
2020-03-21 14:44 Matthias Maier
2020-03-18 11:04 Agostino Sarubbo
2020-03-18 11:00 Agostino Sarubbo
2020-03-18 0:12 Matthias Maier
2020-03-17 21:11 Matthias Maier
2020-03-17 21:08 Matthias Maier
2020-03-17 21:08 Matthias Maier
2020-03-17 21:08 Matthias Maier
2020-01-12 11:14 David Seifert
2019-12-28 21:32 Georgy Yakovlev
2019-07-28 19:39 Matthias Maier
2019-07-28 19:39 Matthias Maier
2019-07-28 19:39 Matthias Maier
2019-05-26 22:27 Thomas Deutschmann
2019-05-20 11:07 Mikle Kolyada
2019-04-08 20:21 Aaron Bauman
2018-10-18 16:09 Matt Turner
2018-10-18 16:07 Matt Turner
2018-10-18 6:06 Matt Turner
2018-05-29 12:32 Andreas Sturmlechner
2018-05-29 11:17 Thomas Deutschmann
2018-05-27 19:54 Andreas Sturmlechner
2018-03-17 10:45 Mikle Kolyada
2018-02-28 23:03 Andreas Sturmlechner
2018-02-28 22:21 Andreas Sturmlechner
2018-02-28 22:21 Andreas Sturmlechner
2018-02-28 22:21 Andreas Sturmlechner
2018-02-28 22:21 Andreas Sturmlechner
2018-02-12 17:05 Matthias Maier
2018-02-12 3:05 Matthias Maier
2017-07-12 14:43 Pacho Ramos
2017-07-08 13:19 Alexis Ballier
2016-09-29 8:40 Agostino Sarubbo
2016-08-18 14:53 Agostino Sarubbo
2016-08-17 13:52 Matthias Maier
2016-08-17 13:52 Matthias Maier
2016-07-28 2:31 Matthias Maier
2016-06-01 16:45 Matthias Maier
2016-06-01 16:45 Matthias Maier
2016-05-31 22:09 Matthias Maier
2016-05-31 22:09 Matthias Maier
2016-02-01 15:22 Doug Goldstein
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1464732554.793b24acc338d0ee04959bced8ccea400f3b6cf1.tamiko@gentoo \
--to=tamiko@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox