forked from pool/nftables
- Update to new upstream release 0.8.5
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/nftables?expand=0&rev=34
This commit is contained in:
parent
78064882cb
commit
e1bc2e1fcd
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ef372ee4592b07852f4cac233584ead7cbd08fa3041b2d3ff3d3590c8d76769f
|
|
||||||
size 649791
|
|
Binary file not shown.
3
nftables-0.8.5.tar.bz2
Normal file
3
nftables-0.8.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8e9baf80a1c7f0e19e5b50e469bda4487793d839da45c75e8a20fadcbaeae323
|
||||||
|
size 663561
|
BIN
nftables-0.8.5.tar.bz2.sig
Normal file
BIN
nftables-0.8.5.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 11 07:30:10 UTC 2018 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 0.8.5
|
||||||
|
* support to add/insert a rule at a given index position
|
||||||
|
* meter statement now supports a configureable upper max size
|
||||||
|
* timeouts for sets can now be specified in milliseconds
|
||||||
|
* re-add iptables-like empty skeleton rulesets
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 2 06:08:00 UTC 2018 - jengelh@inai.de
|
Wed May 2 06:08:00 UTC 2018 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: nftables
|
Name: nftables
|
||||||
Version: 0.8.4
|
Version: 0.8.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Userspace utility to access the nf_tables packet filter
|
Summary: Userspace utility to access the nf_tables packet filter
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
@ -46,10 +46,29 @@ independently of, and thus parallel to, ip_tables, ip6_tables,
|
|||||||
arp_tables and ebtables. nftables is the corresponsing userspace
|
arp_tables and ebtables. nftables is the corresponsing userspace
|
||||||
frontend.
|
frontend.
|
||||||
|
|
||||||
nftables features native support for sets and dictionaries of
|
nftables features support for sets and dictionaries of arbitrary
|
||||||
arbitrary types, support for many different protocols, meta data
|
types, support for different protocols, meta data types, access to
|
||||||
types, connection tracking, NAT setup, logging, atomic incremental
|
connection tracking and NAT, logging, atomic incremental and full
|
||||||
and full ruleset updates.
|
ruleset updates.
|
||||||
|
|
||||||
|
%package -n libnftables0
|
||||||
|
Summary: nftables firewalling command interface
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n libnftables0
|
||||||
|
libnftables is the nftables command line interface placed into a
|
||||||
|
library.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for the nftables command line interface
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
Requires: libnftables0 = %version
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
libnftables is the nftables command line interface placed into a
|
||||||
|
library.
|
||||||
|
|
||||||
|
This package contains the header files for the library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -61,7 +80,8 @@ export PATH="$PATH:$PWD/bin"
|
|||||||
mkdir obj
|
mkdir obj
|
||||||
pushd obj/
|
pushd obj/
|
||||||
%define _configure ../configure
|
%define _configure ../configure
|
||||||
%configure --disable-silent-rules --disable-static --docdir="%_docdir/%name"
|
%configure --disable-silent-rules --disable-static --docdir="%_docdir/%name" \
|
||||||
|
--includedir="%_includedir/%name"
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
@ -69,17 +89,25 @@ popd
|
|||||||
b="%buildroot"
|
b="%buildroot"
|
||||||
%make_install -C obj
|
%make_install -C obj
|
||||||
rm -f "%buildroot/%_libdir"/*.la
|
rm -f "%buildroot/%_libdir"/*.la
|
||||||
# No headers, so it is quite pointless to have.
|
mkdir -p "$b/%_docdir/%name/examples"
|
||||||
rm -f "%buildroot/%_libdir"/*.so "%buildroot/%_libdir/pkgconfig"/*.pc
|
mv "$b/%_sysconfdir/nftables"/* "$b/%_docdir/%name/examples/"
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -n libnftables0 -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -n libnftables0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%_libdir/libnftables.so.*
|
%license COPYING
|
||||||
%_sbindir/nft
|
%_sbindir/nft
|
||||||
%_mandir/man8/nft*
|
%_mandir/man8/nft*
|
||||||
%doc COPYING
|
%_docdir/%name/
|
||||||
|
|
||||||
|
%files -n libnftables0
|
||||||
|
%_libdir/libnftables.so.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%_includedir/%name/
|
||||||
|
%_libdir/libnftables.so
|
||||||
|
%_libdir/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user