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-07-25 11:50:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mingw64-cross-cmake (Old)
and /work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.1467 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mingw64-cross-cmake"
Tue Jul 25 11:50:03 2023 rev:5 rq:1099723 version:1.1.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/mingw64-cross-cmake/mingw64-cross-cmake.changes
2023-07-12 17:28:52.471135448 +0200
+++
/work/SRC/openSUSE:Factory/.mingw64-cross-cmake.new.1467/mingw64-cross-cmake.changes
2023-07-25 11:51:13.885497510 +0200
@@ -2 +2,8 @@
-Wed Jul 12 12:41:54 UTC 2023 - Imnotgivingmy nametoamachine
<[email protected]>
+Thu Jul 20 08:16:41 UTC 2023 - Ralf Habacker <[email protected]>
+
+- Update to version 1.1.4
+ * Fix problem not adding version to mingw64(cmake:xxx) provides
+ for Qt6 packages (boo#1213043)
+
+-------------------------------------------------------------------
+Wed Jul 12 13:10:52 UTC 2023 - Imnotgivingmy nametoamachine
<[email protected]>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mingw64-cross-cmake.spec ++++++
--- /var/tmp/diff_new_pack.6f74cU/_old 2023-07-25 11:51:16.089510414 +0200
+++ /var/tmp/diff_new_pack.6f74cU/_new 2023-07-25 11:51:16.097510461 +0200
@@ -15,8 +15,9 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
+
Name: mingw64-cross-cmake
-Version: 1.1.3
+Version: 1.1.4
Release: 0
Summary: Cross build support for CMake
License: BSD-3-Clause
++++++ mingw64-cmake.prov ++++++
--- /var/tmp/diff_new_pack.6f74cU/_old 2023-07-25 11:51:16.149510765 +0200
+++ /var/tmp/diff_new_pack.6f74cU/_new 2023-07-25 11:51:16.153510789 +0200
@@ -57,11 +57,16 @@
return result
def resolveCMakeModuleVersion(self, modulePath, cmakeModule, lowercase):
- versionFile = ("%s/%s-config-version.cmake" if lowercase else
"%s/%sConfigVersion.cmake") % (modulePath, cmakeModule)
+ # Qt >= 6.2.2 defines 'PACKAGE_VERSION' in *ConfigVersionImpl.cmake
+ versionFile = f"{modulePath}/{cmakeModule}ConfigVersionImpl.cmake" if
"Qt6" in f"{cmakeModule}" else ""
try:
f = open(versionFile, 'r')
except:
- return None
+ versionFile = ("%s/%s-config-version.cmake" if lowercase else
"%s/%sConfigVersion.cmake") % (modulePath, cmakeModule)
+ try:
+ f = open(versionFile, 'r')
+ except:
+ return None
for line in f:
line = line.strip()