Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package votca for openSUSE:Factory checked in at 2023-11-14 21:42:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/votca (Old) and /work/SRC/openSUSE:Factory/.votca.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "votca" Tue Nov 14 21:42:45 2023 rev:8 rq:1125777 version:2022.1 Changes: -------- --- /work/SRC/openSUSE:Factory/votca/votca.changes 2023-01-03 15:06:40.734969857 +0100 +++ /work/SRC/openSUSE:Factory/.votca.new.17445/votca.changes 2023-11-14 21:42:48.084106495 +0100 @@ -1,0 +2,5 @@ +Mon Nov 13 23:26:43 UTC 2023 - Christoph Junghans <jungh...@votca.org> + +- Add 1083.patch to fix build with boost-1.82 + +------------------------------------------------------------------- New: ---- 1083.patch BETA DEBUG BEGIN: New: - Add 1083.patch to fix build with boost-1.82 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ votca.spec ++++++ --- /var/tmp/diff_new_pack.zx73nf/_old 2023-11-14 21:42:48.896136553 +0100 +++ /var/tmp/diff_new_pack.zx73nf/_new 2023-11-14 21:42:48.900136702 +0100 @@ -34,6 +34,8 @@ Group: Productivity/Scientific/Chemistry URL: https://www.votca.org Source0: https://github.com/votca/votca/archive/v%{uversion}.tar.gz#/%{name}-%{uversion}.tar.gz +# PATCH-FIX-UPSTREAM 1083.patch -- based on upsteam PR 1083, fix build with boost-1.82 +Patch0: 1083.patch BuildRequires: cmake >= 3.13 BuildRequires: eigen3-devel @@ -179,6 +181,7 @@ %prep %setup -n %{name}-%{uversion} -q +%patch 0 -p1 %build %setup_openmpi ++++++ 1083.patch ++++++ diff --git a/xtp/src/libxtp/calculators/kmclifetime.cc b/xtp/src/libxtp/calculators/kmclifetime.cc index f6a1093ff..56730bce9 100644 --- a/xtp/src/libxtp/calculators/kmclifetime.cc +++ b/xtp/src/libxtp/calculators/kmclifetime.cc @@ -21,7 +21,7 @@ // Third party includes #include <boost/format.hpp> -#include <boost/progress.hpp> +#include <boost/timer/progress_display.hpp> // VOTCA includes #include <votca/tools/constants.h> @@ -290,7 +290,7 @@ void KMCLifetime::RunVSSM() { // determine where it will jump to ResetForbiddenlist(forbiddendests); - boost::progress_display progress(insertions_); + boost::timer::progress_display progress(insertions_); while (true) { // LEVEL 2 diff --git a/xtp/src/libxtp/calculators/neighborlist.cc b/xtp/src/libxtp/calculators/neighborlist.cc index ce18af288..0b4bcc61b 100644 --- a/xtp/src/libxtp/calculators/neighborlist.cc +++ b/xtp/src/libxtp/calculators/neighborlist.cc @@ -17,7 +17,7 @@ // Third party includes #include <boost/format.hpp> -#include <boost/progress.hpp> +#include <boost/timer/progress_display.hpp> // Local private VOTCA includes #include "neighborlist.h" @@ -124,7 +124,7 @@ bool Neighborlist::Evaluate(Topology& top) { top.NBList().Cleanup(); - boost::progress_display progress(segs.size()); + boost::timer::progress_display progress(segs.size()); // cache approx sizes std::vector<double> approxsize = std::vector<double>(segs.size(), 0.0); #pragma omp parallel for