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 2021-07-13 22:37:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-espressomd (Old)
 and      /work/SRC/openSUSE:Factory/.python3-espressomd.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-espressomd"

Tue Jul 13 22:37:19 2021 rev:12 rq:905957 version:4.1.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-espressomd/python3-espressomd.changes    
2021-05-11 23:04:43.936804346 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-espressomd.new.2625/python3-espressomd.changes
  2021-07-13 22:37:44.121983498 +0200
@@ -1,0 +2,6 @@
+Mon Jul 12 22:24:29 UTC 2021 - Christoph Junghans <jungh...@votca.org>
+
+- added missing_size_t.patch, to workaround missing size_t (see
+  gh#espressomd/espresso#4274)
+
+-------------------------------------------------------------------

New:
----
  missing_size_t.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python3-espressomd.spec ++++++
--- /var/tmp/diff_new_pack.QjpRfz/_old  2021-07-13 22:37:44.609979568 +0200
+++ /var/tmp/diff_new_pack.QjpRfz/_new  2021-07-13 22:37:44.613979537 +0200
@@ -44,6 +44,8 @@
 Source:         
https://github.com/%{modname}/%{pkgname}/releases/download/%{version}/%{pkgname}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM boost-1.74.patch gh#espressomd/espresso#3864
 Patch0:         boost-1.74.patch
+# PATCH-FIX-OPENSUSE missing_size_t.patch gh#espressomd/espresso#4274
+Patch1:         missing_size_t.patch
 BuildRequires:  cmake
 BuildRequires:  fftw3-devel
 BuildRequires:  gcc-c++
@@ -82,6 +84,7 @@
 %prep
 %setup -q -n %{pkgname}
 %patch0 -p1
+%patch1 -p1
 
 %build
 source %{_libdir}/mpi/gcc/%{mpiver}/bin/mpivars.sh

++++++ missing_size_t.patch ++++++
diff --git a/src/config/config.hpp b/src/config/config.hpp
index 78ec14b78..139c1f97a 100644
--- a/src/config/config.hpp
+++ b/src/config/config.hpp
@@ -37,6 +37,8 @@
 #define MPICH_SKIP_MPICXX
 #endif
 
+#include <cstddef>
+
 #include "config-features.hpp"
 
 /** P3M: Default for number of interpolation points of the charge
diff --git a/src/utils/include/utils/NumeratedContainer.hpp 
b/src/utils/include/utils/NumeratedContainer.hpp
index 1d99098f0..36602b203 100644
--- a/src/utils/include/utils/NumeratedContainer.hpp
+++ b/src/utils/include/utils/NumeratedContainer.hpp
@@ -25,6 +25,7 @@
  */
 
 #include <cassert>
+#include <cstddef>
 #include <set>
 #include <unordered_map>
 

Reply via email to