Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cmake for openSUSE:Factory checked 
in at 2021-05-01 00:46:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cmake (Old)
 and      /work/SRC/openSUSE:Factory/.cmake.new.1947 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cmake"

Sat May  1 00:46:09 2021 rev:193 rq:889196 version:3.20.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/cmake/cmake.changes      2021-03-17 
20:15:10.226925135 +0100
+++ /work/SRC/openSUSE:Factory/.cmake.new.1947/cmake.changes    2021-05-01 
00:46:10.815590579 +0200
@@ -1,0 +2,25 @@
+Thu Apr 29 07:33:25 UTC 2021 - Dirk M??ller <[email protected]>
+
+- add 53d523f2e11839bcbbdc9288b4f71c764d0efd5c.diff to fix automoc
+  race 
+
+-------------------------------------------------------------------
+Fri Apr  9 16:10:18 UTC 2021 - Andreas Stieger <[email protected]>
+
+- cmake 3.20.1:
+  * Fix FindIntl to use sigle Intl_IS_BUILT_IN check
+
+-------------------------------------------------------------------
+Tue Mar 23 21:59:51 UTC 2021 - Christoph G <[email protected]>
+
+- Update to 3.20.0
+  * The ???cmake_path()??? command was added for operations on
+    filesystem paths.
+  * The ???target_sources()??? command now supports targets created
+    by the ???add_custom_target()??? command.
+  * The ???ExternalProject??? module ???ExternalProject_Add()??? function
+    gained a ???CONFIGURE_HANDLED_BY_BUILD??? option.
+  * ???ctest(1)??? gained a ??????test-dir??? option to specify the directory
+    in which to look for tests.
+
+-------------------------------------------------------------------

Old:
----
  cmake-3.19.7-SHA-256.txt
  cmake-3.19.7-SHA-256.txt.asc
  cmake-3.19.7.tar.gz

New:
----
  53d523f2e11839bcbbdc9288b4f71c764d0efd5c.diff
  cmake-3.20.1-SHA-256.txt
  cmake-3.20.1-SHA-256.txt.asc
  cmake-3.20.1.tar.gz

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

Other differences:
------------------
++++++ cmake.spec ++++++
--- /var/tmp/diff_new_pack.2CWz23/_old  2021-05-01 00:46:11.411587923 +0200
+++ /var/tmp/diff_new_pack.2CWz23/_new  2021-05-01 00:46:11.415587905 +0200
@@ -35,9 +35,9 @@
 %else
 %bcond_with full
 %endif
-%define shortversion 3.19
+%define shortversion 3.20
 Name:           cmake%{?psuffix}
-Version:        3.19.7
+Version:        3.20.1
 Release:        0
 Summary:        Cross-platform make system
 License:        BSD-3-Clause
@@ -55,6 +55,8 @@
 # Search for python interpreters from newest to oldest rather then picking up 
/usr/bin/python as first choice
 Patch1:         feature-suse-python-interp-search-order.patch
 Patch2:         cmake-fix-png-include-dir.patch
+# From https://gitlab.kitware.com/cmake/cmake/-/merge_requests/6008
+Patch3:         53d523f2e11839bcbbdc9288b4f71c764d0efd5c.diff
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig

++++++ 53d523f2e11839bcbbdc9288b4f71c764d0efd5c.diff ++++++
diff --git a/Source/cmQtAutoMocUic.cxx b/Source/cmQtAutoMocUic.cxx
index 
535f786f41487e57fd3e9d547d22344b18b924a1..f5831628d3fe3c05b0bf4447036e5ac6bcdbdafc
 100644
--- a/Source/cmQtAutoMocUic.cxx
+++ b/Source/cmQtAutoMocUic.cxx
@@ -564,8 +564,7 @@ private:
   // -- Generation
   bool CreateDirectories();
   // -- Support for depfiles
-  static std::vector<std::string> dependenciesFromDepFile(
-    const char* filePath);
+  std::vector<std::string> dependenciesFromDepFile(const char* filePath);
 
   // -- Settings
   BaseSettingsT BaseConst_;
@@ -2066,7 +2065,8 @@ void cmQtAutoMocUicT::JobCompileMocT::Process()
                             " does not exist.");
       return;
     }
-    this->CacheEntry->Moc.Depends = dependenciesFromDepFile(depfile.c_str());
+    this->CacheEntry->Moc.Depends =
+      this->Gen()->dependenciesFromDepFile(depfile.c_str());
   }
 }
 
@@ -2223,12 +2223,12 @@ void cmQtAutoMocUicT::JobDepFilesMergeT::Process()
                this->MessagePath(this->BaseConst().DepFile.c_str())));
   }
   auto processDepFile =
-    [](const std::string& mocOutputFile) -> std::vector<std::string> {
+    [this](const std::string& mocOutputFile) -> std::vector<std::string> {
     std::string f = mocOutputFile + ".d";
     if (!cmSystemTools::FileExists(f)) {
       return {};
     }
-    return dependenciesFromDepFile(f.c_str());
+    return this->Gen()->dependenciesFromDepFile(f.c_str());
   };
 
   std::vector<std::string> dependencies = this->initialDependencies();
@@ -2961,6 +2961,7 @@ bool cmQtAutoMocUicT::CreateDirectories()
 std::vector<std::string> cmQtAutoMocUicT::dependenciesFromDepFile(
   const char* filePath)
 {
+  std::lock_guard<std::mutex> guard(this->CMakeLibMutex_);
   auto const content = cmReadGccDepfile(filePath);
   if (!content || content->empty()) {
     return {};
++++++ cmake-3.19.7-SHA-256.txt -> cmake-3.20.1-SHA-256.txt ++++++
--- /work/SRC/openSUSE:Factory/cmake/cmake-3.19.7-SHA-256.txt   2021-03-17 
20:15:09.518924167 +0100
+++ /work/SRC/openSUSE:Factory/.cmake.new.1947/cmake-3.20.1-SHA-256.txt 
2021-05-01 00:46:10.667591237 +0200
@@ -1,14 +1,15 @@
-14e678126a266812151d739c71de61f8e9ac430d00c854c73e438ffa3e666d56  
cmake-3.19.7-Linux-aarch64.sh
-eb1cf718eca1d5bc212a0ef76d19a977b6b6481a795985b8741c31f866c88e09  
cmake-3.19.7-Linux-aarch64.tar.gz
-a591870c86a5e4eb750abc4f81602be0dafec92861c0d98c831a76ae42da14eb  
cmake-3.19.7-Linux-x86_64.sh
-ba4a5f46aab500e0d8d952ee735dcfb0c870d326e851addc037c99eb1ea4b66c  
cmake-3.19.7-Linux-x86_64.tar.gz
-6e42af03188b8cbbac787f94ed7c3e2c782b8085ad2a2cf936b3d2607be68cd2  
cmake-3.19.7-macos-universal.dmg
-52036f8450fabb69bedc3c3eccc58202ae9eefe8358fa383978c7b142f931fa5  
cmake-3.19.7-macos-universal.tar.gz
-68df7ce92833df9cf7ed7206246003e1438c06078b2c2f311a9c122502fe3f6b  
cmake-3.19.7-macos10.10-universal.dmg
-ff398dd24941f4a8836d94c62161e94a5c2b5925db0027f29aa5588476921821  
cmake-3.19.7-macos10.10-universal.tar.gz
-44f752aaa8bb7999b7ae2c1bf8d57c2654160be6172cb27850269386edb77611  
cmake-3.19.7-win32-x86.msi
-7771205d94022787bc4c3a623629d236b10bf697315e9f92c214dd8b53e8746e  
cmake-3.19.7-win32-x86.zip
-f2201af7e2839323f516ee334aa7adbbe4f944c8c4af4cceae70d0b47de9a5a1  
cmake-3.19.7-win64-x64.msi
-e6788d6e23b3026c37fcfa7658075d6b5f9113f26fae17fe372ad4a7ee62d5fd  
cmake-3.19.7-win64-x64.zip
-58a15f0d56a0afccc3cc5371234fce73fcc6c8f9dbd775d898e510b83175588e  
cmake-3.19.7.tar.gz
-8ec03430ca068a5f76872f1771531d2d4cd1cd455159597dc298f80c043988b9  
cmake-3.19.7.zip
+f8fe477a9c5144ce02fddd7ac0176a59ec2eba7a332b567ffcd069ac0f545b69  
cmake-3.20.1-files-v1.json
+2761a222c14a15b9bdf1bdb4a17c10806757b7ed3bc26a84523f042ec212b76c  
cmake-3.20.1-linux-aarch64.sh
+5ad1f8139498a1956df369c401658ec787f63c8cb4e9759f2edaa51626a86512  
cmake-3.20.1-linux-aarch64.tar.gz
+d25a8e8b76c137ffd55fa28b7a803309a2c6992e30fa0f1cb2172d5b970106e2  
cmake-3.20.1-linux-x86_64.sh
+b8c141bd7a6d335600ab0a8a35e75af79f95b837f736456b5532f4d717f20a09  
cmake-3.20.1-linux-x86_64.tar.gz
+6ace6bdf340f2e63b09ee3e4c03bfd93a6737b04d6d0eb94d5af1fd10f5b5839  
cmake-3.20.1-macos-universal.dmg
+44143d47fdcc7fc3042576c6a8b661e3b65a18143666f74d6e8d93ca3ab5cd95  
cmake-3.20.1-macos-universal.tar.gz
+8bdcc31d18b8b61b6032f364e960e75d61ec05fe51dd809d42e5f34dcd537258  
cmake-3.20.1-macos10.10-universal.dmg
+89afcb79f58bb1f0bb840047c146c3fac8051829b6025c3dbe9b75799b27deb4  
cmake-3.20.1-macos10.10-universal.tar.gz
+5d8514868d12c209f6b4533f47d20cfed0e871e4ee648fb36244504ca00aba0a  
cmake-3.20.1-windows-i386.msi
+650026534e66dabe0ed6be3422e86fabce5fa86d43927171ea8b8dfd0877fc9d  
cmake-3.20.1-windows-i386.zip
+a2eb2811aada9f4830281aa407231b9295dcac4b18bdbefc35d9dd71775110e8  
cmake-3.20.1-windows-x86_64.msi
+9ed05401722f60e006420f5974c164795b321f0d8d8e7f2c0ed1180b5382201b  
cmake-3.20.1-windows-x86_64.zip
+3f1808b9b00281df06c91dd7a021d7f52f724101000da7985a401678dfe035b0  
cmake-3.20.1.tar.gz
+cd7c575daea51c504a30340d42e03a4f2b29390d583a153b4285777f7ac85552  
cmake-3.20.1.zip

++++++ cmake-3.19.7.tar.gz -> cmake-3.20.1.tar.gz ++++++
/work/SRC/openSUSE:Factory/cmake/cmake-3.19.7.tar.gz 
/work/SRC/openSUSE:Factory/.cmake.new.1947/cmake-3.20.1.tar.gz differ: char 14, 
line 1

++++++ cmake-fix-png-include-dir.patch ++++++
--- /var/tmp/diff_new_pack.2CWz23/_old  2021-05-01 00:46:11.519587442 +0200
+++ /var/tmp/diff_new_pack.2CWz23/_new  2021-05-01 00:46:11.519587442 +0200
@@ -2,7 +2,7 @@
 ===================================================================
 --- a/Modules/FindPNG.cmake
 +++ b/Modules/FindPNG.cmake
-@@ -52,11 +52,15 @@
+@@ -54,12 +54,16 @@
  find_package(ZLIB ${_FIND_ZLIB_ARG})
  
  if(ZLIB_FOUND)
@@ -13,6 +13,7 @@
 +  endforeach()
 +  find_path(PNG_PNG_INCLUDE_DIR png.h PATH_SUFFIXES include/libpng 
${_PNG_INCLUDE_SUFFIXES})
 +  unset(_PNG_INCLUDE_SUFFIXES)
+   mark_as_advanced(PNG_PNG_INCLUDE_DIR)
  
    list(APPEND PNG_NAMES png libpng)
    unset(PNG_NAMES_DEBUG)

Reply via email to