Hello community,

here is the log from the commit of package daps for openSUSE:Factory checked in 
at 2020-04-08 19:54:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/daps (Old)
 and      /work/SRC/openSUSE:Factory/.daps.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "daps"

Wed Apr  8 19:54:23 2020 rev:44 rq:791908 version:3.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/daps/daps.changes        2020-01-10 
18:39:47.259477360 +0100
+++ /work/SRC/openSUSE:Factory/.daps.new.3248/daps.changes      2020-04-08 
19:54:23.709023084 +0200
@@ -1,0 +2,5 @@
+Thu Apr  2 15:32:20 UTC 2020 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Add daps-gnu-make-4.3.patch: Fix compatibility with GNU Make 4.3.
+
+-------------------------------------------------------------------

New:
----
  daps-gnu-make-4.3.patch

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

Other differences:
------------------
++++++ daps.spec ++++++
--- /var/tmp/diff_new_pack.TxlSqf/_old  2020-04-08 19:54:24.601023736 +0200
+++ /var/tmp/diff_new_pack.TxlSqf/_new  2020-04-08 19:54:24.605023739 +0200
@@ -48,6 +48,7 @@
 Source0:        %{name}-%{version}.tar.bz2
 Source1:        %{name}.rpmlintrc
 Source2:        %{name}-fetch-source-git
+Patch0:         daps-gnu-make-4.3.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 BuildArch:      noarch
@@ -164,6 +165,7 @@
 #--------------------------------------------------------------------------
 %prep
 %setup -q -n %{name}
+%patch0 -p1
 #%%patch1 -p1
 
 # Correct shebang line as suggested in

++++++ daps-gnu-make-4.3.patch ++++++
>From 81f7829d0b8d115214d46e9093f3c157f9fd046b Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <dims...@opensuse.org>
Date: Mon, 30 Mar 2020 17:44:08 +0200
Subject: [PATCH] Fix creation of $SPACE with GNU Make 4.3

GNU Make 4.3 has this incompatible change:
  * WARNING: Backward-incompatibility!
    Previously appending using '+=' to an empty variable would result in a
    value starting with a space
This is eactly what the code relied on to before.

https://bugzilla.opensuse.org/show_bug.cgi?id=1168051
---
 make/common_variables.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/make/common_variables.mk b/make/common_variables.mk
index 3eabc3a5..8fe07d16 100644
--- a/make/common_variables.mk
+++ b/make/common_variables.mk
@@ -46,8 +46,8 @@ endif
 # a space is needed, since it is not possible to replace a literal
 # space (same goes for comma)
 #
-SPACE :=
-SPACE +=
+empty :=
+SPACE := $(empty) $(empty)
 
 COMMA := ,
 


Reply via email to