Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package QCSXCAD for openSUSE:Factory checked in at 2025-08-04 15:24:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/QCSXCAD (Old) and /work/SRC/openSUSE:Factory/.QCSXCAD.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "QCSXCAD" Mon Aug 4 15:24:07 2025 rev:14 rq:1297274 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/QCSXCAD/QCSXCAD.changes 2025-04-20 19:48:52.161137447 +0200 +++ /work/SRC/openSUSE:Factory/.QCSXCAD.new.1085/QCSXCAD.changes 2025-08-04 15:24:28.729126606 +0200 @@ -1,0 +2,8 @@ +Fri Jul 25 05:29:51 UTC 2025 - Christoph G <f...@grueninger.de> + +- Add qcsxcad-cmp0020.patch to backport compatibility fix for + CMake 4.0 +- Remove build requirement Qt5Sql as thw whole project does not + use SQL. Probably added by mistake. + +------------------------------------------------------------------- New: ---- qcsxcad-cmp0020.patch ----------(New B)---------- New: - Add qcsxcad-cmp0020.patch to backport compatibility fix for CMake 4.0 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ QCSXCAD.spec ++++++ --- /var/tmp/diff_new_pack.rTMlDr/_old 2025-08-04 15:24:29.493158712 +0200 +++ /var/tmp/diff_new_pack.rTMlDr/_new 2025-08-04 15:24:29.493158712 +0200 @@ -26,6 +26,7 @@ Group: Productivity/Graphics/CAD URL: https://openems.de Source0: https://github.com/thliebig/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +Patch1: qcsxcad-cmp0020.patch BuildRequires: CSXCAD-devel BuildRequires: cmake BuildRequires: double-conversion-devel @@ -33,7 +34,6 @@ BuildRequires: tinyxml-devel BuildRequires: vtk-devel BuildRequires: vtk-qt -BuildRequires: cmake(Qt5Sql) BuildRequires: cmake(Qt5Widgets) BuildRequires: cmake(Qt5Xml) BuildRequires: pkgconfig(eigen3) ++++++ qcsxcad-cmp0020.patch ++++++ >From 200c9c211ee1401d6dce2bcbf2543089cdc67208 Mon Sep 17 00:00:00 2001 From: Thorsten Liebig <thorsten.lie...@gmx.de> Date: Fri, 18 Apr 2025 16:28:51 +0200 Subject: [PATCH] cmake: fix cmake 4.0 issues Signed-off-by: Thorsten Liebig <thorsten.lie...@gmx.de> --- CMakeLists.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1784b97..d6b4149 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,14 +6,15 @@ ELSE() SET( CMAKE_BUILD_TYPE Release CACHE STRING "Set to either \"Release\" or \"Debug\"" ) ENDIF() -PROJECT( QCSXCAD CXX) +PROJECT( QCSXCAD CXX C) cmake_minimum_required(VERSION 2.8) +# not supported any more by cmake 4.0? # https://cmake.org/cmake/help/v3.0/policy/CMP0020.html -if(POLICY CMP0020) - cmake_policy(SET CMP0020 OLD) -endif() +# if(POLICY CMP0020) +# cmake_policy(SET CMP0020 NEW) +# endif() IF(EXISTS ${PROJECT_SOURCE_DIR}/localConfig.cmake) include(${PROJECT_SOURCE_DIR}/localConfig.cmake)