Compare commits

..

No commits in common. "factory" and "factory" have entirely different histories.

11 changed files with 93 additions and 226 deletions

View File

@ -1,22 +0,0 @@
From 11749efe6bbe30e8d9a88b624c356a45c3207fd2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Thu, 12 Dec 2024 17:27:49 +0100
Subject: [PATCH] Add missing libm link library for bundled ExodusII
---
ThirdParty/exodusII/vtkexodusII/CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt b/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
index e3b10bb9..8e4ccd6e 100644
--- a/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
+++ b/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
@@ -338,4 +338,5 @@ vtk_module_include(VTK::exodusII
"$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>")
vtk_module_link(VTK::exodusII
PRIVATE
+ m
Threads::Threads)
--
2.47.1

View File

@ -1,4 +1,4 @@
From c048ec987bf06d76ca19a292af2b5d6641cf4587 Mon Sep 17 00:00:00 2001 From 2b930f694c2275b892772857002724b9fdcae6c5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de> From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Thu, 16 Jul 2020 03:52:23 +0200 Date: Thu, 16 Jul 2020 03:52:23 +0200
Subject: [PATCH 1/2] Correct GL_BACK/GL_BACK_LEFT mapping on GLES Subject: [PATCH 1/2] Correct GL_BACK/GL_BACK_LEFT mapping on GLES
@ -8,43 +8,26 @@ just GL_BACK, so there is no need to remap it. Desktop GL may have
LEFT and RIGHT attached at the simultaneously, so one of the buffers LEFT and RIGHT attached at the simultaneously, so one of the buffers
has to be selected when querying the attributes. has to be selected when querying the attributes.
--- ---
Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx | 8 ++++++++ Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx | 5 +++++
1 file changed, 8 insertions(+) 1 file changed, 5 insertions(+)
diff --git a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx diff --git a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
index 514e960b..394128b0 100644 index 9bbbc2ba54..4bda9330b6 100644
--- a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx --- a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
+++ b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx +++ b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
@@ -890,6 +890,11 @@ bool vtkOpenGLRenderWindow::GetUsingSRGBColorSpace() @@ -849,6 +849,10 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba)
{
this->MakeCurrent();
+#ifdef GL_ES_VERSION_3_0
+ // GLES only has the GL_BACK color
+ // attachment for the default framebuffer
+ return this->UseSRGBColorSpace;
+#else
GLint attachment = GL_BACK_LEFT;
#ifdef GL_DRAW_BUFFER
glGetIntegerv(GL_DRAW_BUFFER, &attachment);
@@ -923,6 +928,7 @@ bool vtkOpenGLRenderWindow::GetUsingSRGBColorSpace()
}
vtkDebugMacro(<< "Error getting color encoding!");
return false;
+#endif
}
vtkDebugMacro(<< "OpenGL is not initialized yet!");
@@ -950,6 +956,7 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba)
#ifdef GL_DRAW_BUFFER #ifdef GL_DRAW_BUFFER
glGetIntegerv(GL_DRAW_BUFFER, &attachment); glGetIntegerv(GL_DRAW_BUFFER, &attachment);
#endif #endif
+#ifdef GL_ES_VERSION_3_0 +#ifdef GL_ES_VERSION_3_0
+ // GLES only has the GL_BACK color
+ // attachment for the default framebuffer
+#else
// GL seems odd with its handling of left/right. // GL seems odd with its handling of left/right.
// if it says we are using GL_FRONT or GL_BACK // if it says we are using GL_FRONT or GL_BACK
// then convert those to GL_FRONT_LEFT and // then convert those to GL_FRONT_LEFT and
@@ -971,6 +978,7 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba) @@ -861,6 +865,7 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba)
// before querying the color buffer sizes. {
attachment = GL_BACK_LEFT; attachment = GL_BACK_LEFT;
} }
+#endif +#endif
@ -52,5 +35,5 @@ index 514e960b..394128b0 100644
// make sure we clear any errors before we start // make sure we clear any errors before we start
// otherwise we may get incorrect results // otherwise we may get incorrect results
-- --
2.47.1 2.27.0

View File

@ -1,39 +0,0 @@
From 18b733fb082bb98ba37d16e5b184f6d959d0f573 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Thu, 12 Dec 2024 20:02:38 +0100
Subject: [PATCH] Fix fmt includes again
Unfortunately, VTK upstream imports new releases and
creates the same regressions again and again ...
---
ThirdParty/ioss/vtkioss/Ioss_Field.C | 1 +
ThirdParty/ioss/vtkioss/Ioss_VariableType.C | 1 +
2 files changed, 2 insertions(+)
diff --git a/ThirdParty/ioss/vtkioss/Ioss_Field.C b/ThirdParty/ioss/vtkioss/Ioss_Field.C
index fbb2100c..8909eef5 100644
--- a/ThirdParty/ioss/vtkioss/Ioss_Field.C
+++ b/ThirdParty/ioss/vtkioss/Ioss_Field.C
@@ -12,6 +12,7 @@
#include <cstdint>
#include "vtk_fmt.h"
#include VTK_FMT(fmt/ostream.h)
+#include VTK_FMT(fmt/ranges.h)
#include <iostream>
#include <string>
#include <vector>
diff --git a/ThirdParty/ioss/vtkioss/Ioss_VariableType.C b/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
index b081dc36..4f1a841f 100644
--- a/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
+++ b/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
@@ -19,6 +19,7 @@
#include VTK_FMT(fmt/core.h)
#include VTK_FMT(fmt/format.h)
#include VTK_FMT(fmt/ostream.h)
+#include VTK_FMT(fmt/ranges.h)
#include <map>
#include <sstream>
#include <string>
--
2.47.1

View File

@ -1,26 +0,0 @@
From 0d9be7530127da2a42644a3c5b78faaaaec5c354 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Thu, 12 Dec 2024 23:19:22 +0100
Subject: [PATCH] Fix missing GLAD symbol mangling in Rendering/GL2PSOpenGL2
The library links to and uses symbols from the GLAD GL wrapper library,
thus it must use the wrapped GL library calls.
---
Rendering/GL2PSOpenGL2/vtkOpenGLGL2PSHelperImpl.cxx | 1 +
1 file changed, 1 insertion(+)
diff --git a/Rendering/GL2PSOpenGL2/vtkOpenGLGL2PSHelperImpl.cxx b/Rendering/GL2PSOpenGL2/vtkOpenGLGL2PSHelperImpl.cxx
index eece0354..91a22275 100644
--- a/Rendering/GL2PSOpenGL2/vtkOpenGLGL2PSHelperImpl.cxx
+++ b/Rendering/GL2PSOpenGL2/vtkOpenGLGL2PSHelperImpl.cxx
@@ -2,6 +2,7 @@
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkOpenGLGL2PSHelperImpl.h"
+#include "vtk_glad.h"
#include "vtkActor.h"
#include "vtkCamera.h"
--
2.47.1

View File

@ -1,7 +1,7 @@
From 59ad85c74a850736ad4fcdcb9dd00779a7fff0ed Mon Sep 17 00:00:00 2001 From 068773541005f8d8f027b373a01c821788439c8b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de> From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
Date: Sun, 21 Nov 2021 22:51:36 +0100 Date: Sun, 21 Nov 2021 22:51:36 +0100
Subject: [PATCH 2/2] Use GL_DRAW_BUFFER0 instead of GL_DRAW_BUFFER for GLES Subject: [PATCH] Use GL_DRAW_BUFFER0 instead of GL_DRAW_BUFFER for GLES
compatibility compatibility
ARB_draw_buffers is part of GL 2.0, so GL_DRAW_BUFFERS0 is always ARB_draw_buffers is part of GL 2.0, so GL_DRAW_BUFFERS0 is always
@ -14,18 +14,18 @@ glDrawBuffer.
At least with MESA, GL_DRAW_BUFFER and GL_DRAW_BUFFER0 always return the At least with MESA, GL_DRAW_BUFFER and GL_DRAW_BUFFER0 always return the
same value. GL_DRAW_BUFFERn is also used in several places already. same value. GL_DRAW_BUFFERn is also used in several places already.
--- ---
.../ContextOpenGL2/vtkOpenGLContextBufferId.cxx | 4 ++-- .../ContextOpenGL2/vtkOpenGLContextBufferId.cxx | 2 +-
.../ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h | 4 ++-- .../ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h | 2 +-
Rendering/External/vtkExternalOpenGLRenderWindow.cxx | 2 +- Rendering/External/vtkExternalOpenGLRenderWindow.cxx | 2 +-
Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx | 8 ++++---- Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx | 8 ++++----
Rendering/OpenGL2/vtkOpenGLState.cxx | 12 ++++++------ Rendering/OpenGL2/vtkOpenGLState.cxx | 12 ++++++------
5 files changed, 15 insertions(+), 15 deletions(-) 5 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx b/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx diff --git a/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx b/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx
index 9b6c16d4..af9d5a11 100644 index c0e0f8909f..dd6a93bde3 100644
--- a/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx --- a/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx
+++ b/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx +++ b/Rendering/ContextOpenGL2/vtkOpenGLContextBufferId.cxx
@@ -129,8 +129,8 @@ vtkIdType vtkOpenGLContextBufferId::GetPickedItem(int x, int y) @@ -130,8 +130,8 @@ vtkIdType vtkOpenGLContextBufferId::GetPickedItem(int x, int y)
// pixel x,y (instead of pixel 0,0 to work around pixel ownership test). // pixel x,y (instead of pixel 0,0 to work around pixel ownership test).
GLint savedDrawBuffer = GL_BACK_LEFT; GLint savedDrawBuffer = GL_BACK_LEFT;
@ -37,7 +37,7 @@ index 9b6c16d4..af9d5a11 100644
vtkOpenGLState::ScopedglEnableDisable dsaver(ostate, GL_DEPTH_TEST); vtkOpenGLState::ScopedglEnableDisable dsaver(ostate, GL_DEPTH_TEST);
diff --git a/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h b/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h diff --git a/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h b/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h
index 0bd7332f..6ac52956 100644 index 29e5f47671..7acb87e25f 100644
--- a/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h --- a/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h
+++ b/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h +++ b/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2DPrivate.h
@@ -306,8 +306,8 @@ public: @@ -306,8 +306,8 @@ public:
@ -52,10 +52,10 @@ index 0bd7332f..6ac52956 100644
this->SavedDrawBuffer = GL_BACK_LEFT; this->SavedDrawBuffer = GL_BACK_LEFT;
#endif #endif
diff --git a/Rendering/External/vtkExternalOpenGLRenderWindow.cxx b/Rendering/External/vtkExternalOpenGLRenderWindow.cxx diff --git a/Rendering/External/vtkExternalOpenGLRenderWindow.cxx b/Rendering/External/vtkExternalOpenGLRenderWindow.cxx
index 265c7338..9ad4640b 100644 index 445bfce802..5e1f2f4b24 100644
--- a/Rendering/External/vtkExternalOpenGLRenderWindow.cxx --- a/Rendering/External/vtkExternalOpenGLRenderWindow.cxx
+++ b/Rendering/External/vtkExternalOpenGLRenderWindow.cxx +++ b/Rendering/External/vtkExternalOpenGLRenderWindow.cxx
@@ -47,7 +47,7 @@ void vtkExternalOpenGLRenderWindow::Start() @@ -58,7 +58,7 @@ void vtkExternalOpenGLRenderWindow::Start()
// For stereo, render the correct eye based on the OpenGL buffer mode // For stereo, render the correct eye based on the OpenGL buffer mode
GLint bufferType; GLint bufferType;
@ -65,12 +65,12 @@ index 265c7338..9ad4640b 100644
vtkRenderer* renderer; vtkRenderer* renderer;
for (this->GetRenderers()->InitTraversal(sit); for (this->GetRenderers()->InitTraversal(sit);
diff --git a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx diff --git a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
index 394128b0..17d2004c 100644 index 25b521bd0d..426aa69f08 100644
--- a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx --- a/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
+++ b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx +++ b/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx
@@ -896,8 +896,8 @@ bool vtkOpenGLRenderWindow::GetUsingSRGBColorSpace() @@ -794,8 +794,8 @@ bool vtkOpenGLRenderWindow::GetUsingSRGBColorSpace()
return this->UseSRGBColorSpace; this->MakeCurrent();
#else
GLint attachment = GL_BACK_LEFT; GLint attachment = GL_BACK_LEFT;
-#ifdef GL_DRAW_BUFFER -#ifdef GL_DRAW_BUFFER
- glGetIntegerv(GL_DRAW_BUFFER, &attachment); - glGetIntegerv(GL_DRAW_BUFFER, &attachment);
@ -79,7 +79,7 @@ index 394128b0..17d2004c 100644
#endif #endif
// GL seems odd with its handling of left/right. // GL seems odd with its handling of left/right.
// if it says we are using GL_FRONT or GL_BACK // if it says we are using GL_FRONT or GL_BACK
@@ -953,8 +953,8 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba) @@ -854,8 +854,8 @@ int vtkOpenGLRenderWindow::GetColorBufferSizes(int* rgba)
{ {
this->MakeCurrent(); this->MakeCurrent();
GLint attachment = GL_BACK_LEFT; GLint attachment = GL_BACK_LEFT;
@ -89,12 +89,12 @@ index 394128b0..17d2004c 100644
+ glGetIntegerv(GL_DRAW_BUFFER0, &attachment); + glGetIntegerv(GL_DRAW_BUFFER0, &attachment);
#endif #endif
#ifdef GL_ES_VERSION_3_0 #ifdef GL_ES_VERSION_3_0
// GL seems odd with its handling of left/right. // GLES only has the GL_BACK color
diff --git a/Rendering/OpenGL2/vtkOpenGLState.cxx b/Rendering/OpenGL2/vtkOpenGLState.cxx diff --git a/Rendering/OpenGL2/vtkOpenGLState.cxx b/Rendering/OpenGL2/vtkOpenGLState.cxx
index bdafa26e..ecef68dd 100644 index 24f23a5c44..aca4e4f247 100644
--- a/Rendering/OpenGL2/vtkOpenGLState.cxx --- a/Rendering/OpenGL2/vtkOpenGLState.cxx
+++ b/Rendering/OpenGL2/vtkOpenGLState.cxx +++ b/Rendering/OpenGL2/vtkOpenGLState.cxx
@@ -206,8 +206,8 @@ void vtkOpenGLState::CheckState() @@ -217,8 +217,8 @@ void vtkOpenGLState::CheckState()
error = true; error = true;
} }
unsigned int sval; unsigned int sval;
@ -105,7 +105,7 @@ index bdafa26e..ecef68dd 100644
sval = cs.DrawBinding.GetDrawBuffer(0); sval = cs.DrawBinding.GetDrawBuffer(0);
if (sval == GL_BACK_LEFT) if (sval == GL_BACK_LEFT)
{ {
@@ -495,8 +495,8 @@ void vtkOpenGLState::vtkglBindFramebuffer(unsigned int target, unsigned int val) @@ -504,8 +504,8 @@ void vtkOpenGLState::vtkglBindFramebuffer(unsigned int target, unsigned int val)
{ {
cs.DrawBinding.Binding = val; cs.DrawBinding.Binding = val;
::glBindFramebuffer(GL_DRAW_FRAMEBUFFER, val); ::glBindFramebuffer(GL_DRAW_FRAMEBUFFER, val);
@ -116,7 +116,7 @@ index bdafa26e..ecef68dd 100644
#endif #endif
} }
} }
@@ -1625,8 +1625,8 @@ void vtkOpenGLState::ResetFramebufferBindings() @@ -1626,8 +1626,8 @@ void vtkOpenGLState::ResetFramebufferBindings()
{ {
auto& cs = this->Stack.top(); auto& cs = this->Stack.top();
::glGetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, (int*)&cs.DrawBinding.Binding); ::glGetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, (int*)&cs.DrawBinding.Binding);
@ -128,5 +128,5 @@ index bdafa26e..ecef68dd 100644
::glGetIntegerv(GL_READ_FRAMEBUFFER_BINDING, (int*)&cs.ReadBinding.Binding); ::glGetIntegerv(GL_READ_FRAMEBUFFER_BINDING, (int*)&cs.ReadBinding.Binding);
-- --
2.47.1 2.33.1

View File

@ -0,0 +1,16 @@
--- a/Rendering/CellGrid/vtkDGOpenGLRenderer.cxx_orig 2023-12-28 06:22:40.696501865 +0100
+++ b/Rendering/CellGrid/vtkDGOpenGLRenderer.cxx 2023-12-28 06:23:24.633470522 +0100
@@ -1046,11 +1046,13 @@
}
// III. Render draw
+#ifndef GL_ES_VERSION_3_0
if (renderer->GetUseImageBasedLighting() && renderer->GetEnvironmentTexture())
{
vtkOpenGLState* ostate = oglRenWin->GetState();
ostate->vtkglEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
}
+#endif
// a. Update shaders
state->CellBO.VAO->Bind();
// state->LastBoundBO = &state->CellBO; // We only bind the one...

3
VTK-9.3.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fdc7b9295225b34e4fdddc49cd06e66e94260cb00efee456e0f66568c9681be9
size 99932810

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c253b0c8d002aaf98871c6d0cb76afc4936c301b72358a08d5f3f72ef8bc4529
size 118618515

View File

@ -0,0 +1,18 @@
--- a/Rendering/LICOpenGL2/vtk.module_orig 2023-12-27 17:36:03.966016939 +0100
+++ b/Rendering/LICOpenGL2/vtk.module 2023-12-27 17:36:40.199591808 +0100
@@ -14,6 +14,7 @@
VTK::CommonDataModel
VTK::CommonExecutionModel
VTK::RenderingOpenGL2
+ VTK::RenderingCore
PRIVATE_DEPENDS
VTK::CommonMath
VTK::CommonSystem
@@ -22,7 +23,6 @@
VTK::IOXML
VTK::ImagingCore
VTK::ImagingSources
- VTK::RenderingCore
VTK::glew
VTK::opengl
VTK::vtksys

View File

@ -1,60 +1,3 @@
-------------------------------------------------------------------
Sun Jan 5 04:39:42 UTC 2025 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Add bcond for mysql, keep it disabled by default. Make libmysql
devel dependency conditional.
- Remove obsolete netcdf-c++ dependency from devel package.
-------------------------------------------------------------------
Mon Dec 30 18:53:44 UTC 2024 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Update to version 9.4.1, see:
https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/release/9.4.md
-------------------------------------------------------------------
Sun Dec 22 03:31:28 UTC 2024 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Fix broken LD_LIBRARY_PATH mangling for openmpi builds
- Rebase GLES patches:
* 0001-Correct-GL_BACK-GL_BACK_LEFT-mapping-on-GLES.patch
* 0002-Use-GL_DRAW_BUFFER0-instead-of-GL_DRAW_BUFFER-for-GL.patch
- Drop obsolete patch:
* Do-not-request-CUBE_MAP_SEAMLESS-on-GLES.patch
-------------------------------------------------------------------
Thu Dec 12 16:28:03 UTC 2024 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- - Update to version 9.4.0, see:
https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/release/9.4.md
- Drop upstream patches:
* 0001-ioss-update-fmt-includes.patch
- Add patches:
* 0001-Add-missing-libm-link-library-for-bundled-ExodusII.patch
* 0001-Fix-fmt-includes-again.patch
* 0001-Fix-missing-GLAD-symbol-mangling-in-Rendering-GL2PSO.patch
-------------------------------------------------------------------
Fri Jun 29 00:00:00 UTC 2024 - Vicente Adolfo Bolea Sanchez <vicente.bolea@kitware.com>
- Update to version 9.3.1, see:
https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/release/9.3.md
- Add patches:
* 0001-ioss-update-fmt-includes.patch
- Drop upstream patches:
* fix_rendering_core_linkage.patch
- New features and bugfixes:
* The vendored `fmt` library has been updated to 10.1.1.
* Fix SIGSEGV on `vtkCompositeDataProbeFilter`.
* Add `ComponentName` in `vtkImageAlgorithm` and subclasses.
* Fix UT record support in `vtkDICOMParser`
* Fix for reading binary XML files > 2Gb on Windows.
* Fix `ResampleWithDataSet` with an HTG source using MPI.
* Fix `HyperTree` iterator in `ExtractElements` method.
* Fix `vtkOpenGLRenderWindow::GetZBufferData` in OpenGL ES 3.
* Fix GPU Ray Cast Volume Rendering with `ModelTransformMatrix`.
* Fix Off-axis stereo image separation issue.
* Fix Display Attribute Inheritance `vtkOpenGLGlyph3DMapper`.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 20 13:26:32 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org> Tue Feb 20 13:26:32 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -1,7 +1,7 @@
# #
# spec file for package vtk # spec file
# #
# Copyright (c) 2025 SUSE LLC # Copyright (c) 2023 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -21,7 +21,6 @@
%bcond_with examples %bcond_with examples
%bcond_with documentation %bcond_with documentation
%bcond_with testing %bcond_with testing
%bcond_with mysql
%ifarch %arm aarch64 %ifarch %arm aarch64
%bcond_without gles %bcond_without gles
@ -40,16 +39,16 @@
%bcond_with fmt %bcond_with fmt
%bcond_with haru %bcond_with haru
%if 0%{?sle_version} <= 150400 %if 0%{?sle_version} <= 150400
%bcond_without system_pegtl %bcond_without pegtl
%else %else
%bcond_with system_pegtl %bcond_with pegtl
%endif %endif
%bcond_with pugixml %bcond_with pugixml
%else %else
%bcond_without fast_float %bcond_without fast_float
%bcond_without fmt %bcond_without fmt
%bcond_without haru %bcond_without haru
%bcond_with system_pegtl %bcond_with pegtl
%bcond_without pugixml %bcond_without pugixml
%endif %endif
@ -93,9 +92,9 @@
%define shlib %{vtklib} %define shlib %{vtklib}
Name: vtk%{?my_suffix} Name: vtk%{?my_suffix}
Version: 9.4.1 Version: 9.3.0
Release: 0 Release: 0
%define series 9.4 %define series 9.3
Summary: The Visualization Toolkit - A high level 3D visualization library Summary: The Visualization Toolkit - A high level 3D visualization library
# This is a variant BSD license, a cross between BSD and ZLIB. # This is a variant BSD license, a cross between BSD and ZLIB.
# For all intents, it has the same rights and restrictions as BSD. # For all intents, it has the same rights and restrictions as BSD.
@ -109,22 +108,20 @@ Source: https://www.vtk.org/files/release/%{series}/VTK-%{version}.tar.g
Source99: vtk-rpmlintrc Source99: vtk-rpmlintrc
# PATCH-FIX-OPENSUSE bundled_libharu_add_missing_libm.patch stefan.bruens@rwth-aachen.de -- Add missing libm for linking (gh#libharu/libharu#213) # PATCH-FIX-OPENSUSE bundled_libharu_add_missing_libm.patch stefan.bruens@rwth-aachen.de -- Add missing libm for linking (gh#libharu/libharu#213)
Patch1: bundled_libharu_add_missing_libm.patch Patch1: bundled_libharu_add_missing_libm.patch
# PATCH-FIX-UPSTREAM
Patch2: fix_rendering_core_linkage.patch
# PATCH-FIX-OPENSUSE -- Fix building with Qt GLES builds # PATCH-FIX-OPENSUSE -- Fix building with Qt GLES builds
Patch7: 0001-Add-missing-guard-required-for-GLES-to-disable-stere.patch Patch7: 0001-Add-missing-guard-required-for-GLES-to-disable-stere.patch
# PATCH-FIX-UPSTREAM -- Fix building with Qt GLES builds # PATCH-FIX-UPSTREAM -- Fix building with Qt GLES builds
Patch8: 0001-Correct-GL_BACK-GL_BACK_LEFT-mapping-on-GLES.patch Patch8: 0001-Correct-GL_BACK-GL_BACK_LEFT-mapping-on-GLES.patch
# PATCH-FIX-UPSTREAM -- Fix building with Qt GLES builds # PATCH-FIX-UPSTREAM -- Fix building with Qt GLES builds
Patch9: 0002-Use-GL_DRAW_BUFFER0-instead-of-GL_DRAW_BUFFER-for-GL.patch Patch9: 0002-Use-GL_DRAW_BUFFER0-instead-of-GL_DRAW_BUFFER-for-GL.patch
# PATCH-FIX-OPENSUSE -- Fix building with Qt GLES builds
Patch10: Do-not-request-CUBE_MAP_SEAMLESS-on-GLES.patch
# PATCH-FIX-UPSTREAM -- Always create python package metadata (egg-info) # PATCH-FIX-UPSTREAM -- Always create python package metadata (egg-info)
Patch17: 0001-Always-generate-Python-Metadata-when-WRAP_PYTHON-is-.patch Patch17: 0001-Always-generate-Python-Metadata-when-WRAP_PYTHON-is-.patch
# PATCH-FIX-UPSTREAM -- Copy generated metadata to the right directory # PATCH-FIX-UPSTREAM -- Copy generated metadata to the right directory
Patch18: 0001-Consider-VTK_PYTHON_SITE_PACKAGES_SUFFIX-for-Python-.patch Patch18: 0001-Consider-VTK_PYTHON_SITE_PACKAGES_SUFFIX-for-Python-.patch
# PATCH-FIX-UPSTREAM
Patch19: 0001-Add-missing-libm-link-library-for-bundled-ExodusII.patch
# PATCH-FIX-OPENSUSE
Patch20: 0001-Fix-fmt-includes-again.patch
# PATCH-FIX-OPENSUSE
Patch21: 0001-Fix-missing-GLAD-symbol-mangling-in-Rendering-GL2PSO.patch
BuildRequires: cgns-devel BuildRequires: cgns-devel
BuildRequires: chrpath BuildRequires: chrpath
BuildRequires: cmake >= 3.12 BuildRequires: cmake >= 3.12
@ -136,9 +133,7 @@ BuildRequires: libboost_graph-devel
BuildRequires: libboost_graph_parallel-devel BuildRequires: libboost_graph_parallel-devel
BuildRequires: libboost_serialization-devel BuildRequires: libboost_serialization-devel
BuildRequires: libjpeg-devel BuildRequires: libjpeg-devel
%if %{with mysql}
BuildRequires: libmysqlclient-devel BuildRequires: libmysqlclient-devel
%endif
BuildRequires: libtiff-devel BuildRequires: libtiff-devel
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-numpy-devel BuildRequires: python3-numpy-devel
@ -203,7 +198,7 @@ BuildRequires: cmake(FastFloat)
%if %{with pugixml} %if %{with pugixml}
BuildRequires: pkgconfig(pugixml) >= 1.11 BuildRequires: pkgconfig(pugixml) >= 1.11
%endif %endif
%if %{with system_pegtl} %if %{with pegtl}
BuildRequires: (pegtl-devel >= 2.0.0 with pegtl-devel < 3.0) BuildRequires: (pegtl-devel >= 2.0.0 with pegtl-devel < 3.0)
%endif %endif
%if %{with testing} %if %{with testing}
@ -247,7 +242,8 @@ Requires: gcc-c++
Requires: hdf5-devel Requires: hdf5-devel
%{?with_mpi:Requires: hdf5-%{mpi_flavor}-devel} %{?with_mpi:Requires: hdf5-%{mpi_flavor}-devel}
Requires: libjpeg-devel Requires: libjpeg-devel
%{?with_mysql:Requires: libmysqlclient-devel} Requires: libmysqlclient-devel
Requires: libnetcdf_c++-devel
Requires: libtiff-devel Requires: libtiff-devel
# not strictly necessary, but required by VTKs cmake files # not strictly necessary, but required by VTKs cmake files
Requires: python3-%{name} = %{version} Requires: python3-%{name} = %{version}
@ -402,10 +398,15 @@ languages.
%prep %prep
%setup -n VTK-%{version} %setup -n VTK-%{version}
%patch -P 1 -p1 %patch -P 1 -p1
%patch -P 2 -p1
%if %{with gles} %if %{with gles}
%autopatch -m 7 -M 10 -p1 %patch -P 7 -p1
%patch -P 8 -p1
%patch -P 9 -p1
%patch -P 10 -p1
%endif %endif
%autopatch -m 17 -p1 %patch -P 17 -p1
%patch -P 18 -p1
# Replace relative path ../../../../VTKData with %%{_datadir}/vtkdata # Replace relative path ../../../../VTKData with %%{_datadir}/vtkdata
# otherwise it will break on symlinks. # otherwise it will break on symlinks.
@ -420,9 +421,6 @@ sed -i -e '/set(vtk_enable_tests "OFF")/ s/.*/#\0/' CMakeLists.txt
# Allow other versions for fast_float # Allow other versions for fast_float
sed -i -e '/VERSION .*/ d' ThirdParty/fast_float/CMakeLists.txt sed -i -e '/VERSION .*/ d' ThirdParty/fast_float/CMakeLists.txt
# Keep LD_LIBRARY_PATH intact from mpivars
sed -i -e '/LD_LIBRARY_PATH/ s/"$/:$ENV{LD_LIBRARY_PATH}"/' GUISupport/QtQuick/qml/CMakeLists.txt
%build %build
%if %{with mpi} %if %{with mpi}
source %{mpiprefix}/bin/mpivars.sh source %{mpiprefix}/bin/mpivars.sh
@ -487,13 +485,10 @@ export CXXFLAGS="%{optflags}"
-DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=%{?with_gl2ps:ON}%{!?with_gl2ps:OFF} \ -DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=%{?with_gl2ps:ON}%{!?with_gl2ps:OFF} \
-DVTK_MODULE_USE_EXTERNAL_VTK_ioss:BOOL=OFF \ -DVTK_MODULE_USE_EXTERNAL_VTK_ioss:BOOL=OFF \
-DVTK_MODULE_USE_EXTERNAL_VTK_libharu=%{?with_haru:ON}%{!?with_haru:OFF} \ -DVTK_MODULE_USE_EXTERNAL_VTK_libharu=%{?with_haru:ON}%{!?with_haru:OFF} \
-DVTK_MODULE_USE_EXTERNAL_VTK_pegtl=%{?with_system_pegtl:YES}%{!?with_system_pegtl:NO} \
-DVTK_MODULE_USE_EXTERNAL_VTK_pugixml=%{?with_pugixml:ON}%{!?with_pugixml:OFF} \ -DVTK_MODULE_USE_EXTERNAL_VTK_pugixml=%{?with_pugixml:ON}%{!?with_pugixml:OFF} \
-DVTK_MODULE_USE_EXTERNAL_VTK_token:BOOL=OFF \ -DVTK_MODULE_ENABLE_VTK_ioss:BOOL=%{!?with_mpi:WANT}%{?with_mpi:NO} \
-DVTK_MODULE_ENABLE_VTK_ioss:STRING=%{!?with_mpi:WANT}%{?with_mpi:NO} \ -DVTK_MODULE_ENABLE_VTK_pegtl=%{?with_pegtl:YES}%{!?with_pegtl:NO} \
-DVTK_MODULE_ENABLE_VTK_pegtl:STRING=YES \ -DVTK_MODULE_ENABLE_VTK_zfp:BOOL=NO \
-DVTK_MODULE_ENABLE_VTK_zfp:STRING=NO \
-DVTK_MODULE_ENABLE_VTK_IOMySQL=%{?with_mysql:ON}%{!?with_mysql:NO} \
%{nil} %{nil}
%cmake_build %cmake_build
@ -616,7 +611,6 @@ find %{buildroot} . -name vtk.cpython-3*.pyc -print -delete # drop unreproducibl
%{my_bindir}/%{pkgname}ParseJava %{my_bindir}/%{pkgname}ParseJava
%{my_bindir}/%{pkgname}WrapPython %{my_bindir}/%{pkgname}WrapPython
%{my_bindir}/%{pkgname}WrapPythonInit %{my_bindir}/%{pkgname}WrapPythonInit
%{my_bindir}/%{pkgname}WrapSerDes
%{my_libdir}/*.so %{my_libdir}/*.so
%{my_libdir}/vtk-%{series} %{my_libdir}/vtk-%{series}
%{?with_mpi: %dir %{my_libdir}/cmake/} %{?with_mpi: %dir %{my_libdir}/cmake/}