Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python3-espressomd for openSUSE:Factory checked in at 2022-04-30 00:45:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-espressomd (Old) and /work/SRC/openSUSE:Factory/.python3-espressomd.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-espressomd" Sat Apr 30 00:45:25 2022 rev:13 rq:973778 version:4.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python3-espressomd/python3-espressomd.changes 2021-07-13 22:37:44.121983498 +0200 +++ /work/SRC/openSUSE:Factory/.python3-espressomd.new.1538/python3-espressomd.changes 2022-04-30 00:46:10.878984882 +0200 @@ -1,0 +2,12 @@ +Sat Apr 16 00:24:21 UTC 2022 - Jean-Noel Grad <[email protected]> + +- added rpath.patch to fix the failing Rpath checks (see + boo#1198352) + +------------------------------------------------------------------- +Sat Apr 16 00:19:40 UTC 2022 - Jean-Noel Grad <[email protected]> + +- added hdf5.patch to fix builds with H5MD (see + gh#espressomd/espresso#3543) + +------------------------------------------------------------------- New: ---- hdf5.patch rpath.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-espressomd.spec ++++++ --- /var/tmp/diff_new_pack.bEfBf3/_old 2022-04-30 00:46:11.554985468 +0200 +++ /var/tmp/diff_new_pack.bEfBf3/_new 2022-04-30 00:46:11.558985471 +0200 @@ -1,7 +1,7 @@ # -# spec file for package python3-espressomd +# spec file # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # Copyright (c) 2014 Christoph Junghans # # All modifications and additions to the file contributed by third parties @@ -46,6 +46,10 @@ Patch0: boost-1.74.patch # PATCH-FIX-OPENSUSE missing_size_t.patch gh#espressomd/espresso#4274 Patch1: missing_size_t.patch +# PATCH-FIX-OPENSUSE hdf5.patch gh#espressomd/espresso#3543 +Patch2: hdf5.patch +# PATCH-FIX-OPENSUSE rpath.patch boo#1198352 +Patch3: rpath.patch BuildRequires: cmake BuildRequires: fftw3-devel BuildRequires: gcc-c++ @@ -85,6 +89,8 @@ %setup -q -n %{pkgname} %patch0 -p1 %patch1 -p1 +%patch2 -p1 +%patch3 -p1 %build source %{_libdir}/mpi/gcc/%{mpiver}/bin/mpivars.sh ++++++ hdf5.patch ++++++ diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index c956b9de1..b68208eaa 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -189,6 +189,9 @@ endif(SCAFACOS) # Subdirectories add_subdirectory(io) +if(H5MD) + target_link_libraries(EspressoCore PUBLIC ${HDF5_LIBRARIES}) +endif(H5MD) if(WITH_UNIT_TESTS) add_subdirectory(unit_tests) ++++++ rpath.patch ++++++ diff --git a/CMakeLists.txt b/CMakeLists.txt index 238e6dac3..96cbaa9a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ cmake_minimum_required(VERSION 3.4) message(STATUS "CMake version: ${CMAKE_VERSION}") +set(CMAKE_SKIP_RPATH ON) # C++ standard enable_language(CXX)
