Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ldas-tools-framecpp for
openSUSE:Factory checked in at 2025-10-10 17:10:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ldas-tools-framecpp (Old)
and /work/SRC/openSUSE:Factory/.ldas-tools-framecpp.new.5300 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ldas-tools-framecpp"
Fri Oct 10 17:10:02 2025 rev:4 rq:1310410 version:3.0.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/ldas-tools-framecpp/ldas-tools-framecpp.changes
2024-09-05 15:47:57.101974802 +0200
+++
/work/SRC/openSUSE:Factory/.ldas-tools-framecpp.new.5300/ldas-tools-framecpp.changes
2025-10-10 17:11:28.278595243 +0200
@@ -1,0 +2,12 @@
+Wed Oct 8 05:16:13 UTC 2025 - Atri Bhattacharya <[email protected]>
+
+- Add ldas-tools-framecpp-cmake-no-boost-system.patch -- Drop
+ "system" from list of boost components searched in CMake.
+
+-------------------------------------------------------------------
+Thu Oct 2 06:17:32 UTC 2025 - Atri Bhattacharya <[email protected]>
+
+- Drop BuildRequires: libboost_system-devel: stub library, no
+ longer available or needed.
+
+-------------------------------------------------------------------
New:
----
ldas-tools-framecpp-cmake-no-boost-system.patch
----------(New B)----------
New:
- Add ldas-tools-framecpp-cmake-no-boost-system.patch -- Drop
"system" from list of boost components searched in CMake.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ldas-tools-framecpp.spec ++++++
--- /var/tmp/diff_new_pack.SycMmR/_old 2025-10-10 17:11:29.062628289 +0200
+++ /var/tmp/diff_new_pack.SycMmR/_new 2025-10-10 17:11:29.066628458 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ldas-tools-framecpp
#
-# Copyright (c) 2024 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
@@ -36,6 +36,8 @@
Source:
https://software.ligo.org/lscsoft/source/%{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM ldas-tools-framecpp-fix-pkgconfig.patch
[email protected] -- Fix paths in pkgconfig file when absolute paths to
LIBDIR and INCLUDEDIR are specified to cmake
Patch1: ldas-tools-framecpp-fix-pkgconfig.patch
+# PATCH-FIX-UPSTREAM ldas-tools-framecpp-cmake-no-boost-system.patch
[email protected] -- Drop "system" from list of boost components searched in
CMake
+Patch2: ldas-tools-framecpp-cmake-no-boost-system.patch
BuildRequires: cmake
BuildRequires: doxygen
BuildRequires: fdupes
@@ -47,7 +49,6 @@
BuildRequires: libboost_headers-devel >= 1.67.0
BuildRequires: libboost_program_options-devel
BuildRequires: libboost_serialization-devel
-BuildRequires: libboost_system-devel
BuildRequires: memory-constraints
BuildRequires: pkgconfig
BuildRequires: pkgconfig(ldastoolsal)
++++++ ldas-tools-framecpp-cmake-no-boost-system.patch ++++++
---
CMakeLists.txt | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: ldas-tools-framecpp-3.0.4/CMakeLists.txt
===================================================================
--- ldas-tools-framecpp-3.0.4.orig/CMakeLists.txt
+++ ldas-tools-framecpp-3.0.4/CMakeLists.txt
@@ -289,11 +289,10 @@ find_package(
chrono
program_options
serialization
- system
filesystem
)
-foreach( component IN ITEMS filesystem system )
+foreach( component IN ITEMS filesystem)
string( TOUPPER "${component}" COMPONENT)
if ( NOT BOOST_LDFLAGS )
foreach( dir ${Boost_LIBRARY_DIRS} )
Index: ldas-tools-framecpp-3.0.4/src/OOInterface/CMakeLists.txt
===================================================================
--- ldas-tools-framecpp-3.0.4.orig/src/OOInterface/CMakeLists.txt
+++ ldas-tools-framecpp-3.0.4/src/OOInterface/CMakeLists.txt
@@ -252,7 +252,6 @@ framecpp_target_gtest(
LDADD
PUBLIC framecpp
PUBLIC Boost::serialization
- PUBLIC Boost::system
PUBLIC ${GTEST_LIBRARIES}
PRIVATE Threads::Threads
)
@@ -274,7 +273,6 @@ framecpp_target_gtest(
LDADD
PUBLIC framecpp
PUBLIC Boost::serialization
- PUBLIC Boost::system
PUBLIC ${GTEST_LIBRARIES}
PRIVATE Threads::Threads
)