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-08-28 17:14:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mingw64-cross-cmake (Old) and /work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mingw64-cross-cmake" Mon Aug 28 17:14:17 2023 rev:6 rq:1106036 version:1.1.5 Changes: -------- --- /work/SRC/openSUSE:Factory/mingw64-cross-cmake/mingw64-cross-cmake.changes 2023-07-25 11:51:13.885497510 +0200 +++ /work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.1766/mingw64-cross-cmake.changes 2023-08-28 17:14:23.790886803 +0200 @@ -1,0 +2,9 @@ +Sat Aug 26 09:48:12 UTC 2023 - Ralf Habacker <ralf.habac...@freenet.de> + +- Update to version 1.1.5 + * Ignore the '--' parameter when calling the mingw64-cmake + macro from the command line (boo#1214641). + * Add support for using '..' as source directory when calling + the mingw64-cmake macro (boo#1214642) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mingw64-cross-cmake.spec ++++++ --- /var/tmp/diff_new_pack.mJEerL/_old 2023-08-28 17:14:24.978929466 +0200 +++ /var/tmp/diff_new_pack.mJEerL/_new 2023-08-28 17:14:24.986929753 +0200 @@ -17,7 +17,7 @@ Name: mingw64-cross-cmake -Version: 1.1.4 +Version: 1.1.5 Release: 0 Summary: Cross build support for CMake License: BSD-3-Clause ++++++ macros.mingw64-cmake ++++++ --- /var/tmp/diff_new_pack.mJEerL/_old 2023-08-28 17:14:25.018930902 +0200 +++ /var/tmp/diff_new_pack.mJEerL/_new 2023-08-28 17:14:25.022931046 +0200 @@ -23,10 +23,15 @@ %_mingw64_cmake %{_mingw64_env} ; \ opts="" \ while (( "$#" )); do \ - if test "$1" == "-S"; then \ + if test "$1" == "--"; then \ + shift \ + elif test "$1" == "-S"; then \ shift \ sdir=$1 \ shift \ + elif test "$1" == ".."; then \ + shift \ + sdir=$(pwd)/.. \ elif test "$1" == "-B"; then \ shift \ bdir=$1 \