Hello community, here is the log from the commit of package iptables for openSUSE:12.1:Update:Test checked in at 2011-12-29 16:01:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:12.1:Update:Test/iptables (Old) and /work/SRC/openSUSE:12.1:Update:Test/.iptables.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iptables", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:12.1:Update:Test/iptables/iptables.changes 2011-12-29 16:01:37.000000000 +0100 +++ /work/SRC/openSUSE:12.1:Update:Test/.iptables.new/iptables.changes 2011-12-29 16:01:37.000000000 +0100 @@ -1,0 +2,5 @@ +Wed Dec 28 09:52:03 UTC 2011 - [email protected] + +- iptables-apply-mktemp-fix.patch (bnc#730161) + +------------------------------------------------------------------- New: ---- iptables-apply-mktemp-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iptables.spec ++++++ --- /var/tmp/diff_new_pack.1Y8A6w/_old 2011-12-29 16:01:37.000000000 +0100 +++ /var/tmp/diff_new_pack.1Y8A6w/_new 2011-12-29 16:01:37.000000000 +0100 @@ -15,22 +15,21 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - - Name: iptables -License: GPLv2+ -Group: Productivity/Networking/Security Version: 1.4.12.1+16 -Release: 1 +Release: 0 %define xt_sover 7 Summary: IP Packet Filter Administration +License: GPL-2.0+ +Group: Productivity/Networking/Security #DL-URL: ftp://ftp.netfilter.org/pub/iptables/ #Git-Web: http://git.netfilter.org/ #Git-Clone: git://git.netfilter.org/iptables Source: %name-%version.tar.xz Patch1: iptables-batch.patch -URL: http://netfilter.org/ +Patch2: iptables-apply-mktemp-fix.patch +Url: http://netfilter.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} BuildRequires: sgmltool @@ -40,7 +39,10 @@ Provides: iptables-ipv6 = %version-%release Obsoletes: iptables-ipv6 < %version-%release %endif -BuildRequires: fdupes libnfnetlink-devel pkgconfig xz +BuildRequires: fdupes +BuildRequires: libnfnetlink-devel +BuildRequires: pkgconfig +BuildRequires: xz %description Iptables is used to set up, maintain, and inspect the tables of IP @@ -74,6 +76,7 @@ %setup -DTq %endif %patch -P 1 -p1 +%patch2 -p1 %build if [ ! -e configure ]; then ++++++ iptables-apply-mktemp-fix.patch ++++++ Index: iptables-1.4.12.1+16/iptables/iptables-apply =================================================================== --- iptables-1.4.12.1+16.orig/iptables/iptables-apply +++ iptables-1.4.12.1+16/iptables/iptables-apply @@ -111,7 +111,7 @@ if [[ ! -r "$FILE" ]]; then exit 2 fi -COMMANDS=(tempfile "$SAVE" "$RESTORE") +COMMANDS=(mktemp "$SAVE" "$RESTORE") for cmd in "${COMMANDS[@]}"; do if ! command -v $cmd >/dev/null; then @@ -122,7 +122,7 @@ done umask 0700 -TMPFILE=$(tempfile -p iptap) +TMPFILE=$(mktemp) trap "rm -f $TMPFILE" EXIT 1 2 3 4 5 6 7 8 10 11 12 13 14 15 if ! "$SAVE" >"$TMPFILE"; then -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
