Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package mingw64-cross-cmake for
openSUSE:Factory checked in at 2023-06-26 18:17:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mingw64-cross-cmake (Old)
and /work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mingw64-cross-cmake"
Mon Jun 26 18:17:15 2023 rev:3 rq:1095447 version:1.1.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/mingw64-cross-cmake/mingw64-cross-cmake.changes
2023-06-21 22:39:23.362201526 +0200
+++
/work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.15902/mingw64-cross-cmake.changes
2023-06-26 18:17:26.134828008 +0200
@@ -1,0 +2,8 @@
+Mon Jun 26 12:08:56 UTC 2023 - Ralf Habacker <[email protected]>
+
+- 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:
------------------
++++++ mingw64-cross-cmake.spec ++++++
--- /var/tmp/diff_new_pack.okOu05/_old 2023-06-26 18:17:26.762830798 +0200
+++ /var/tmp/diff_new_pack.okOu05/_new 2023-06-26 18:17:26.766830815 +0200
@@ -16,7 +16,7 @@
#
Name: mingw64-cross-cmake
-Version: 1.1.1
+Version: 1.1.2
Release: 0
Summary: Cross build support for CMake
License: BSD-3-Clause
++++++ macros.mingw64-cmake ++++++
--- /var/tmp/diff_new_pack.okOu05/_old 2023-06-26 18:17:26.802830976 +0200
+++ /var/tmp/diff_new_pack.okOu05/_new 2023-06-26 18:17:26.802830976 +0200
@@ -22,17 +22,18 @@
#
%_mingw64_cmake %{_mingw64_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 \