Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mingw32-cross-cmake for 
openSUSE:Factory checked in at 2023-06-26 18:17:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mingw32-cross-cmake (Old)
 and      /work/SRC/openSUSE:Factory/.mingw32-cross-cmake.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mingw32-cross-cmake"

Mon Jun 26 18:17:15 2023 rev:4 rq:1095446 version:1.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/mingw32-cross-cmake/mingw32-cross-cmake.changes  
2023-06-16 16:54:07.145447745 +0200
+++ 
/work/SRC/openSUSE:Factory/.mingw32-cross-cmake.new.15902/mingw32-cross-cmake.changes
       2023-06-26 18:17:25.206823885 +0200
@@ -1,0 +2,8 @@
+Mon Jun 26 12:08:56 UTC 2023 - Ralf Habacker <ralf.habac...@freenet.de>
+
+- Update to version 1.1.2
+  * Fixed problems with parsing arguments - it turned out that the
+    previously used for loop did not work in some environments
+    (see https://gitlab.freedesktop.org/dbus/dbus/-/issues/464).
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ mingw32-cross-cmake.spec ++++++
--- /var/tmp/diff_new_pack.KFwVdd/_old  2023-06-26 18:17:25.886826905 +0200
+++ /var/tmp/diff_new_pack.KFwVdd/_new  2023-06-26 18:17:25.894826941 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           mingw32-cross-cmake
-Version:        1.1.1
+Version:        1.1.2
 Release:        0
 Summary:        Cross build support for CMake
 License:        BSD-3-Clause

++++++ macros.mingw32-cmake ++++++
--- /var/tmp/diff_new_pack.KFwVdd/_old  2023-06-26 18:17:25.926827084 +0200
+++ /var/tmp/diff_new_pack.KFwVdd/_new  2023-06-26 18:17:25.930827101 +0200
@@ -22,17 +22,18 @@
 #
 %_mingw32_cmake %{_mingw32_env} ; \
     opts="" \
-    for i in "$@"; do  \
-        if test "$i" == "-S"; then \
+    while (( "$#" )); do  \
+        if test "$1" == "-S"; then \
             shift \
-            sdir=$i \
+            sdir=$1 \
             shift \
-        elif test "$i" == "-B"; then \
+        elif test "$1" == "-B"; then \
             shift \
-            bdir=$i \
+            bdir=$1 \
             shift \
         else \
-            opts="$opts $i" \
+            opts="$opts $1" \
+            shift \
         fi \
     done \
     if test -z "$bdir"; then \

Reply via email to