Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package iptables for openSUSE:Factory checked in at 2023-01-21 19:10:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/iptables (Old) and /work/SRC/openSUSE:Factory/.iptables.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iptables" Sat Jan 21 19:10:02 2023 rev:80 rq:1059873 version:1.8.9 Changes: -------- --- /work/SRC/openSUSE:Factory/iptables/iptables.changes 2022-07-26 19:43:17.710274803 +0200 +++ /work/SRC/openSUSE:Factory/.iptables.new.32243/iptables.changes 2023-01-21 19:10:09.600818517 +0100 @@ -1,0 +2,12 @@ +Thu Jan 12 22:58:50 UTC 2023 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 1.8.9 + * arptables-nft: Support --exact flag + * Support more chunk types in the "sctp" extension + * Print `--` in ip6tables' "opt" column for consistency with + iptables + * More verbose error messages if iptables-nft-restore fails + * Support `-p Length` with ebtables-nft, + needed for 802_3 extension. + +------------------------------------------------------------------- Old: ---- iptables-1.8.8.tar.bz2 iptables-1.8.8.tar.bz2.sig New: ---- iptables-1.8.9.tar.xz iptables-1.8.9.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iptables.spec ++++++ --- /var/tmp/diff_new_pack.eIYEbR/_old 2023-01-21 19:10:10.168821760 +0100 +++ /var/tmp/diff_new_pack.eIYEbR/_new 2023-01-21 19:10:10.176821805 +0100 @@ -1,7 +1,7 @@ # # spec file for package iptables # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,15 +23,15 @@ %endif Name: iptables -Version: 1.8.8 +Version: 1.8.9 Release: 0 Summary: IP packet filter administration utilities License: Artistic-2.0 AND GPL-2.0-only Group: Productivity/Networking/Security URL: https://netfilter.org/projects/iptables/ #Git-Clone: git://git.netfilter.org/iptables -Source: https://netfilter.org/projects/iptables/files/%name-%version.tar.bz2 -Source2: https://netfilter.org/projects/iptables/files/%name-%version.tar.bz2.sig +Source: https://netfilter.org/projects/iptables/files/%name-%version.tar.xz +Source2: https://netfilter.org/projects/iptables/files/%name-%version.tar.xz.sig Source3: %name.keyring Source4: baselibs.conf Patch1: iptables-batch.patch @@ -194,6 +194,7 @@ install -m0755 iptables/iptables-apply "$b/%_sbindir/" rm -f "$b/%_libdir"/*.la rm -f "$b/%_sysconfdir/ethertypes" # provided by netcfg +rm -f "$b/%_sysconfdir/xtables.conf" # packaging bug for i in iptables iptables-restore iptables-save ip6tables ip6tables-restore \ ip6tables-save arptables arptables-restore arptables-save ebtables \ @@ -328,6 +329,7 @@ %_sbindir/ip6tables-*translate* %_sbindir/arptables-nft* %_sbindir/ebtables-nft* +%_sbindir/ebtables-*translate* %_sbindir/xtables* %_mandir/man1/*tables* %_mandir/man8/*tables* ++++++ iptables-batch.patch ++++++ --- /var/tmp/diff_new_pack.eIYEbR/_old 2023-01-21 19:10:10.224822079 +0100 +++ /var/tmp/diff_new_pack.eIYEbR/_new 2023-01-21 19:10:10.228822102 +0100 @@ -3,14 +3,14 @@ iptables/iptables-batch.c | 468 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 477 insertions(+) -Index: iptables-1.8.6/iptables/Makefile.am +Index: iptables-1.8.9/iptables/Makefile.am =================================================================== ---- iptables-1.8.6.orig/iptables/Makefile.am -+++ iptables-1.8.6/iptables/Makefile.am -@@ -138,3 +138,12 @@ uninstall-hook: - ); \ - ( cd "$$dir" && rm -f ip6tables-apply ); \ +--- iptables-1.8.9.orig/iptables/Makefile.am ++++ iptables-1.8.9/iptables/Makefile.am +@@ -147,3 +147,12 @@ uninstall-hook: } + + EXTRA_DIST = tests + +iptables_legacy_batch_SOURCES = iptables-batch.c iptables.c xshared.c +iptables_legacy_batch_LDFLAGS = ${xtables_legacy_multi_LDFLAGS} @@ -20,10 +20,10 @@ +ip6tables_legacy_batch_LDFLAGS = ${xtables_legacy_multi_LDFLAGS} +ip6tables_legacy_batch_LDADD = ${xtables_legacy_multi_LDADD} +sbin_PROGRAMS += iptables-legacy-batch ip6tables-legacy-batch -Index: iptables-1.8.6/iptables/iptables-batch.c +Index: iptables-1.8.9/iptables/iptables-batch.c =================================================================== --- /dev/null -+++ iptables-1.8.6/iptables/iptables-batch.c ++++ iptables-1.8.9/iptables/iptables-batch.c @@ -0,0 +1,468 @@ +/* + * Author: Ludwig Nussel <ludwig.nus...@suse.de>