Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cadabra2 for openSUSE:Factory checked in at 2025-10-03 15:45:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cadabra2 (Old) and /work/SRC/openSUSE:Factory/.cadabra2.new.11973 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cadabra2" Fri Oct 3 15:45:44 2025 rev:33 rq:1308810 version:2.5.14 Changes: -------- --- /work/SRC/openSUSE:Factory/cadabra2/cadabra2.changes 2025-08-10 22:20:51.351859869 +0200 +++ /work/SRC/openSUSE:Factory/.cadabra2.new.11973/cadabra2.changes 2025-10-03 15:47:06.977745498 +0200 @@ -1,0 +2,7 @@ +Fri Oct 3 07:39:10 UTC 2025 - Ana Guerrero <[email protected]> + +- Remove BuildRequires on libboost_system-devel, + removed on boost 1.89 (bsc#1249599) + * Add patch Remove-boost-system-component-from-cmakefiles.patch + +------------------------------------------------------------------- New: ---- Remove-boost-system-component-from-cmakefiles.patch ----------(New B)---------- New: removed on boost 1.89 (bsc#1249599) * Add patch Remove-boost-system-component-from-cmakefiles.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cadabra2.spec ++++++ --- /var/tmp/diff_new_pack.LDbjEp/_old 2025-10-03 15:47:08.249798789 +0200 +++ /var/tmp/diff_new_pack.LDbjEp/_new 2025-10-03 15:47:08.253798958 +0200 @@ -1,7 +1,7 @@ # # spec file for package cadabra2 # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -41,6 +41,7 @@ Source0: %{name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM cadabra2-disable-components-test.patch gh#kpeeters/cadabra2#212 [email protected] -- Disable a test that crashes for unknown reasons Patch0: cadabra2-disable-components-test.patch +Patch1: Remove-boost-system-component-from-cmakefiles.patch BuildRequires: %{python_module devel >= 3.9} BuildRequires: %{python_module gobject-devel} BuildRequires: %{python_module matplotlib} @@ -59,7 +60,6 @@ BuildRequires: libboost_program_options-devel BuildRequires: libboost_python3-devel BuildRequires: libboost_regex-devel -BuildRequires: libboost_system-devel BuildRequires: libuuid-devel BuildRequires: pkgconfig BuildRequires: python-rpm-macros ++++++ Remove-boost-system-component-from-cmakefiles.patch ++++++ >From 0afcc652660a5c1101de6541b65f6b8869b7ce0a Mon Sep 17 00:00:00 2001 From: Kasper Peeters <[email protected]> Date: Wed, 24 Sep 2025 18:57:23 +0100 Subject: [PATCH] Remove boost 'system' component from cmakefiles, as this is a header-only component now, and the system stub has been removed in boost 1.89.0. --- client_server/CMakeLists.txt | 2 +- core/CMakeLists.txt | 2 +- frontend/common/CMakeLists.txt | 2 +- frontend/gtkmm/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client_server/CMakeLists.txt b/client_server/CMakeLists.txt index 271812ccbe..fe347d2928 100644 --- a/client_server/CMakeLists.txt +++ b/client_server/CMakeLists.txt @@ -36,7 +36,7 @@ find_package(Threads) # websocket functionality) which was not stable before that version. # Actually, it is probably not stable before 1.75.0, but if we go that # high we cannot build on Ubuntu 20.04 anymore. -find_package(Boost 1.71.0 COMPONENTS system program_options date_time filesystem REQUIRED) +find_package(Boost 1.71.0 COMPONENTS program_options date_time filesystem REQUIRED) # OpenSSL needs to be linked in explicitly (probably because the boost # material referring to it is all in headers?). If you use a cmake module, diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 7f497a302b..9cc00a4ca0 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -34,7 +34,7 @@ configure_file( # # so no linking takes place # set(Boost_USE_STATIC_LIBS ON) # endif() -find_package(Boost 1.71.0 COMPONENTS system filesystem REQUIRED) +find_package(Boost 1.71.0 COMPONENTS filesystem REQUIRED) message(STATUS "Boost version ${Boost_VERSION}") # Find glibmm (for base64) diff --git a/frontend/common/CMakeLists.txt b/frontend/common/CMakeLists.txt index 9bf9d0a155..e9af827643 100644 --- a/frontend/common/CMakeLists.txt +++ b/frontend/common/CMakeLists.txt @@ -16,7 +16,7 @@ endif(POLICY CMP0042) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/../../cmake/modules") find_package(Threads) -find_package(Boost 1.71.0 COMPONENTS system REQUIRED) +find_package(Boost 1.71.0 REQUIRED) set(Boost_USE_STATIC_LIBS OFF) set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) diff --git a/frontend/gtkmm/CMakeLists.txt b/frontend/gtkmm/CMakeLists.txt index 191b9fc7d5..01bf560075 100644 --- a/frontend/gtkmm/CMakeLists.txt +++ b/frontend/gtkmm/CMakeLists.txt @@ -82,7 +82,7 @@ else() find_package(GLIBMM3) find_package(GTKMM3) endif() -find_package(Boost 1.71.0 COMPONENTS system REQUIRED) +find_package(Boost 1.71.0 REQUIRED) set(Boost_USE_STATIC_LIBS OFF) set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) -- 2.51.0
