Hello community,

here is the log from the commit of package quilt for openSUSE:Factory checked 
in at 2013-10-01 08:34:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/quilt (Old)
 and      /work/SRC/openSUSE:Factory/.quilt.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "quilt"

Changes:
--------
--- /work/SRC/openSUSE:Factory/quilt/quilt.changes      2013-04-18 
10:43:14.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.quilt.new/quilt.changes 2013-10-01 
08:34:58.000000000 +0200
@@ -1,0 +2,10 @@
+Mon Sep 30 14:36:03 CEST 2013 - jdelv...@suse.de
+
+- quilt-makefile-fix-find-perm-usage.patch: Makefile: Fix "find
+  -perm" usage.
+- quilt-makefile-fix-configure-with-xargs.patch: Makefile: Fix
+  support for "./configure --with-xargs".
+- quilt-find-quoting-style.patch: delete.test: Cope with new
+  quoting style in find error message.
+
+-------------------------------------------------------------------

New:
----
  quilt-find-quoting-style.patch
  quilt-makefile-fix-configure-with-xargs.patch
  quilt-makefile-fix-find-perm-usage.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ quilt.spec ++++++
--- /var/tmp/diff_new_pack.t8GIL9/_old  2013-10-01 08:34:58.000000000 +0200
+++ /var/tmp/diff_new_pack.t8GIL9/_new  2013-10-01 08:34:58.000000000 +0200
@@ -50,6 +50,9 @@
 Patch10:        quilt-setup-04-handle-zip-files.patch
 Patch11:        quilt-setup-05-fix-check_for_existing_files.patch
 Patch12:        quilt-setup-06-check-for-directories-too.patch
+Patch13:        quilt-makefile-fix-find-perm-usage.patch
+Patch14:        quilt-makefile-fix-configure-with-xargs.patch
+Patch15:        quilt-find-quoting-style.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 Recommends:     procmail
@@ -78,6 +81,9 @@
 %patch10 -p1
 %patch11 -p1
 %patch12 -p1
+%patch13 -p1
+%patch14 -p1
+%patch15 -p1
 
 %build
 # --with-rpmbuild=/usr/lib/rpm/rpmb:

++++++ quilt-find-quoting-style.patch ++++++
From: Jean Delvare <jdelv...@suse.de>
Date: Mon, 30 Sep 2013 12:21:16 +0000
Subject: delete.test: Cope with new quoting style in find error message
Git-commit: ab6c69664664ec66b097aeba113288f341f34e5d

---
 test/delete.test |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/test/delete.test
+++ b/test/delete.test
@@ -77,7 +77,7 @@ Test the delete command.
 
        $ quilt delete "test3"
        > Removing patch %{P}test3
-       >~ find: `?\./dir'?: Permission denied
+       >~ .*find: [`']?\./dir'?: Permission denied
 
        $ chmod a+rx .pc/test3/dir
 
++++++ quilt-makefile-fix-configure-with-xargs.patch ++++++
From: Jean Delvare <jdelv...@suse.de>
Date: Mon, 30 Sep 2013 12:22:45 +0000
Subject: Makefile.in: Fix support for configure --with-xargs
Git-commit: 4e09264d3cbbfc49761a36635f1662b9d38358eb

---
 Makefile.in |    1 +
 1 file changed, 1 insertion(+)

--- a/Makefile.in
+++ b/Makefile.in
@@ -30,6 +30,7 @@ TR :=         @TR@
 SED :=         @SED@
 AWK :=         @AWK@
 FIND :=                @FIND@
+XARGS :=       @XARGS@
 DIFF :=                @DIFF@
 PATCH :=       @PATCH@
 MKTEMP :=      @MKTEMP@
++++++ quilt-makefile-fix-find-perm-usage.patch ++++++
From: Jean Delvare <jdelv...@suse.de>
Date: Fri, 24 May 2013 13:13:55 +0000
Subject: Makefile: Fix "find -perm" usage
Git-commit: bc340b709b866f50273d4ef125e1ae3cbc44c6ac

Support for obsolete find -perm +MODE syntax was removed from GNU
findutils by commit
v4.5.10-144-g90f0c5d24153ad3327edd6f2249fc95a5cfb72e0.

Reported by Dmitry V. Levin.

Also -maxdepth is not portable and not needed so drop it.
---
 Makefile.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/Makefile.in
+++ b/Makefile.in
@@ -277,7 +277,7 @@ Makefile : Makefile.in configure
        @echo "Please run ./configure"
        @false
 
-compat_leftover := $(filter-out $(COMPAT),$(shell $(FIND) compat -maxdepth 1 
-type f -perm +111))
+compat_leftover := $(filter-out $(COMPAT),$(shell $(FIND) compat -type f -perm 
-0100))
 
 .PHONY :: compat
 compat :: $(COMPAT)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to