Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package paraview for openSUSE:Factory checked in at 2021-06-06 22:40:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/paraview (Old) and /work/SRC/openSUSE:Factory/.paraview.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "paraview" Sun Jun 6 22:40:23 2021 rev:38 rq:897742 version:5.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/paraview/paraview.changes 2021-03-30 21:33:40.550481523 +0200 +++ /work/SRC/openSUSE:Factory/.paraview.new.1898/paraview.changes 2021-06-06 22:40:27.547372514 +0200 @@ -1,0 +2,16 @@ +Wed Jun 2 19:40:42 UTC 2021 - Atri Bhattacharya <[email protected]> + +- Add paraview-gcc11-limits.patch: Include limits header wherever + needed to fix compilation with GCC 11 + [https://gitlab.kitware.com/vtk/vtk/-/issues/18194]. + +------------------------------------------------------------------- +Sun May 23 00:00:41 UTC 2021 - Atri Bhattacharya <[email protected]> + +- Update to vetsion 5.9.1: + * See + https://gitlab.kitware.com/paraview/paraview/-/blob/master/Documentation/release/ParaView-5.9.1.md. +- Drop paraview-Adaptors-include-txx-file.patch: incorporated + upstream. + +------------------------------------------------------------------- Old: ---- ParaView-v5.9.0.tar.xz ParaViewGettingStarted-5.9.0.pdf ParaViewTutorial-5.9.0.pdf paraview-Adaptors-include-txx-file.patch New: ---- ParaView-v5.9.1.tar.xz ParaViewGettingStarted-5.9.1.pdf ParaViewTutorial-5.9.1.pdf paraview-gcc11-limits.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ paraview.spec ++++++ --- /var/tmp/diff_new_pack.j6sHUP/_old 2021-06-06 22:40:28.963375287 +0200 +++ /var/tmp/diff_new_pack.j6sHUP/_new 2021-06-06 22:40:28.963375287 +0200 @@ -31,7 +31,7 @@ %define __builder ninja Name: paraview -Version: 5.9.0 +Version: 5.9.1 Release: 0 Summary: Data analysis and visualization application License: BSD-3-Clause @@ -48,8 +48,8 @@ Patch2: fix-libharu-missing-m.patch # PATCH-FIX-UPSTREAM paraview-vtkioss-link-pthread.patch [email protected] -- Link against pthread when building vtkioss [https://gitlab.kitware.com/paraview/paraview/-/issues/20495] Patch3: paraview-vtkioss-link-pthread.patch -# PATCH-FIX-UPSTREAM paraview-Adaptors-include-txx-file.patch [email protected] -- Fix Cam adaptor template instantiation [https://gitlab.kitware.com/paraview/paraview/-/merge_requests/4729] -Patch4: paraview-Adaptors-include-txx-file.patch +# PATCH-FIX-UPSTREAM paraview-gcc11-limits.patch [email protected] -- Include limits header wherever required to fix compilation with GCC 11 [https://gitlab.kitware.com/vtk/vtk/-/issues/18194] +Patch4: paraview-gcc11-limits.patch BuildRequires: Mesa-devel BuildRequires: cgns-devel BuildRequires: cmake >= 3.13 @@ -114,7 +114,7 @@ Requires: gnuplot Requires: graphviz Requires(post): /sbin/ldconfig -Requires(postun): /sbin/ldconfig +Requires(postun):/sbin/ldconfig # Disable on aarch64 since GLES isn't supported for bundled vtk but is needed for paraview ExcludeArch: aarch64 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ ParaView-v5.9.0.tar.xz -> ParaView-v5.9.1.tar.xz ++++++ /work/SRC/openSUSE:Factory/paraview/ParaView-v5.9.0.tar.xz /work/SRC/openSUSE:Factory/.paraview.new.1898/ParaView-v5.9.1.tar.xz differ: char 26, line 1 ++++++ ParaViewGettingStarted-5.9.0.pdf -> ParaViewGettingStarted-5.9.1.pdf ++++++ ++++++ ParaViewTutorial-5.9.0.pdf -> ParaViewTutorial-5.9.1.pdf ++++++ ++++++ paraview-gcc11-limits.patch ++++++ Index: ParaView-v5.9.1/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h =================================================================== --- ParaView-v5.9.1.orig/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h +++ ParaView-v5.9.1/VTK/Common/Core/vtkGenericDataArrayLookupHelper.h @@ -25,6 +25,7 @@ #include "vtkIdList.h" #include <algorithm> #include <cmath> +#include <limits> #include <unordered_map> #include <vector> Index: ParaView-v5.9.1/VTK/Rendering/Core/vtkColorTransferFunction.cxx =================================================================== --- ParaView-v5.9.1.orig/VTK/Rendering/Core/vtkColorTransferFunction.cxx +++ ParaView-v5.9.1/VTK/Rendering/Core/vtkColorTransferFunction.cxx @@ -21,6 +21,7 @@ #include <algorithm> #include <cmath> #include <iterator> +#include <limits> #include <set> #include <vector> Index: ParaView-v5.9.1/VTK/Common/DataModel/vtkPiecewiseFunction.cxx =================================================================== --- ParaView-v5.9.1.orig/VTK/Common/DataModel/vtkPiecewiseFunction.cxx +++ ParaView-v5.9.1/VTK/Common/DataModel/vtkPiecewiseFunction.cxx @@ -22,6 +22,7 @@ #include <cassert> #include <cmath> #include <iterator> +#include <limits> #include <set> #include <vector> Index: ParaView-v5.9.1/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx =================================================================== --- ParaView-v5.9.1.orig/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx +++ ParaView-v5.9.1/VTK/Filters/HyperTree/vtkHyperTreeGridThreshold.cxx @@ -27,6 +27,7 @@ #include "vtkHyperTreeGridNonOrientedCursor.h" #include <cmath> +#include <limits> vtkStandardNewMacro(vtkHyperTreeGridThreshold);
