Hello community,

here is the log from the commit of package findutils for openSUSE:Factory 
checked in at 2019-12-02 11:26:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/findutils (Old)
 and      /work/SRC/openSUSE:Factory/.findutils.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "findutils"

Mon Dec  2 11:26:27 2019 rev:61 rq:750033 version:4.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/findutils/findutils.changes      2019-09-11 
10:24:33.783479719 +0200
+++ /work/SRC/openSUSE:Factory/.findutils.new.4691/findutils.changes    
2019-12-02 11:26:33.850689303 +0100
@@ -1,0 +2,5 @@
+Wed Nov 20 15:03:07 UTC 2019 - Martin Liška <mli...@suse.cz>
+
+- Add disable-null-ptr-test.patch in order to fix boo#1157342.
+
+-------------------------------------------------------------------

New:
----
  disable-null-ptr-test.patch

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

Other differences:
------------------
++++++ findutils.spec ++++++
--- /var/tmp/diff_new_pack.cRiM2w/_old  2019-12-02 11:26:35.726688593 +0100
+++ /var/tmp/diff_new_pack.cRiM2w/_new  2019-12-02 11:26:35.778688573 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package findutils
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           findutils
-Url:            http://www.gnu.org/software/findutils/
+URL:            http://www.gnu.org/software/findutils/
 Version:        4.7.0
 Release:        0
 Summary:        The GNU versions of find utilities (find and xargs)
@@ -44,6 +44,7 @@
 
 # adds a new option -xautofs to find to not descend into directories on autofs 
file systems
 Patch0:         findutils-xautofs.patch
+Patch1:         disable-null-ptr-test.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 # BuildRequire dejagnu for 'runtest' to execute all tests.
@@ -74,6 +75,7 @@
 %prep
 %setup -q
 %patch0
+%patch1 -p1
 
 %build
 %if 0%{?qemu_user_space_build}

++++++ disable-null-ptr-test.patch ++++++
diff --git a/gnulib-tests/test-canonicalize.c b/gnulib-tests/test-canonicalize.c
index 8d1ff86..0f3c5e3 100644
--- a/gnulib-tests/test-canonicalize.c
+++ b/gnulib-tests/test-canonicalize.c
@@ -71,10 +71,6 @@ main (void)
     ASSERT (result2 == NULL);
     ASSERT (errno == ENOENT);
     errno = 0;
-    result1 = canonicalize_file_name (null_ptr ());
-    ASSERT (result1 == NULL);
-    ASSERT (errno == EINVAL);
-    errno = 0;
     result2 = canonicalize_filename_mode (NULL, CAN_EXISTING);
     ASSERT (result2 == NULL);
     ASSERT (errno == EINVAL);


Reply via email to