Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/firewalld/
Date: Thu, 13 May 2021 20:26:33
Message-Id: 1620937583.d458e1c111772ab50f57bc817dc43a1e65dcb82f.tamiko@gentoo
1 commit: d458e1c111772ab50f57bc817dc43a1e65dcb82f
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 13 20:25:37 2021 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Thu May 13 20:26:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d458e1c1
7
8 net-firewall/firewalld: version bump to 0.9.3
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 net-firewall/firewalld/Manifest | 1 +
14 net-firewall/firewalld/firewalld-0.9.3.ebuild | 117 ++++++++++++++++++++++++++
15 2 files changed, 118 insertions(+)
16
17 diff --git a/net-firewall/firewalld/Manifest b/net-firewall/firewalld/Manifest
18 index d30f9b0bc22..f695b67b7c1 100644
19 --- a/net-firewall/firewalld/Manifest
20 +++ b/net-firewall/firewalld/Manifest
21 @@ -1,3 +1,4 @@
22 DIST firewalld-0.7.1.tar.gz 2326020 BLAKE2B 1ab435bfd97608ce246657a24daebe6ca83f72560a627c702e940de64bf4fb34f26ebe9abf62468972fd8cd9394c5e885acd6882ec3cad112dfe62bca3905c7a SHA512 6be842d4c2849f56fc0e6c13219aed7d767635a3b190ef41f1516cecf51de71ad9af77ccc96b699d11bed56407abf9837cdbd0cfbf93ab716b5de5e4c2f94c68
23 DIST firewalld-0.7.3.tar.gz 1247590 BLAKE2B 80b34749ab47fa3f2733c6c2fe6dec9483b38baa3485c91875888ecce4bacc16a05e69d5734aaed017408ec2ba8b33155aa0c08e93b1f8eac5c6708682edf238 SHA512 49ab1403b29b215ef69d54baf9060826917ab2a6d632f0a53b458170576639e74580e4399e5c78a74bf12a4999479db86aadacbc17c749ab25e9de8ed686146f
24 DIST firewalld-0.9.1.tar.gz 1335885 BLAKE2B 0952039f1f50d6395921bea5ad031c5d21d9be04c5d0b09074f9fce76c29a1ab5acf23f0ee8442ae0c2a4e12e28a42edae40f9b536b007cf747c4eab60e43a04 SHA512 aa29fb8926285d6cc7aff318921cf84cacd7c3e4cecacd9b48bf8b5e16502ceedd8ec6cd78546d2373d084230277e0f43c1e655441eda76fe898960d6f2d46b6
25 +DIST firewalld-0.9.3.tar.gz 1309371 BLAKE2B 78a86f9c14ed8cc2497f3b79e4be627a28dcdcd4e8117438cb24142643bd16dc624196a80ce2c9f81c63f745c1b1430b2e8c2f3f1061f98fd4fa58f6227def81 SHA512 6ae45652225a3b983c0f67307208df171cf4794da5873a84b4a827753b8d93736f0538e06d31cd8177446827691886a58a493b6be1dcf6efd1a550f8886522f4
26
27 diff --git a/net-firewall/firewalld/firewalld-0.9.3.ebuild b/net-firewall/firewalld/firewalld-0.9.3.ebuild
28 new file mode 100644
29 index 00000000000..03a747cb130
30 --- /dev/null
31 +++ b/net-firewall/firewalld/firewalld-0.9.3.ebuild
32 @@ -0,0 +1,117 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{7,8,9} )
39 +inherit autotools bash-completion-r1 gnome2-utils l10n linux-info python-single-r1 systemd xdg-utils
40 +
41 +DESCRIPTION="A firewall daemon with D-BUS interface providing a dynamic firewall"
42 +HOMEPAGE="http://www.firewalld.org/"
43 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2+"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
48 +IUSE="gui +nftables +iptables"
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +RDEPEND="${PYTHON_DEPS}
52 + !!net-firewall/gshield
53 + nftables? ( net-firewall/nftables[python,json] )
54 + iptables? (
55 + net-firewall/iptables[ipv6]
56 + net-firewall/ebtables
57 + net-firewall/ipset
58 + nftables? ( net-firewall/nftables[xtables(+)] )
59 + )
60 + || ( >=sys-apps/openrc-0.11.5 sys-apps/systemd )
61 + $(python_gen_cond_dep '
62 + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
63 + dev-python/decorator[${PYTHON_MULTI_USEDEP}]
64 + >=dev-python/python-slip-0.2.7[dbus,${PYTHON_MULTI_USEDEP}]
65 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
66 + gui? (
67 + x11-libs/gtk+:3
68 + dev-python/PyQt5[gui,widgets,${PYTHON_MULTI_USEDEP}]
69 + )
70 + ')"
71 +
72 +DEPEND="${RDEPEND}
73 + dev-libs/glib:2
74 + >=dev-util/intltool-0.35
75 + sys-devel/gettext"
76 +
77 +RESTRICT="test" # bug 650760
78 +
79 +PLOCALES="ar as bg bn_IN ca cs da de el en_GB en_US es et eu fi fr gl gu hi hu ia id it ja ka kn ko lt ml mr nl or pa pl pt pt_BR ru sk sq sr sr@latin sv ta te tr uk zh_CN zh_TW"
80 +
81 +pkg_setup() {
82 + local CONFIG_CHECK="~NF_CONNTRACK ~NETFILTER_XT_MATCH_CONNTRACK"
83 +
84 + # kernel >= 4.19 has unified a NF_CONNTRACK module, bug 692944
85 + if kernel_is -lt 4 19; then
86 + CONFIG_CHECK="${CONFIG_CHECK} ~NF_CONNTRACK_IPV4 ~NF_CONNTRACK_IPV6"
87 + fi
88 +
89 + linux-info_pkg_setup
90 +}
91 +
92 +src_prepare() {
93 + default
94 + eautoreconf
95 +
96 + l10n_find_plocales_changes "po" "" ".po"
97 + l10n_get_locales | sed -e 's/ /\n/g' > po/LINGUAS
98 +}
99 +
100 +src_configure() {
101 + python_setup
102 +
103 + local econf_args=(
104 + --enable-systemd
105 + $(use_with iptables iptables "${EPREFIX}/sbin/iptables")
106 + $(use_with iptables iptables_restore "${EPREFIX}/sbin/iptables-restore")
107 + $(use_with iptables ip6tables "${EPREFIX}/sbin/ip6tables")
108 + $(use_with iptables ip6tables_restore "${EPREFIX}/sbin/ip6tables-restore")
109 + $(use_with iptables ebtables "${EPREFIX}/sbin/ebtables")
110 + $(use_with iptables ebtables_restore "${EPREFIX}/sbin/ebtables-restore")
111 + $(use_with iptables ipset "${EPREFIX}/usr/sbin/ipset")
112 + --with-systemd-unitdir="$(systemd_get_systemunitdir)"
113 + --with-bashcompletiondir="$(get_bashcompdir)"
114 + )
115 + econf "${econf_args[@]}"
116 +}
117 +
118 +src_install() {
119 + default
120 + python_optimize
121 +
122 + # Get rid of junk
123 + rm -rf "${D}/etc/sysconfig/" || die
124 +
125 + # For non-gui installs we need to remove GUI bits
126 + if ! use gui; then
127 + rm -rf "${D}/etc/xdg/autostart" || die
128 + rm -f "${D}/usr/bin/firewall-applet" || die
129 + rm -f "${D}/usr/bin/firewall-config" || die
130 + rm -rf "${D}/usr/share/applications" || die
131 + rm -rf "${D}/usr/share/icons" || die
132 + fi
133 +
134 + newinitd "${FILESDIR}"/firewalld.init firewalld
135 +}
136 +
137 +pkg_preinst() {
138 + gnome2_schemas_savelist
139 +}
140 +
141 +pkg_postinst() {
142 + xdg_icon_cache_update
143 + gnome2_schemas_update
144 +}
145 +
146 +pkg_postrm() {
147 + xdg_icon_cache_update
148 + gnome2_schemas_update
149 +}