pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/graphics/vtk
Module Name: pkgsrc
Committed By: gdt
Date: Sat Nov 1 23:39:42 UTC 2025
Modified Files:
pkgsrc/graphics/vtk: Makefile PLIST distinfo
Log Message:
graphics/vtk: Update to 9.5.2
vtk 9.4.1 in pkgsrc does not build, because (probably) something it
depends on has been updated, and there's API drift. Rather than debug
that, I tried 9.5.2, which was straightforward, except that PLIST
adjustment was very very messy.
With this update, pcl still builds. I'm therefore saying that what
I'm committing is on balance much better and we should fix that up,
instead of working on 9.4. I'm happy to revert if others should see
it differently (and put this in wip and use it myself).
Packaging changes:
Extract VERISION_MINOR (e.g. "9.5") into a variable so one can
examine it.
Add PRINT_PLIST_AWK to convert the minor version back into the
variable.
Upstream NEWS highlights:
Annotation
Grid Axes in VTK VTK now has the vtkGridAxesActor3D that is the
successor to the vtkCubeAxesActor for cube axes annotation. This
new actor was the default cube axes grid for ParaView and uses
vtkAxisActor underneath the covers for better label placement
strategy over its precursor. Grid Axes Actor 3D
DataModel
Add AxisAligned and Offset options to vtkPlane vtkPlane now has
AxisAligned and Offset options.
Introduce implicit Frustum and widget
vtkDataSet: Add GetMinSpatialDimension vtkDataSet has a new method
GetMinSpatialDimension that returns the minimum spatial dimension
of the dataset.
Filters
Add AxisAlignedReflectionFilter
Add AxisAlignedTransformFilter
Add FillMaterial option to HTG Geometry filter
Add option to add cells to the output of vtkPCANormalEstimation
Add Gaussian integration strategy
Add support for oriented images in vtkProbeFilter
Add vtkQuadricDecimation::Set/GetMaximumError()
Append filters: Multithread and Improve Performance
Introduce vtkExplodeDataSet filter
I/O
Add AVMESH reader
Add external memory support for vtkConduitSource
Add vtkFidesWriter for writing out data in ADIOS2 BP format
Import GLTF scenes from in-memory streams
GLTF Stream Import Example
netcdf: Enable CDF5 format VTK’s internal netcdf now enables the CDF5 format.
VTK Conduit now supports pyramids and wedges
HyperTreeGrid support has been added to the VTKHDF specification
and reader.
Rendering
Add new setting to specify 2D point shape in vtkProperty
Add option to independently set thickness of cell edges and lines
Add Prolab Transfer function interpolation support
Add vtkFastLabeledDataMapper
Add vtkLightWidget to path-traced environments
Build
C++17 is now required for VTK :warning: BREAKING_CHANGES
VTK now requires C++17 compiler support. Minimum required compiler versions have been updated (e.g., GCC 8.0, Clang 5.0, MSVC 2017, Apple Clang 10.0, Intel ICC 19.0).
Deprecations/Removals
All APIs that were deprecated in 9.3 are now removed.
vtkExtentSplitter::Min and ::Max have been deprecated in favor of std::min and std::max.
vtkXMLReader::Min and ::Max have been deprecated in favor of std::min and std::max.
Classes like vtkHierarchicalBoxDataSet, vtkHierarchicalBoxDataSetAlgorithm, related geometry filters, and XML readers/writers are deprecated. Use vtkOverlappingAMR versions instead.
vtkTypedDataArray, vtkTypedDataArrayIterator, vtkMappedDataArray,
vtkCPExodusIINodalCoordinatesTemplate, and
vtkCPExodusIIResultsArrayTemplate are deprecated. Use
vtkGenericDataArray or
vtkAOSDataArrayTemplate/vtkSOADataArrayTemplate alternatives.
vtkHyperTreeGridVisibleLeavesSize is deprecated in favor of
vtkHyperTreeGridGenerateFields.
Several public members related to selection and decimation level
in vtkAdaptiveDataSetSurfaceFilter (used by HTG Surface
Representation) are now deprecated and have no effect (e.g.,
Set/GetCircleSelection, Set/GetDynamicDecimateLevelMax). (Author
notes)
vtkOpenXRManager::(Set|Get)UseDepthExtension are deprecated and now no-op. Use the versions in vtkOpenXRRenderWindow instead.
VTKHDF Reader: Remove the MergeParts option
The MergeParts option of the vtkHDFReader allowed getting a unique
Unstructured Grid or PolyData dataset after reading multiple
parts. This option has been deprecated and has no effect
anymore. Now, multi-piece datasets properly output a
vtkPartitionedDataset containing non merged parts. Single-piece
datasets still output simple vtkUnstructuredGrid or
vtkPolyData. This changes the default behavior of the reader:
Unstructured Grid and PolyData multi-piece datasets that used to
be read with MergeParts (default) as a single piece are now read
as a partitioned dataset. If MergeParts was disabled manually,
only the single-piece case will be read differently: instead of
forcing the output to be a partitioned dataset with a single
piece, the output is now directly the non composite type,
Unstructured Grid or PolyData.
Users should replace the use of MergeParts by manually merging
parts using the vtkMergeBlocks or vtkAppendDatasets manually
instead.
To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 pkgsrc/graphics/vtk/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/graphics/vtk/PLIST
cvs rdiff -u -r1.15 -r1.16 pkgsrc/graphics/vtk/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/graphics/vtk/Makefile
diff -u pkgsrc/graphics/vtk/Makefile:1.58 pkgsrc/graphics/vtk/Makefile:1.59
--- pkgsrc/graphics/vtk/Makefile:1.58 Thu Oct 23 20:37:49 2025
+++ pkgsrc/graphics/vtk/Makefile Sat Nov 1 23:39:42 2025
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.58 2025/10/23 20:37:49 wiz Exp $
+# $NetBSD: Makefile,v 1.59 2025/11/01 23:39:42 gdt Exp $
-DISTNAME= VTK-9.4.1
+DISTNAME= VTK-9.5.2
PKGNAME= ${DISTNAME:tl}
-PKGREVISION= 7
CATEGORIES= graphics
MASTER_SITES= https://www.vtk.org/files/release/${PKGVERSION_NOREV:R}/
+VERSION_MINOR= ${PKGVERSION_NOREV:C/([0-9]+\.[0-9]+).*/\1/}
MAINTAINER= thomas.orgis%uni-hamburg.de@localhost
HOMEPAGE= https://vtk.org/
@@ -13,7 +13,7 @@ LICENSE= modified-bsd
TOOL_DEPENDS= ninja-build-[0-9]*:../../devel/ninja-build
-USE_CXX_FEATURES= c++11
+USE_CXX_FEATURES= c++17
USE_LANGUAGES= c c++
CMAKE_CONFIGURE_ARGS+= -DCMAKE_BUILD_TYPE=Release
@@ -48,8 +48,9 @@ MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/${C
# For Darwin
MAKE_ENV+= DYLD_LIBRARY_PATH=${WRKSRC}/${CMAKE_BUILD_DIR}/lib
-PLIST_VARS+= cocoa opengl
-PLIST_SUBST+= VTKVER=${PKGVERSION_NOREV:C/([0-9]+\.[0-9]+).*/\1/}
+PLIST_VARS+= cocoa opengl
+PLIST_SUBST+= VTKVER=${VERSION_MINOR}
+PRINT_PLIST_AWK+= gsub(/${VERSION_MINOR}/, "$${VTKVER}");
CHECK_PORTABILITY_SKIP+= Examples/Build/vtkMy/Utilities/Doxygen/doc_makeall.sh.in
Index: pkgsrc/graphics/vtk/PLIST
diff -u pkgsrc/graphics/vtk/PLIST:1.11 pkgsrc/graphics/vtk/PLIST:1.12
--- pkgsrc/graphics/vtk/PLIST:1.11 Tue Feb 25 13:56:20 2025
+++ pkgsrc/graphics/vtk/PLIST Sat Nov 1 23:39:42 2025
@@ -1,6 +1,5 @@
-@comment $NetBSD: PLIST,v 1.11 2025/02/25 13:56:20 gdt Exp $
+@comment $NetBSD: PLIST,v 1.12 2025/11/01 23:39:42 gdt Exp $
bin/vtkProbeOpenGLVersion-${VTKVER}
-include/vtk-${VTKVER}/Basis_Constant_CellC0Gradient.h
include/vtk-${VTKVER}/DICOMAppHelper.h
include/vtk-${VTKVER}/DICOMCMakeConfig.h
include/vtk-${VTKVER}/DICOMCallback.h
@@ -13,11 +12,9 @@ include/vtk-${VTKVER}/GLTFSampler.h
include/vtk-${VTKVER}/LSDynaFamily.h
include/vtk-${VTKVER}/LSDynaMetaData.h
${PLIST.qt}include/vtk-${VTKVER}/QFilterTreeProxyModel.h
-${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKInteractiveWidget.h
${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKInteractorAdapter.h
${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKItem.h
-${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKRenderItem.h
-${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKRenderWindow.h
+${PLIST.qt}include/vtk-${VTKVER}/QQuickVTKPinchEvent.h
${PLIST.qt}include/vtk-${VTKVER}/QVTKApplication.h
${PLIST.qt}include/vtk-${VTKVER}/QVTKInteractor.h
${PLIST.qt}include/vtk-${VTKVER}/QVTKInteractorAdapter.h
@@ -251,6 +248,8 @@ include/vtk-${VTKVER}/vtkAxesTransformWi
include/vtk-${VTKVER}/vtkAxis.h
include/vtk-${VTKVER}/vtkAxisActor.h
include/vtk-${VTKVER}/vtkAxisActor2D.h
+include/vtk-${VTKVER}/vtkAxisAlignedReflectionFilter.h
+include/vtk-${VTKVER}/vtkAxisAlignedTransformFilter.h
include/vtk-${VTKVER}/vtkAxisExtended.h
include/vtk-${VTKVER}/vtkAxisFollower.h
include/vtk-${VTKVER}/vtkBMPReader.h
@@ -311,6 +310,7 @@ include/vtk-${VTKVER}/vtkBorderWidget.h
include/vtk-${VTKVER}/vtkBoundaryMeshQuality.h
include/vtk-${VTKVER}/vtkBoundedPlanePointPlacer.h
include/vtk-${VTKVER}/vtkBoundedPointSource.h
+include/vtk-${VTKVER}/vtkBoundedWidgetRepresentation.h
include/vtk-${VTKVER}/vtkBoundingBox.h
include/vtk-${VTKVER}/vtkBox.h
include/vtk-${VTKVER}/vtkBoxClipDataSet.h
@@ -358,7 +358,6 @@ include/vtk-${VTKVER}/vtkCameraPathRepre
include/vtk-${VTKVER}/vtkCameraPathWidget.h
include/vtk-${VTKVER}/vtkCameraRepresentation.h
include/vtk-${VTKVER}/vtkCameraWidget.h
-include/vtk-${VTKVER}/vtkCapsuleSource.h
include/vtk-${VTKVER}/vtkCaptionActor2D.h
include/vtk-${VTKVER}/vtkCaptionRepresentation.h
include/vtk-${VTKVER}/vtkCaptionWidget.h
@@ -528,9 +527,7 @@ include/vtk-${VTKVER}/vtkCompositeIntArr
include/vtk-${VTKVER}/vtkCompositeInterpolatedVelocityField.h
include/vtk-${VTKVER}/vtkCompositeLongArray.h
include/vtk-${VTKVER}/vtkCompositeLongLongArray.h
-include/vtk-${VTKVER}/vtkCompositeMapperHelper2.h
include/vtk-${VTKVER}/vtkCompositePolyDataMapper.h
-include/vtk-${VTKVER}/vtkCompositePolyDataMapper2.h
include/vtk-${VTKVER}/vtkCompositePolyDataMapperDelegator.h
include/vtk-${VTKVER}/vtkCompositeShortArray.h
include/vtk-${VTKVER}/vtkCompositeSignedCharArray.h
@@ -709,7 +706,6 @@ include/vtk-${VTKVER}/vtkDataObjectImpli
include/vtk-${VTKVER}/vtkDataObjectMeshCache.h
include/vtk-${VTKVER}/vtkDataObjectReader.h
include/vtk-${VTKVER}/vtkDataObjectToDataSetFilter.h
-include/vtk-${VTKVER}/vtkDataObjectToTable.h
include/vtk-${VTKVER}/vtkDataObjectTree.h
include/vtk-${VTKVER}/vtkDataObjectTreeInternals.h
include/vtk-${VTKVER}/vtkDataObjectTreeIterator.h
@@ -869,6 +865,7 @@ include/vtk-${VTKVER}/vtkExplicitStructu
include/vtk-${VTKVER}/vtkExplicitStructuredGridCrop.h
include/vtk-${VTKVER}/vtkExplicitStructuredGridSurfaceFilter.h
include/vtk-${VTKVER}/vtkExplicitStructuredGridToUnstructuredGrid.h
+include/vtk-${VTKVER}/vtkExplodeDataSet.h
include/vtk-${VTKVER}/vtkExporter.h
include/vtk-${VTKVER}/vtkExprTkFunctionParser.h
include/vtk-${VTKVER}/vtkExtentRCBPartitioner.h
@@ -927,6 +924,7 @@ include/vtk-${VTKVER}/vtkFXAAOptions.h
include/vtk-${VTKVER}/vtkFacetReader.h
include/vtk-${VTKVER}/vtkFacetWriter.h
include/vtk-${VTKVER}/vtkFast2DLayoutStrategy.h
+include/vtk-${VTKVER}/vtkFastLabeledDataMapper.h
include/vtk-${VTKVER}/vtkFastSplatter.h
include/vtk-${VTKVER}/vtkFeatureEdges.h
include/vtk-${VTKVER}/vtkFeatures.h
@@ -1002,6 +1000,7 @@ include/vtk-${VTKVER}/vtkFramebufferPass
include/vtk-${VTKVER}/vtkFreeTypeLabelRenderStrategy.h
include/vtk-${VTKVER}/vtkFreeTypeStringToImage.h
include/vtk-${VTKVER}/vtkFreeTypeTools.h
+include/vtk-${VTKVER}/vtkFrustum.h
include/vtk-${VTKVER}/vtkFrustumCoverageCuller.h
include/vtk-${VTKVER}/vtkFrustumSelector.h
include/vtk-${VTKVER}/vtkFrustumSource.h
@@ -1041,6 +1040,7 @@ include/vtk-${VTKVER}/vtkGeneralizedKern
include/vtk-${VTKVER}/vtkGenerateIds.h
include/vtk-${VTKVER}/vtkGenerateIndexArray.h
include/vtk-${VTKVER}/vtkGenerateProcessIds.h
+include/vtk-${VTKVER}/vtkGenerateRegionIds.h
include/vtk-${VTKVER}/vtkGenerateTimeSteps.h
include/vtk-${VTKVER}/vtkGenericAdaptorCell.h
include/vtk-${VTKVER}/vtkGenericAttribute.h
@@ -1110,6 +1110,10 @@ include/vtk-${VTKVER}/vtkGraphWeightFilt
include/vtk-${VTKVER}/vtkGraphWriter.h
include/vtk-${VTKVER}/vtkGraphicsFactory.h
include/vtk-${VTKVER}/vtkGreedyTerrainDecimation.h
+include/vtk-${VTKVER}/vtkGridAxesActor2D.h
+include/vtk-${VTKVER}/vtkGridAxesActor3D.h
+include/vtk-${VTKVER}/vtkGridAxesHelper.h
+include/vtk-${VTKVER}/vtkGridAxesPlaneActor2D.h
include/vtk-${VTKVER}/vtkGridSynchronizedTemplates3D.h
include/vtk-${VTKVER}/vtkGridTransform.h
include/vtk-${VTKVER}/vtkGroupDataSetsFilter.h
@@ -1165,13 +1169,17 @@ include/vtk-${VTKVER}/vtkHyperTreeGridAl
include/vtk-${VTKVER}/vtkHyperTreeGridAxisClip.h
include/vtk-${VTKVER}/vtkHyperTreeGridAxisCut.h
include/vtk-${VTKVER}/vtkHyperTreeGridAxisReflection.h
+include/vtk-${VTKVER}/vtkHyperTreeGridCellCenterStrategy.h
include/vtk-${VTKVER}/vtkHyperTreeGridCellCenters.h
+include/vtk-${VTKVER}/vtkHyperTreeGridCellSizeStrategy.h
include/vtk-${VTKVER}/vtkHyperTreeGridContour.h
include/vtk-${VTKVER}/vtkHyperTreeGridDepthLimiter.h
include/vtk-${VTKVER}/vtkHyperTreeGridEntry.h
include/vtk-${VTKVER}/vtkHyperTreeGridEvaluateCoarse.h
include/vtk-${VTKVER}/vtkHyperTreeGridExtractGhostCells.h
include/vtk-${VTKVER}/vtkHyperTreeGridFeatureEdges.h
+include/vtk-${VTKVER}/vtkHyperTreeGridGenerateFieldStrategy.h
+include/vtk-${VTKVER}/vtkHyperTreeGridGenerateFields.h
include/vtk-${VTKVER}/vtkHyperTreeGridGenerateGlobalIds.h
include/vtk-${VTKVER}/vtkHyperTreeGridGenerateProcessIds.h
include/vtk-${VTKVER}/vtkHyperTreeGridGeometricLocator.h
@@ -1210,6 +1218,8 @@ include/vtk-${VTKVER}/vtkHyperTreeGridTh
include/vtk-${VTKVER}/vtkHyperTreeGridToDualGrid.h
include/vtk-${VTKVER}/vtkHyperTreeGridToUnstructuredGrid.h
include/vtk-${VTKVER}/vtkHyperTreeGridTools.h
+include/vtk-${VTKVER}/vtkHyperTreeGridTotalVisibleVolumeStrategy.h
+include/vtk-${VTKVER}/vtkHyperTreeGridValidCellStrategy.h
include/vtk-${VTKVER}/vtkHyperTreeGridVisibleLeavesSize.h
include/vtk-${VTKVER}/vtkIOAMRModule.h
include/vtk-${VTKVER}/vtkIOAsynchronousModule.h
@@ -1236,6 +1246,7 @@ include/vtk-${VTKVER}/vtkIOIOSSModule.h
include/vtk-${VTKVER}/vtkIOImageModule.h
include/vtk-${VTKVER}/vtkIOImportModule.h
include/vtk-${VTKVER}/vtkIOInfovisModule.h
+include/vtk-${VTKVER}/vtkIOLANLX3DModule.h
include/vtk-${VTKVER}/vtkIOLSDynaModule.h
include/vtk-${VTKVER}/vtkIOLegacyModule.h
include/vtk-${VTKVER}/vtkIOMINCModule.h
@@ -1455,6 +1466,8 @@ include/vtk-${VTKVER}/vtkImplicitConeWid
include/vtk-${VTKVER}/vtkImplicitCylinderRepresentation.h
include/vtk-${VTKVER}/vtkImplicitCylinderWidget.h
include/vtk-${VTKVER}/vtkImplicitDataSet.h
+include/vtk-${VTKVER}/vtkImplicitFrustumRepresentation.h
+include/vtk-${VTKVER}/vtkImplicitFrustumWidget.h
include/vtk-${VTKVER}/vtkImplicitFunction.h
include/vtk-${VTKVER}/vtkImplicitFunctionCollection.h
include/vtk-${VTKVER}/vtkImplicitFunctionToImageStencil.h
@@ -1532,6 +1545,9 @@ include/vtk-${VTKVER}/vtkInitialValuePro
include/vtk-${VTKVER}/vtkInputStream.h
include/vtk-${VTKVER}/vtkIntArray.h
include/vtk-${VTKVER}/vtkIntegrateAttributes.h
+include/vtk-${VTKVER}/vtkIntegrationGaussianStrategy.h
+include/vtk-${VTKVER}/vtkIntegrationLinearStrategy.h
+include/vtk-${VTKVER}/vtkIntegrationStrategy.h
include/vtk-${VTKVER}/vtkInteractionImageModule.h
include/vtk-${VTKVER}/vtkInteractionStyleModule.h
include/vtk-${VTKVER}/vtkInteractionWidgetsModule.h
@@ -1566,6 +1582,7 @@ include/vtk-${VTKVER}/vtkInterpolatingSu
include/vtk-${VTKVER}/vtkInterpolationKernel.h
include/vtk-${VTKVER}/vtkIntersectionCounter.h
include/vtk-${VTKVER}/vtkIntersectionPolyDataFilter.h
+include/vtk-${VTKVER}/vtkInvoker.h
include/vtk-${VTKVER}/vtkIterativeClosestPointTransform.h
include/vtk-${VTKVER}/vtkJPEGReader.h
include/vtk-${VTKVER}/vtkJPEGWriter.h
@@ -1586,6 +1603,7 @@ include/vtk-${VTKVER}/vtkKdTree.h
include/vtk-${VTKVER}/vtkKdTreePointLocator.h
include/vtk-${VTKVER}/vtkKdTreeSelector.h
include/vtk-${VTKVER}/vtkKochanekSpline.h
+include/vtk-${VTKVER}/vtkLANLX3DReader.h
include/vtk-${VTKVER}/vtkLICNoiseHelper.h
include/vtk-${VTKVER}/vtkLODActor.h
include/vtk-${VTKVER}/vtkLODProp3D.h
@@ -1607,6 +1625,7 @@ include/vtk-${VTKVER}/vtkLabelSizeCalcul
include/vtk-${VTKVER}/vtkLabeledContourMapper.h
include/vtk-${VTKVER}/vtkLabeledContourPolyDataItem.h
include/vtk-${VTKVER}/vtkLabeledDataMapper.h
+include/vtk-${VTKVER}/vtkLabeledDatatypeDefinitions.h
include/vtk-${VTKVER}/vtkLabeledTreeMapDataMapper.h
include/vtk-${VTKVER}/vtkLagrangeCurve.h
include/vtk-${VTKVER}/vtkLagrangeHexahedron.h
@@ -1788,6 +1807,7 @@ include/vtk-${VTKVER}/vtkNIFTIImageReade
include/vtk-${VTKVER}/vtkNIFTIImageWriter.h
include/vtk-${VTKVER}/vtkNamedColors.h
include/vtk-${VTKVER}/vtkNek5000Reader.h
+include/vtk-${VTKVER}/vtkNetCDFAccessor.h
include/vtk-${VTKVER}/vtkNetCDFCAMReader.h
include/vtk-${VTKVER}/vtkNetCDFCFReader.h
include/vtk-${VTKVER}/vtkNetCDFCFWriter.h
@@ -1885,6 +1905,7 @@ include/vtk-${VTKVER}/vtkOpenGLRenderTim
include/vtk-${VTKVER}/vtkOpenGLRenderUtilities.h
include/vtk-${VTKVER}/vtkOpenGLRenderWindow.h
include/vtk-${VTKVER}/vtkOpenGLRenderer.h
+include/vtk-${VTKVER}/vtkOpenGLResourceFreeCallback.h
include/vtk-${VTKVER}/vtkOpenGLShaderCache.h
include/vtk-${VTKVER}/vtkOpenGLShaderDeclaration.h
include/vtk-${VTKVER}/vtkOpenGLShaderProperty.h
@@ -1892,6 +1913,7 @@ include/vtk-${VTKVER}/vtkOpenGLSkybox.h
include/vtk-${VTKVER}/vtkOpenGLSphereMapper.h
include/vtk-${VTKVER}/vtkOpenGLState.h
include/vtk-${VTKVER}/vtkOpenGLStickMapper.h
+include/vtk-${VTKVER}/vtkOpenGLSurfaceProbeVolumeMapper.h
include/vtk-${VTKVER}/vtkOpenGLTextActor.h
include/vtk-${VTKVER}/vtkOpenGLTextActor3D.h
include/vtk-${VTKVER}/vtkOpenGLTextMapper.h
@@ -1935,6 +1957,7 @@ include/vtk-${VTKVER}/vtkOverlappingAMRL
include/vtk-${VTKVER}/vtkOverlayPass.h
include/vtk-${VTKVER}/vtkOverrideInformation.h
include/vtk-${VTKVER}/vtkOverrideInformationCollection.h
+include/vtk-${VTKVER}/vtkPAxisAlignedReflectionFilter.h
include/vtk-${VTKVER}/vtkPBRIrradianceTexture.h
include/vtk-${VTKVER}/vtkPBRLUTTexture.h
include/vtk-${VTKVER}/vtkPBRPrefilterTexture.h
@@ -1942,7 +1965,6 @@ include/vtk-${VTKVER}/vtkPCAAnalysisFilt
include/vtk-${VTKVER}/vtkPCACurvatureEstimation.h
include/vtk-${VTKVER}/vtkPCANormalEstimation.h
include/vtk-${VTKVER}/vtkPCAStatistics.h
-include/vtk-${VTKVER}/vtkPCellDataToPointData.h
include/vtk-${VTKVER}/vtkPChacoReader.h
include/vtk-${VTKVER}/vtkPComputeHistogram2DOutliers.h
include/vtk-${VTKVER}/vtkPConvertToMultiBlockDataSet.h
@@ -2188,7 +2210,6 @@ include/vtk-${VTKVER}/vtkProbePolyhedron
include/vtk-${VTKVER}/vtkProbeSelectedLocations.h
include/vtk-${VTKVER}/vtkProcess.h
include/vtk-${VTKVER}/vtkProcessGroup.h
-include/vtk-${VTKVER}/vtkProcessIdScalars.h
include/vtk-${VTKVER}/vtkProcrustesAlignmentFilter.h
include/vtk-${VTKVER}/vtkProgrammableAttributeDataFilter.h
include/vtk-${VTKVER}/vtkProgrammableDataObjectSource.h
@@ -2311,6 +2332,7 @@ include/vtk-${VTKVER}/vtkReebGraph.h
include/vtk-${VTKVER}/vtkReebGraphSimplificationMetric.h
include/vtk-${VTKVER}/vtkReferenceCount.h
include/vtk-${VTKVER}/vtkReflectionFilter.h
+include/vtk-${VTKVER}/vtkReflectionUtilities.h
include/vtk-${VTKVER}/vtkRegressionTestImage.h
include/vtk-${VTKVER}/vtkRegularPolygonSource.h
include/vtk-${VTKVER}/vtkRemoveDuplicatePolys.h
@@ -2353,6 +2375,7 @@ include/vtk-${VTKVER}/vtkRenderingCoreEn
include/vtk-${VTKVER}/vtkRenderingCoreModule.h
include/vtk-${VTKVER}/vtkRenderingFreeTypeModule.h
include/vtk-${VTKVER}/vtkRenderingGL2PSOpenGL2Module.h
+include/vtk-${VTKVER}/vtkRenderingGridAxesModule.h
include/vtk-${VTKVER}/vtkRenderingHyperTreeGridModule.h
include/vtk-${VTKVER}/vtkRenderingImageModule.h
include/vtk-${VTKVER}/vtkRenderingLICOpenGL2Module.h
@@ -2360,7 +2383,7 @@ include/vtk-${VTKVER}/vtkRenderingLODMod
include/vtk-${VTKVER}/vtkRenderingLabelModule.h
include/vtk-${VTKVER}/vtkRenderingOpenGL2Module.h
include/vtk-${VTKVER}/vtkRenderingOpenGLConfigure.h
-${PLIST.qt}include/vtk-${VTKVER}/vtkRenderingQtModule.h
+include/vtk-${VTKVER}/vtkRenderingQtModule.h
include/vtk-${VTKVER}/vtkRenderingSceneGraphModule.h
include/vtk-${VTKVER}/vtkRenderingUIModule.h
include/vtk-${VTKVER}/vtkRenderingVolumeModule.h
@@ -2890,7 +2913,7 @@ include/vtk-${VTKVER}/vtkViewport.h
include/vtk-${VTKVER}/vtkViewsContext2DModule.h
include/vtk-${VTKVER}/vtkViewsCoreModule.h
include/vtk-${VTKVER}/vtkViewsInfovisModule.h
-${PLIST.qt}include/vtk-${VTKVER}/vtkViewsQtModule.h
+include/vtk-${VTKVER}/vtkViewsQtModule.h
include/vtk-${VTKVER}/vtkVisibilitySort.h
include/vtk-${VTKVER}/vtkVoidArray.h
include/vtk-${VTKVER}/vtkVolume.h
@@ -2952,6 +2975,7 @@ include/vtk-${VTKVER}/vtkX3DExporter.h
include/vtk-${VTKVER}/vtkX3DExporterFIWriter.h
include/vtk-${VTKVER}/vtkX3DExporterWriter.h
include/vtk-${VTKVER}/vtkX3DExporterXMLWriter.h
+include/vtk-${VTKVER}/vtkXArrayAccessor.h
include/vtk-${VTKVER}/vtkXGMLReader.h
include/vtk-${VTKVER}/vtkXMLCompositeDataReader.h
include/vtk-${VTKVER}/vtkXMLCompositeDataSetWriterHelper.h
@@ -3079,59 +3103,64 @@ include/vtk-${VTKVER}/vtkdiy2/include/vt
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/collection.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/communicator.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/constants.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/coroutine.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/coroutine/fiber.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/coroutine/sjlj.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/critical-resource.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/decomposition.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/kdtree-sampling.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/kdtree.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/load-balance-collective.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/load-balance-sampling.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/load-balance.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/algorithms/sort.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/block_traits.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/collectives.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/commands.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/communication.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/execution.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/foreach_exchange.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/iexchange-collective.hpp
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/iexchange-dud.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/master/iexchange.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/reduce/all-to-all.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/detail/traits.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/dynamic-point.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/factory.hpp
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/chrono.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/color.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/compile.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/core.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/format-inl.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/format.cc
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/format.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/locale.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/ostream.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/posix.cc
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/posix.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/printf.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/ranges.h
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/fmt/safe-duration-cast.h
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/grid.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/io/block.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/io/bov.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/io/numpy.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/io/shared.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/io/utils.hpp
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/itlib/small_vector.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/link.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/log.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/master.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/collectives.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/collectives.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/communicator.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/communicator.hpp
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/constants.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/config.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/datatypes.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/datatypes.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/diy-mpi-export.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/environment.cpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/environment.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/io.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/io.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/mpi_cast.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/mpitypes.hpp.in
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/no-mpi.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/operations.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/operations.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/optional.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/point-to-point.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/point-to-point.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/request.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/request.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/status.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/status.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/window.cpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/mpi/window.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/no-thread.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/partners/all-reduce.hpp
@@ -3148,10 +3177,27 @@ include/vtk-${VTKVER}/vtkdiy2/include/vt
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/serialization.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/stats.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/storage.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/chrono.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/color.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/compile.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/core.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/format-inl.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/format.cc
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/format.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/locale.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/os.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/ostream.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/posix.cc
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/posix.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/printf.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/ranges.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/fmt/safe-duration-cast.h
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/itlib/small_vector.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thirdparty/thread/fast_mutex.h
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thread.hpp
-include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/thread/fast_mutex.h
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/time.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/types.hpp
+include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/utils.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/version.hpp
include/vtk-${VTKVER}/vtkdiy2/include/vtkdiy2/vertices.hpp
include/vtk-${VTKVER}/vtkexodusII/include/exodusII.h
@@ -3159,9 +3205,10 @@ include/vtk-${VTKVER}/vtkexodusII/includ
include/vtk-${VTKVER}/vtkexodusII/include/exodusII_int.h
include/vtk-${VTKVER}/vtkexodusII/include/exodus_config.h
include/vtk-${VTKVER}/vtkexodusII/include/vtk_exodusII_mangle.h
-include/vtk-${VTKVER}/vtkexprtk/exprtk.hpp
+include/vtk-${VTKVER}/vtkexprtk/include/exprtk.hpp
include/vtk-${VTKVER}/vtkfast_float.h
include/vtk-${VTKVER}/vtkfmt/vtkfmt/args.h
+include/vtk-${VTKVER}/vtkfmt/vtkfmt/base.h
include/vtk-${VTKVER}/vtkfmt/vtkfmt/chrono.h
include/vtk-${VTKVER}/vtkfmt/vtkfmt/color.h
include/vtk-${VTKVER}/vtkfmt/vtkfmt/compile.h
@@ -3187,6 +3234,8 @@ include/vtk-${VTKVER}/vtkioss/Ioss_Basis
include/vtk-${VTKVER}/vtkioss/Ioss_Blob.h
include/vtk-${VTKVER}/vtkioss/Ioss_BoundingBox.h
include/vtk-${VTKVER}/vtkioss/Ioss_ChainGenerator.h
+include/vtk-${VTKVER}/vtkioss/Ioss_ChangeSet.h
+include/vtk-${VTKVER}/vtkioss/Ioss_ChangeSetFactory.h
include/vtk-${VTKVER}/vtkioss/Ioss_CodeTypes.h
include/vtk-${VTKVER}/vtkioss/Ioss_CommSet.h
include/vtk-${VTKVER}/vtkioss/Ioss_Compare.h
@@ -3201,6 +3250,12 @@ include/vtk-${VTKVER}/vtkioss/Ioss_DataP
include/vtk-${VTKVER}/vtkioss/Ioss_DataSize.h
include/vtk-${VTKVER}/vtkioss/Ioss_DatabaseIO.h
include/vtk-${VTKVER}/vtkioss/Ioss_Doxygen.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopology.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopologyBroker.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopologyFileControl.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopologyNotifier.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopologyObserver.h
+include/vtk-${VTKVER}/vtkioss/Ioss_DynamicTopologyStateLocator.h
include/vtk-${VTKVER}/vtkioss/Ioss_EdgeBlock.h
include/vtk-${VTKVER}/vtkioss/Ioss_EdgeSet.h
include/vtk-${VTKVER}/vtkioss/Ioss_ElementBlock.h
@@ -3255,6 +3310,7 @@ include/vtk-${VTKVER}/vtkioss/Ioss_Utils
include/vtk-${VTKVER}/vtkioss/Ioss_VariableType.h
include/vtk-${VTKVER}/vtkioss/Ioss_Version.h
include/vtk-${VTKVER}/vtkioss/Ioss_ZoneConnectivity.h
+include/vtk-${VTKVER}/vtkioss/Ioss_use_fmt.h
include/vtk-${VTKVER}/vtkioss/SEACASIoss_config.h
include/vtk-${VTKVER}/vtkioss/bhopscotch_map.h
include/vtk-${VTKVER}/vtkioss/bhopscotch_set.h
@@ -3330,6 +3386,7 @@ include/vtk-${VTKVER}/vtkioss/elements/I
include/vtk-${VTKVER}/vtkioss/elements/Ioss_Wedge52.h
include/vtk-${VTKVER}/vtkioss/elements/Ioss_Wedge6.h
include/vtk-${VTKVER}/vtkioss/exodus/Ioex_BaseDatabaseIO.h
+include/vtk-${VTKVER}/vtkioss/exodus/Ioex_ChangeSet.h
include/vtk-${VTKVER}/vtkioss/exodus/Ioex_DatabaseIO.h
include/vtk-${VTKVER}/vtkioss/exodus/Ioex_IOFactory.h
include/vtk-${VTKVER}/vtkioss/exodus/Ioex_Internals.h
@@ -3566,7 +3623,7 @@ lib/libvtkFiltersAMR-${VTKVER}.so.${VTKV
lib/libvtkFiltersAMR-${VTKVER}.so.1
lib/libvtkFiltersCellGrid-${VTKVER}.so
lib/libvtkFiltersCellGrid-${VTKVER}.so.1
-lib/libvtkFiltersCellGrid-${VTKVER}.so.9.4
+lib/libvtkFiltersCellGrid-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersCore-${VTKVER}.so
lib/libvtkFiltersCore-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersCore-${VTKVER}.so.1
@@ -3587,7 +3644,7 @@ lib/libvtkFiltersGeometry-${VTKVER}.so.$
lib/libvtkFiltersGeometry-${VTKVER}.so.1
lib/libvtkFiltersGeometryPreview-${VTKVER}.so
lib/libvtkFiltersGeometryPreview-${VTKVER}.so.1
-lib/libvtkFiltersGeometryPreview-${VTKVER}.so.9.4
+lib/libvtkFiltersGeometryPreview-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersHybrid-${VTKVER}.so
lib/libvtkFiltersHybrid-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersHybrid-${VTKVER}.so.1
@@ -3614,7 +3671,7 @@ lib/libvtkFiltersProgrammable-${VTKVER}.
lib/libvtkFiltersProgrammable-${VTKVER}.so.1
lib/libvtkFiltersReduction-${VTKVER}.so
lib/libvtkFiltersReduction-${VTKVER}.so.1
-lib/libvtkFiltersReduction-${VTKVER}.so.9.4
+lib/libvtkFiltersReduction-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersSMP-${VTKVER}.so
lib/libvtkFiltersSMP-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersSMP-${VTKVER}.so.1
@@ -3629,10 +3686,10 @@ lib/libvtkFiltersStatistics-${VTKVER}.so
lib/libvtkFiltersStatistics-${VTKVER}.so.1
lib/libvtkFiltersTemporal-${VTKVER}.so
lib/libvtkFiltersTemporal-${VTKVER}.so.1
-lib/libvtkFiltersTemporal-${VTKVER}.so.9.4
+lib/libvtkFiltersTemporal-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersTensor-${VTKVER}.so
lib/libvtkFiltersTensor-${VTKVER}.so.1
-lib/libvtkFiltersTensor-${VTKVER}.so.9.4
+lib/libvtkFiltersTensor-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersTexture-${VTKVER}.so
lib/libvtkFiltersTexture-${VTKVER}.so.${VTKVER}
lib/libvtkFiltersTexture-${VTKVER}.so.1
@@ -3665,7 +3722,7 @@ lib/libvtkIOCONVERGECFD-${VTKVER}.so.${V
lib/libvtkIOCONVERGECFD-${VTKVER}.so.1
lib/libvtkIOCellGrid-${VTKVER}.so
lib/libvtkIOCellGrid-${VTKVER}.so.1
-lib/libvtkIOCellGrid-${VTKVER}.so.9.4
+lib/libvtkIOCellGrid-${VTKVER}.so.${VTKVER}
lib/libvtkIOCesium3DTiles-${VTKVER}.so
lib/libvtkIOCesium3DTiles-${VTKVER}.so.${VTKVER}
lib/libvtkIOCesium3DTiles-${VTKVER}.so.1
@@ -3680,13 +3737,13 @@ lib/libvtkIOCore-${VTKVER}.so.${VTKVER}
lib/libvtkIOCore-${VTKVER}.so.1
lib/libvtkIOERF-${VTKVER}.so
lib/libvtkIOERF-${VTKVER}.so.1
-lib/libvtkIOERF-${VTKVER}.so.9.4
+lib/libvtkIOERF-${VTKVER}.so.${VTKVER}
lib/libvtkIOEnSight-${VTKVER}.so
lib/libvtkIOEnSight-${VTKVER}.so.${VTKVER}
lib/libvtkIOEnSight-${VTKVER}.so.1
lib/libvtkIOEngys-${VTKVER}.so
lib/libvtkIOEngys-${VTKVER}.so.1
-lib/libvtkIOEngys-${VTKVER}.so.9.4
+lib/libvtkIOEngys-${VTKVER}.so.${VTKVER}
lib/libvtkIOExodus-${VTKVER}.so
lib/libvtkIOExodus-${VTKVER}.so.${VTKVER}
lib/libvtkIOExodus-${VTKVER}.so.1
@@ -3701,10 +3758,10 @@ lib/libvtkIOExportPDF-${VTKVER}.so.${VTK
lib/libvtkIOExportPDF-${VTKVER}.so.1
lib/libvtkIOFDS-${VTKVER}.so
lib/libvtkIOFDS-${VTKVER}.so.1
-lib/libvtkIOFDS-${VTKVER}.so.9.4
+lib/libvtkIOFDS-${VTKVER}.so.${VTKVER}
lib/libvtkIOFLUENTCFF-${VTKVER}.so
lib/libvtkIOFLUENTCFF-${VTKVER}.so.1
-lib/libvtkIOFLUENTCFF-${VTKVER}.so.9.4
+lib/libvtkIOFLUENTCFF-${VTKVER}.so.${VTKVER}
lib/libvtkIOGeometry-${VTKVER}.so
lib/libvtkIOGeometry-${VTKVER}.so.${VTKVER}
lib/libvtkIOGeometry-${VTKVER}.so.1
@@ -3723,6 +3780,9 @@ lib/libvtkIOImport-${VTKVER}.so.1
lib/libvtkIOInfovis-${VTKVER}.so
lib/libvtkIOInfovis-${VTKVER}.so.${VTKVER}
lib/libvtkIOInfovis-${VTKVER}.so.1
+lib/libvtkIOLANLX3D-${VTKVER}.so
+lib/libvtkIOLANLX3D-${VTKVER}.so.1
+lib/libvtkIOLANLX3D-${VTKVER}.so.${VTKVER}
lib/libvtkIOLSDyna-${VTKVER}.so
lib/libvtkIOLSDyna-${VTKVER}.so.${VTKVER}
lib/libvtkIOLSDyna-${VTKVER}.so.1
@@ -3830,7 +3890,7 @@ lib/libvtkRenderingAnnotation-${VTKVER}.
lib/libvtkRenderingAnnotation-${VTKVER}.so.1
lib/libvtkRenderingCellGrid-${VTKVER}.so
lib/libvtkRenderingCellGrid-${VTKVER}.so.1
-lib/libvtkRenderingCellGrid-${VTKVER}.so.9.4
+lib/libvtkRenderingCellGrid-${VTKVER}.so.${VTKVER}
lib/libvtkRenderingContext2D-${VTKVER}.so
lib/libvtkRenderingContext2D-${VTKVER}.so.${VTKVER}
lib/libvtkRenderingContext2D-${VTKVER}.so.1
@@ -3846,6 +3906,9 @@ lib/libvtkRenderingFreeType-${VTKVER}.so
lib/libvtkRenderingGL2PSOpenGL2-${VTKVER}.so
lib/libvtkRenderingGL2PSOpenGL2-${VTKVER}.so.${VTKVER}
lib/libvtkRenderingGL2PSOpenGL2-${VTKVER}.so.1
+lib/libvtkRenderingGridAxes-${VTKVER}.so
+lib/libvtkRenderingGridAxes-${VTKVER}.so.${VTKVER}
+lib/libvtkRenderingGridAxes-${VTKVER}.so.1
lib/libvtkRenderingHyperTreeGrid-${VTKVER}.so
lib/libvtkRenderingHyperTreeGrid-${VTKVER}.so.${VTKVER}
lib/libvtkRenderingHyperTreeGrid-${VTKVER}.so.1
@@ -3884,7 +3947,7 @@ lib/libvtkRenderingVtkJS-${VTKVER}.so.${
lib/libvtkRenderingVtkJS-${VTKVER}.so.1
lib/libvtkTestingCore-${VTKVER}.so
lib/libvtkTestingCore-${VTKVER}.so.1
-lib/libvtkTestingCore-${VTKVER}.so.9.4
+lib/libvtkTestingCore-${VTKVER}.so.${VTKVER}
lib/libvtkTestingRendering-${VTKVER}.so
lib/libvtkTestingRendering-${VTKVER}.so.${VTKVER}
lib/libvtkTestingRendering-${VTKVER}.so.1
@@ -3907,8 +3970,8 @@ lib/libvtkfmt-${VTKVER}.so
lib/libvtkfmt-${VTKVER}.so.${VTKVER}
lib/libvtkfmt-${VTKVER}.so.1
lib/libvtkglad-${VTKVER}.so
+lib/libvtkglad-${VTKVER}.so.${VTKVER}
lib/libvtkglad-${VTKVER}.so.1
-lib/libvtkglad-${VTKVER}.so.9.4
lib/libvtkioss-${VTKVER}.so
lib/libvtkioss-${VTKVER}.so.${VTKVER}
lib/libvtkioss-${VTKVER}.so.1
@@ -3923,13 +3986,10 @@ lib/libvtksys-${VTKVER}.so.${VTKVER}
lib/libvtksys-${VTKVER}.so.1
lib/libvtktoken-${VTKVER}.so
lib/libvtktoken-${VTKVER}.so.1
-lib/libvtktoken-${VTKVER}.so.9.4
+lib/libvtktoken-${VTKVER}.so.${VTKVER}
lib/libvtkverdict-${VTKVER}.so
lib/libvtkverdict-${VTKVER}.so.${VTKVER}
lib/libvtkverdict-${VTKVER}.so.1
-${PLIST.qt}lib/qml/VTK.${VTKVER}/libqmlvtkplugin.so
-${PLIST.qt}lib/qml/VTK.${VTKVER}/plugins.qmltypes
-${PLIST.qt}lib/qml/VTK.${VTKVER}/qmldir
share/licenses/VTK/Copyright.txt
share/licenses/VTK/vtkCommonCore/LICENSE
share/licenses/VTK/vtkCommonDataModel/LICENSE
@@ -3951,6 +4011,7 @@ share/licenses/VTK/vtkGeovisCore/LICENSE
share/licenses/VTK/vtkIOCore/LICENSE
share/licenses/VTK/vtkIOExport/LICENSE
share/licenses/VTK/vtkIOInfovis/LICENSE
+share/licenses/VTK/vtkIOLANLX3D/LICENSE
share/licenses/VTK/vtkIOMINC/Copyright.txt
share/licenses/VTK/vtkIONetCDF/LICENSE
share/licenses/VTK/vtkIOPLY/Copyright.txt
@@ -3970,8 +4031,8 @@ share/licenses/VTK/vtkViewsQt/LICENSE
share/licenses/VTK/vtkdiy2/LEGAL.txt
share/licenses/VTK/vtkdiy2/LICENSE.txt
share/licenses/VTK/vtkexodusII/COPYRIGHT
-share/licenses/VTK/vtkexprtk/License.txt
-share/licenses/VTK/vtkfmt/LICENSE.rst
+share/licenses/VTK/vtkexprtk/license.txt
+share/licenses/VTK/vtkfmt/LICENSE
share/licenses/VTK/vtkglad/LICENSE
share/licenses/VTK/vtkioss/COPYRIGHT
share/licenses/VTK/vtkkissfft/COPYING
Index: pkgsrc/graphics/vtk/distinfo
diff -u pkgsrc/graphics/vtk/distinfo:1.15 pkgsrc/graphics/vtk/distinfo:1.16
--- pkgsrc/graphics/vtk/distinfo:1.15 Mon Feb 24 17:22:44 2025
+++ pkgsrc/graphics/vtk/distinfo Sat Nov 1 23:39:42 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2025/02/24 17:22:44 adam Exp $
+$NetBSD: distinfo,v 1.16 2025/11/01 23:39:42 gdt Exp $
-BLAKE2s (VTK-9.4.1.tar.gz) = 0df6921fafbcd5a8ab6a086e6355ed27081940480f0c5690d518d87992c80943
-SHA512 (VTK-9.4.1.tar.gz) = f441953c4befdda0aa2383810cdfa76cd510b275b14624dc6e56da1c711598b9e003e4acbd000171c43d6b8f1bcb2533391ce7d7542fd15b04cb5f9c62f38976
-Size (VTK-9.4.1.tar.gz) = 118618515 bytes
+BLAKE2s (VTK-9.5.2.tar.gz) = 27eca0be4ce810f669a8dcbbfb78b35e364cfc7733abd6ba5ed59205516e605f
+SHA512 (VTK-9.5.2.tar.gz) = fc8157a89fa603a7f7fce356e2f638ae69e0ea629a507458bdbb173daf511c61e39a1f0d7201b196a5b3a7ffa7e3e821398b62521faadf85edb1119a1e8b8e8e
+Size (VTK-9.5.2.tar.gz) = 50189467 bytes
SHA1 (patch-CMake_vtkModule.cmake) = 65df83f6ca7fb25c6ed13a14b07390233ea568b2
SHA1 (patch-Rendering_GL2PSOpenGL2_vtkOpenGLGL2PSHelperImpl.cxx) = 84f36d65e7f23cfbca1ec7f9a0f2ed7e767d076f
SHA1 (patch-ThirdParty_ioss_vtkioss_Ioss__FileInfo.C) = 844cdb59f3c4ff977058e94a11b690ff2d84a81c
Home |
Main Index |
Thread Index |
Old Index