netgen : '5.3.1_with_CAS_7.2'
nlopt : '2.4.2'
numpy : 'native'
- omniORB : '4.2.3'
- omniORBpy : '4.2.3'
+ omniORB : '4.2.4'
+ omniORBpy : '4.2.4'
opencv : 'native'
openVKL : '0.11.0'
openturns: '1.16'
# Although recent adaptations of GEOM CMake procedure to be compliant with openCV 4.X, some
# deeper investigations need to be done in its sources. Use embedded openCV product where
# native one is 4.X.
- __condition__ : "VARS.dist in ['FD32', 'UB20.04']"
+ __condition__ : "VARS.dist in ['FD32', 'UB20.04', 'FD34']"
'APPLICATION.products.opencv' : '3.2.0'
}
{
'paraview.0008-ParaView_coincident_rendering.patch',
'paraview.0011-ParaView_protobuf_crash.patch',
'paraview.0015-Paraview_VTKM_ioss.patch'
+ 'paraview-5.9.0-gcc.11.0.patch'
]
}
CMAKE_OPTIONS="${CMAKE_OPTIONS} -DENABLE_CGNS=OFF" # default value is set to ON in release 4.1.4
CMAKE_OPTIONS="${CMAKE_OPTIONS} -DCMAKE_INSTALL_LIBDIR=${PRODUCT_INSTALL}/lib" # strangely on Ubuntu GMSH installs the .so in lib instead of lib/lib64 - so force to lib64
CMAKE_OPTIONS="${CMAKE_OPTIONS} -DCMAKE_PREFIX_PATH=${LAPACK_ROOT_DIR}" # set path of third libraries to our associated internal products
- if [[ $DIST_NAME == "FD" && $DIST_VERSION == "32" ]]
+ if [[ $DIST_NAME == "FD" && ($DIST_VERSION == "32" || $DIST_VERSION == "34") ]]
then
CMAKE_OPTIONS="${CMAKE_OPTIONS} -DENABLE_MMG3D=OFF" # removed anyhow in GMS 4.6
fi
echo "##########################################################################"
function version_ge() { test "$(echo "$@" | tr " " "\n" | sort -rV | head -n 1)" == "$1"; }
-
+CPPSTD="\"-std=c++14\""
CMAKE_OPTIONS=""
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DCMAKE_INSTALL_PREFIX:STRING=${PRODUCT_INSTALL}"
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DCMAKE_BUILD_TYPE:STRING=Release"
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DWITH_VTK:BOOL=OFF"
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DENABLE_PRECOMPILED_HEADERS:BOOL=OFF"
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DCMAKE_CXX_FLAGS=-fPIC"
+ if [[ $DIST_NAME == "FD" && $DIST_VERSION == "34" ]]
+ then
+ CMAKE_OPTIONS=${CMAKE_OPTIONS}" -DCMAKE_CXX_FLAGS=${CPPSTD}"
+ fi
CMAKE_OPTIONS=$CMAKE_OPTIONS" -DCMAKE_C_FLAGS=-fPIC"
#
version_1_16 :
{
- patches : ['openturns-1.16.0001.patch']
+ patches : ['openturns-1.16.0001.patch','openturns-1.16.0002.patch']
}
version_1_16_win :
--- /dev/null
+diff -Naur openturns_ref/lib/src/Base/Algo/openturns/KarhunenLoeveAlgorithmImplementation.hxx openturns_new/lib/src/Base/Algo/openturns/KarhunenLoeveAlgorithmImplementation.hxx
+--- openturns_ref/lib/src/Base/Algo/openturns/KarhunenLoeveAlgorithmImplementation.hxx 2020-11-10 13:21:21.000000000 +0100
++++ openturns_new/lib/src/Base/Algo/openturns/KarhunenLoeveAlgorithmImplementation.hxx 2021-05-21 11:08:48.206212694 +0200
+@@ -24,6 +24,12 @@
+ #include "openturns/PersistentObject.hxx"
+ #include "openturns/CovarianceModel.hxx"
+ #include "openturns/KarhunenLoeveResult.hxx"
++#ifdef __GNUC__
++# include <features.h>
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++#endif // __GNUC__
+
+ BEGIN_NAMESPACE_OPENTURNS
+
--- /dev/null
+diff -Naur ParaView_ref ParaView_new
+diff -Naur ParaView_ref/VTK/Common/Core/vtkDataArrayPrivate.txx ParaView_new/VTK/Common/Core/vtkDataArrayPrivate.txx
+--- ParaView_ref/VTK/Common/Core/vtkDataArrayPrivate.txx 2021-02-04 15:22:02.000000000 +0100
++++ ParaView_new/VTK/Common/Core/vtkDataArrayPrivate.txx 2021-06-22 13:11:58.767853208 +0200
+@@ -25,6 +25,14 @@
+ #include <array>
+ #include <cassert> // for assert()
+ #include <vector>
++#ifdef __GNUC__
++#include <features.h>
++# ifdef __GNUC_PREREQ
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++# endif
++#endif // __GNUC__
+
+ namespace vtkDataArrayPrivate
+ {
+diff -Naur ParaView_ref/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h ParaView_new/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h
+--- ParaView_ref/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h 2021-02-04 15:22:02.000000000 +0100
++++ ParaView_new/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h 2021-06-22 13:12:33.343455420 +0200
+@@ -27,6 +27,14 @@
+ #include <cmath>
+ #include <unordered_map>
+ #include <vector>
++#ifdef __GNUC__
++#include <features.h>
++# ifdef __GNUC_PREREQ
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++# endif
++#endif // __GNUC__
+
+ namespace detail
+ {
+diff -Naur ParaView_ref/VTK/Common/DataModel/vtkPiecewiseFunction.cxx ParaView_new/VTK/Common/DataModel/vtkPiecewiseFunction.cxx
+--- ParaView_ref/VTK/Common/DataModel/vtkPiecewiseFunction.cxx 2021-02-04 15:22:03.000000000 +0100
++++ ParaView_new/VTK/Common/DataModel/vtkPiecewiseFunction.cxx 2021-06-22 16:03:40.045670686 +0200
+@@ -24,7 +24,14 @@
+ #include <iterator>
+ #include <set>
+ #include <vector>
+-
++#ifdef __GNUC__
++#include <features.h>
++# ifdef __GNUC_PREREQ
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++# endif
++#endif // __GNUC__
+ vtkStandardNewMacro(vtkPiecewiseFunction);
+
+ // The Node structure
+diff -Naur ParaView_ref/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx ParaView_new/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx
+--- ParaView_ref/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx 2021-02-04 15:22:03.000000000 +0100
++++ ParaView_new/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx 2021-06-22 16:36:07.933839424 +0200
+@@ -27,6 +27,14 @@
+ #include "vtkHyperTreeGridNonOrientedCursor.h"
+
+ #include <cmath>
++#ifdef __GNUC__
++#include <features.h>
++# ifdef __GNUC_PREREQ
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++# endif
++#endif // __GNUC__
+
+ vtkStandardNewMacro(vtkHyperTreeGridThreshold);
+
+diff -Naur ParaView_ref/VTK/Rendering/Core/vtkColorTransferFunction.cxx ParaView_new/VTK/Rendering/Core/vtkColorTransferFunction.cxx
+--- ParaView_ref/VTK/Rendering/Core/vtkColorTransferFunction.cxx 2021-02-04 15:22:03.000000000 +0100
++++ ParaView_new/VTK/Rendering/Core/vtkColorTransferFunction.cxx 2021-06-23 11:25:49.494921639 +0200
+@@ -23,7 +23,15 @@
+ #include <iterator>
+ #include <set>
+ #include <vector>
+-
++#include <cmath>
++#ifdef __GNUC__
++#include <features.h>
++# ifdef __GNUC_PREREQ
++# if __GNUC_PREREQ(11,0)
++# include <limits>
++# endif
++# endif
++#endif // __GNUC__
+ vtkStandardNewMacro(vtkColorTransferFunction);
+
+ #define MY_MAX(x, y) ((x) > (y) ? (x) : (y))
--- /dev/null
+diff -Naur root_ref/core/foundation/inc/ROOT/libcpp_string_view.h root_new/core/foundation/inc/ROOT/libcpp_string_view.h
+--- root_ref/core/foundation/inc/ROOT/libcpp_string_view.h 2020-08-17 14:41:56.000000000 +0200
++++ root_new/core/foundation/inc/ROOT/libcpp_string_view.h 2021-05-21 12:52:20.897359685 +0200
+@@ -15,6 +15,7 @@
+ #error "Do not use libcpp_string_view.h directly. #include \"RWrap_libcpp_string_view.h\" instead."
+ #endif // RWrap_libcpp_string_view_h
+
++#include <limits>
+ /*
+ string_view synopsis
+
system_info :
{
rpm : []
- rpm_dev : ["qt5-devel"]
+ rpm_dev : ["qt5-qtbase-devel"]
apt : []
apt_dev : ["qttools5-dev", "libqt5svg5-dev", "libqt5x11extras5-dev", "qtxmlpatterns5-dev-tools"]
}
version_6_22_02:
{
get_source : "archive"
- patches : ['root-6.22.02.patch']
+ patches : ['root-6.22.02.patch', 'root-6.22.02-gcc-11.0.patch']
}
version_6_22_02_win: