Hello community,

here is the log from the commit of package libcxl for openSUSE:Factory checked 
in at 2020-06-17 14:51:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libcxl (Old)
 and      /work/SRC/openSUSE:Factory/.libcxl.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libcxl"

Wed Jun 17 14:51:26 2020 rev:8 rq:815272 version:1.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/libcxl/libcxl.changes    2018-06-02 
12:11:31.517360870 +0200
+++ /work/SRC/openSUSE:Factory/.libcxl.new.3606/libcxl.changes  2020-06-17 
14:52:02.557331514 +0200
@@ -1,0 +2,5 @@
+Fri Jun 12 16:03:43 UTC 2020 - Michel Normand <norm...@linux.vnet.ibm.com>
+
+- Add remove_2_backslashes_in_shell_call.patch
+
+-------------------------------------------------------------------

New:
----
  remove_2_backslashes_in_shell_call.patch

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

Other differences:
------------------
++++++ libcxl.spec ++++++
--- /var/tmp/diff_new_pack.Zkdq0t/_old  2020-06-17 14:52:08.241350975 +0200
+++ /var/tmp/diff_new_pack.Zkdq0t/_new  2020-06-17 14:52:08.241350975 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libcxl
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -23,8 +23,9 @@
 Summary:        Coherent accelerator interface
 License:        Apache-2.0
 Group:          Development/Libraries/C and C++
-Url:            https://github.com/ibm-capi/libcxl
+URL:            https://github.com/ibm-capi/libcxl
 Source:         %{name}-%{version}.tar.gz
+Patch1:         remove_2_backslashes_in_shell_call.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  glibc
 ExclusiveArch:  ppc64 ppc64le
@@ -68,6 +69,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 make CFLAGS="%{optflags} -fPIC" V=1

++++++ remove_2_backslashes_in_shell_call.patch ++++++
From: Michel Normand <norm...@linux.vnet.ibm.com>
Subject: remove 2 backslashes in shell call
Date: Fri, 12 Jun 2020 17:26:40 +0200

Remove 2 backslashes in shell call

To avoid make failure.
Seems to start failing in OBS hardware project
between 2020-04-05 and 2020-04-08

Signed-off-by: Michel Normand <norm...@linux.vnet.ibm.com>
---
 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: libcxl-1.7/Makefile
===================================================================
--- libcxl-1.7.orig/Makefile
+++ libcxl-1.7/Makefile
@@ -19,7 +19,7 @@ HAS_WGET = $(shell /bin/which wget > /de
 HAS_CURL = $(shell /bin/which curl > /dev/null 2>&1 && echo y || echo n)
 
 # Update this to test a single feature from the most recent header we require:
-CHECK_CXL_HEADER_IS_UP_TO_DATE = $(shell /bin/echo -e \\\#include $(1)\\\nint 
i = CXL_START_WORK_TID\; | \
+CHECK_CXL_HEADER_IS_UP_TO_DATE = $(shell /bin/echo -e \#include $(1)\\\nint i 
= CXL_START_WORK_TID\; | \
                  $(CC) $(CFLAGS) -Werror -x c -S -o /dev/null - >/dev/null 
2>&1 && echo y || echo n)
 
 check_cxl_header:

Reply via email to