Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/
Date: Wed, 02 May 2018 13:57:55
Message-Id: 1525269458.11fb65ce4431b20147faaf94a4969d79a5539493.polynomial-c@gentoo
1 commit: 11fb65ce4431b20147faaf94a4969d79a5539493
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 2 13:56:40 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed May 2 13:57:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11fb65ce
7
8 net-firewall/nftables: Bump to version 0.8.4
9
10 Closes: https://bugs.gentoo.org/654604
11 Package-Manager: Portage-2.3.33, Repoman-2.3.9
12
13 net-firewall/nftables/Manifest | 1 +
14 net-firewall/nftables/nftables-0.8.4.ebuild | 83 +++++++++++++++++++++++++++++
15 2 files changed, 84 insertions(+)
16
17 diff --git a/net-firewall/nftables/Manifest b/net-firewall/nftables/Manifest
18 index 5e96e55431c..a1e87ccca28 100644
19 --- a/net-firewall/nftables/Manifest
20 +++ b/net-firewall/nftables/Manifest
21 @@ -1,3 +1,4 @@
22 DIST nftables-0.8.2.tar.gz 332736 BLAKE2B 9730735a7112a80e257ee2dc4f7f957b6d62964d5bbf85bbed8d375e07ef86021f21f027e889b913bc5862ccda57942a4411fda7e642c949d1fbf37e640e5b5a SHA512 cc97937014c65bb2489759ac2f603d354be8d3b60f6e0f0f8c2598dc59a66d8701f426c9f91bc4b17d0f574832835ffc38de054a554bda02e09c617fd2a8129b
23 DIST nftables-0.8.3.tar.gz 336963 BLAKE2B 534768559254d1c797ae84d97487dfca12bd2ab07170a8670778b46c7a6c854858b8ac670eedb0d0c443b457b4ad15d03c0a6b54ffa5ecde78ef538df71ec090 SHA512 cffea523fe2eee5937f30fe3d5215e5890dfc089d6f16d07090ef922e2782df53fe268d467734a1b6a604d7f16bca52ada3e48cce7699a59dd7a092294930332
24 +DIST nftables-0.8.4.tar.gz 353236 BLAKE2B 78d35880ea6cb9af2f9ed99134c930cb8bfa6290e2adee28e2147bab676ebef420db04e2eba6b8bc541c7afc040461c194e01e45f176cfbb663e04d6347bf119 SHA512 79cbf7098343cdb517a1790a72769738756eca499eb84aa7ad0b6c96314502f09ac4d03a712bfbe45fc1b8a730f2f56c6ef515e8d93d24f065a55e0594ab62bd
25 DIST nftables-0.8.tar.gz 327629 BLAKE2B a484c22ac010f68fc7458c12cabd0c35e474a0bf81fa4edbefba12d75b424898d38adb11a7fbb4542efbbb2d14be823701b3d9ced7b9fd669338366733fa169b SHA512 90ffebc338c121334ca42822793b6fdeff48390e755c690308919de47064b53f9af735a2c2914e5255f1bddec90484599337d4cdd67f7a01a3956deefcef9fcb
26
27 diff --git a/net-firewall/nftables/nftables-0.8.4.ebuild b/net-firewall/nftables/nftables-0.8.4.ebuild
28 new file mode 100644
29 index 00000000000..cc5cb45fc15
30 --- /dev/null
31 +++ b/net-firewall/nftables/nftables-0.8.4.ebuild
32 @@ -0,0 +1,83 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit autotools linux-info systemd
39 +
40 +DESCRIPTION="Linux kernel (3.13+) firewall, NAT and packet mangling tools"
41 +HOMEPAGE="https://netfilter.org/projects/nftables/"
42 +SRC_URI="https://git.netfilter.org/nftables/snapshot/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ia64 ~x86"
47 +IUSE="debug doc +gmp +readline"
48 +
49 +RDEPEND=">=net-libs/libmnl-1.0.3:0=
50 + gmp? ( dev-libs/gmp:0= )
51 + readline? ( sys-libs/readline:0= )
52 + >=net-libs/libnftnl-1.1.0:0="
53 +
54 +DEPEND="${RDEPEND}
55 + >=app-text/docbook2X-0.8.8-r4
56 + doc? ( >=app-text/dblatex-0.3.7 )
57 + sys-devel/bison
58 + sys-devel/flex
59 + virtual/pkgconfig"
60 +
61 +S="${WORKDIR}/v${PV}"
62 +
63 +pkg_setup() {
64 + if kernel_is ge 3 13; then
65 + CONFIG_CHECK="~NF_TABLES"
66 + linux-info_pkg_setup
67 + else
68 + eerror "This package requires kernel version 3.13 or newer to work properly."
69 + fi
70 +}
71 +
72 +src_prepare() {
73 + default
74 + eautoreconf
75 +}
76 +
77 +src_configure() {
78 + local myeconfargs=(
79 + --sbindir="${EPREFIX}"/sbin
80 + $(use_enable doc pdf-doc)
81 + $(use_enable debug)
82 + $(use_with readline cli)
83 + $(use_with !gmp mini_gmp)
84 + )
85 + econf "${myeconfargs[@]}"
86 +}
87 +
88 +src_install() {
89 + default
90 +
91 + exeinto /usr/libexec/${PN}
92 + doexe "${FILESDIR}"/libexec/${PN}.sh
93 +
94 + newconfd "${FILESDIR}"/${PN}.confd ${PN}
95 + newinitd "${FILESDIR}"/${PN}.init ${PN}
96 + keepdir /var/lib/nftables
97 +
98 + systemd_dounit "${FILESDIR}"/systemd/${PN}-restore.service
99 + systemd_enable_service basic.target ${PN}-restore.service
100 +}
101 +
102 +pkg_postinst() {
103 + local save_file
104 + save_file="${EROOT%/}/var/lib/nftables/rules-save"
105 +
106 + # In order for the nftables-restore systemd service to start
107 + # the save_file must exist.
108 + if [[ ! -f ${save_file} ]]; then
109 + touch ${save_file}
110 + fi
111 +
112 + elog "If you are creating firewall rules before the next system restart "
113 + elog "the nftables-restore service must be manually started in order to "
114 + elog "save those rules on shutdown."
115 +}