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-16 16:53:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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"
Fri Jun 16 16:53:14 2023 rev:3 rq:1093144 version:1.1.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/mingw32-cross-cmake/mingw32-cross-cmake.changes
2023-06-14 16:31:23.679226206 +0200
+++
/work/SRC/openSUSE:Factory/.mingw32-cross-cmake.new.15902/mingw32-cross-cmake.changes
2023-06-16 16:54:07.145447745 +0200
@@ -1,0 +2,10 @@
+Wed Jun 14 14:39:59 UTC 2023 - Ralf Habacker <[email protected]>
+
+- Update to version 1.1.1
+ * The use of the parametric rpm macro was abandoned because it has
+ too many limitations. With rpm >= 4.17 it would be possible to
+ disable option processing (see
+ https://rpm-software-management.github.io/rpm/manual/macros.html),
+ but this is not possible with Leap, which uses rpm 4.14.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mingw32-cross-cmake.spec ++++++
--- /var/tmp/diff_new_pack.eGl4D5/_old 2023-06-16 16:54:08.157453763 +0200
+++ /var/tmp/diff_new_pack.eGl4D5/_new 2023-06-16 16:54:08.165453810 +0200
@@ -17,7 +17,7 @@
Name: mingw32-cross-cmake
-Version: 1.1.0
+Version: 1.1.1
Release: 0
Summary: Cross build support for CMake
License: BSD-3-Clause
++++++ macros.mingw32-cmake ++++++
--- /var/tmp/diff_new_pack.eGl4D5/_old 2023-06-16 16:54:08.197454000 +0200
+++ /var/tmp/diff_new_pack.eGl4D5/_new 2023-06-16 16:54:08.197454000 +0200
@@ -10,8 +10,8 @@
#
# To override the builtin source and build path defaults
#
-# source path: $(pwd)
-# build path: $(pwd)/build
+# source path: $(pwd)/%__srcdir
+# build path: $(pwd)/%__builddir
#
# add the following to the macro parameter list
#
@@ -20,24 +20,29 @@
#
# for other options see cmake -h
#
-%_mingw32_cmake(A:B:C:D:EG:L::NP:S:T:U:W:-:hH:u:v:) %{_mingw32_env} ; \
- %{-B:bdir=%{-B*}} \
- %{-S:sdir=%{-S*}} \
+%_mingw32_cmake %{_mingw32_env} ; \
opts="" \
- skipnext=0 \
for i in "$@"; do \
- if test "$i" == "-S" || test "$i" == "-B"; then \
- skipnext=1 \
- elif test "$skipnext" -ne 0; then \
- skipnext=0 \
+ if test "$i" == "-S"; then \
+ shift \
+ sdir=$i \
+ shift \
+ elif test "$i" == "-B"; then \
+ shift \
+ bdir=$i \
+ shift \
else \
opts="$opts $i" \
fi \
done \
- %{!-B:bdir=$(pwd)/%__builddir} \
+ if test -z "$bdir"; then \
+ bdir=$(pwd)/%__builddir \
+ fi \
mkdir -p $bdir \
cd $bdir \
- %{!-S:sdir=$OLDPWD/%__sourcedir} \
+ if test -z "$sdir"; then \
+ sdir=$OLDPWD/%__sourcedir \
+ fi \
%__cmake -S $sdir -B $bdir $opts \\\
%__cmake_generator \\\
-DCMAKE_SYSTEM_NAME="Windows" \\\