1
0

11 Commits

Author SHA256 Message Date
a143bb7d46 Accepting request 1310410 from science
OBS-URL: https://build.opensuse.org/request/show/1310410
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ldas-tools-framecpp?expand=0&rev=4
2025-10-10 15:10:02 +00:00
988719ce5b drop boost system dependencies, add patch to avoid cmake looking for boost system
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=11
2025-10-09 23:36:30 +00:00
1a18d03e48 Accepting request 1198799 from science
OBS-URL: https://build.opensuse.org/request/show/1198799
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ldas-tools-framecpp?expand=0&rev=3
2024-09-05 13:47:12 +00:00
10810685ef Accepting request 973897 from science
OBS-URL: https://build.opensuse.org/request/show/973897
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ldas-tools-framecpp?expand=0&rev=2
2022-04-29 22:46:03 +00:00
81573c5c92 Accepting request 973831 from home:jengelh:branches:science
- fixup a Conflicts appearing in %description
- Run fdupes over more files.

OBS-URL: https://build.opensuse.org/request/show/973831
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=7
2022-04-29 10:05:02 +00:00
5cd24df25f Accepting request 973090 from home:jengelh:branches:science
- Resolve rpmlint report "libframecpp.x86_64: E:
  shlib-policy-name-error SONAME: libframecpp.so.12, expected
  package suffix: 12" and similar.

OBS-URL: https://build.opensuse.org/request/show/973090
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=6
2022-04-28 10:39:53 +00:00
8c98279eeb Accepting request 843589 from science
[NOTE: Depends on sr#843533] Toolkit providing C++ bindings for dealing with frame data.

OBS-URL: https://build.opensuse.org/request/show/843589
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ldas-tools-framecpp?expand=0&rev=1
2020-10-24 13:17:54 +00:00
a834431dab Accepting request 843550 from home:badshah400:branches:science
- Add ldas-tools-framecpp-fix-pkgconfig.patch -- Fix paths in pkgconfig file when absolute paths to LIBDIR and INCLUDEDIR are specified to cmake.

OBS-URL: https://build.opensuse.org/request/show/843550
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=4
2020-10-23 08:13:17 +00:00
028bbe37a2 Accepting request 826090 from home:badshah400:branches:science
- Add _constraints to allocate at least 2 GB memory to prevent OOM  build failures on Tumbleweed.
- Use memory-constraints to limit the number of threads to require at least 2 GB per thread.

OBS-URL: https://build.opensuse.org/request/show/826090
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=3
2020-08-15 07:16:05 +00:00
0cd291aa58 OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=2 2020-05-15 10:39:20 +00:00
bf6559d3b0 Accepting request 802721 from home:badshah400:GW
Toolkit providing C++ bindings for dealing with frame data

OBS-URL: https://build.opensuse.org/request/show/802721
OBS-URL: https://build.opensuse.org/package/show/science/ldas-tools-framecpp?expand=0&rev=1
2020-05-15 10:39:02 +00:00
5 changed files with 56 additions and 17 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:539ae6ab7966f4e1379dfeb711d02e9edc087e1a8acab057af8a7405b16788a9
size 3096209

View File

@@ -0,0 +1,41 @@
---
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
)

View File

@@ -1,12 +0,0 @@
Index: ldas-tools-framecpp-2.7.0/test/ChecksumValidator.cc
===================================================================
--- ldas-tools-framecpp-2.7.0.orig/test/ChecksumValidator.cc
+++ ldas-tools-framecpp-2.7.0/test/ChecksumValidator.cc
@@ -82,6 +82,7 @@ test_helper( const char* TestDir,
BOOST_CHECK( ( ret == 0 ) == Expected );
}
}
+ return retval;
}
void

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Wed Oct 8 05:16:13 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
- 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 <badshah400@gmail.com>
- Drop BuildRequires: libboost_system-devel: stub library, no
longer available or needed.
-------------------------------------------------------------------
Thu Aug 29 13:44:28 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>

View File

@@ -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 @@ URL: https://software.ligo.org
Source: https://software.ligo.org/lscsoft/source/%{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM ldas-tools-framecpp-fix-pkgconfig.patch badshah400@gmail.com -- 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 badshah400@gmail.com -- 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_filesystem-devel
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)