git: 4d81544626bc - main - science/paraview: fix my previous commit
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 May 2025 20:01:55 UTC
The branch main has been updated by thierry:
URL: https://cgit.FreeBSD.org/ports/commit/?id=4d81544626bc3439bc231ccff9c6d7f5a72d07a2
commit 4d81544626bc3439bc231ccff9c6d7f5a72d07a2
Author: Thierry Thomas <thierry@FreeBSD.org>
AuthorDate: 2025-05-02 19:52:40 +0000
Commit: Thierry Thomas <thierry@FreeBSD.org>
CommitDate: 2025-05-02 20:01:53 +0000
science/paraview: fix my previous commit
Reported by: Chad Jacob Milios
---
.../files/patch-VTK_IO_PDAL_CMakeLists.txt | 18 ------------------
science/paraview/files/patch-netcdf | 22 ----------------------
2 files changed, 40 deletions(-)
diff --git a/science/paraview/files/patch-VTK_IO_PDAL_CMakeLists.txt b/science/paraview/files/patch-VTK_IO_PDAL_CMakeLists.txt
deleted file mode 100644
index bbf636b46f9b..000000000000
--- a/science/paraview/files/patch-VTK_IO_PDAL_CMakeLists.txt
+++ /dev/null
@@ -1,18 +0,0 @@
---- VTK/IO/PDAL/CMakeLists.txt.orig 2024-02-28 20:42:21 UTC
-+++ VTK/IO/PDAL/CMakeLists.txt
-@@ -5,14 +5,7 @@ set(classes
- set(classes
- vtkPDALReader)
-
--set(pdal_libraries pdal_util)
--if (APPLE OR WIN32)
-- list(APPEND pdal_libraries
-- pdalcpp)
--else()
-- list(APPEND pdal_libraries
-- pdal_base)
--endif()
-+set(pdal_libraries pdalcpp)
-
- vtk_module_add_module(VTK::IOPDAL
- CLASSES ${classes})
diff --git a/science/paraview/files/patch-netcdf b/science/paraview/files/patch-netcdf
deleted file mode 100644
index 823b69851b0c..000000000000
--- a/science/paraview/files/patch-netcdf
+++ /dev/null
@@ -1,22 +0,0 @@
---- VTK/ThirdParty/exodusII/vtkexodusII/src/ex_put_prop_names.c.orig 2024-05-17 19:15:40 UTC
-+++ VTK/ThirdParty/exodusII/vtkexodusII/src/ex_put_prop_names.c
-@@ -172,7 +172,7 @@ int ex_put_prop_names(int exoid, ex_entity_type obj_ty
-
- /* create attribute to cause variable to fill with zeros per routine spec
- */
-- if ((status = nc_put_att_longlong(exoid, propid, _FillValue, int_type, 1, vals)) != NC_NOERR) {
-+ if ((status = nc_put_att_longlong(exoid, propid, NC_FillValue, int_type, 1, vals)) != NC_NOERR) {
- snprintf(errmsg, MAX_ERR_LENGTH,
- "ERROR: failed to create property name fill attribute in file id %d", exoid);
- ex_err_fn(exoid, __func__, errmsg, status);
---- VTK/ThirdParty/exodusII/vtkexodusII/src/ex_put_prop.c.orig 2024-05-17 19:15:40 UTC
-+++ VTK/ThirdParty/exodusII/vtkexodusII/src/ex_put_prop.c
-@@ -243,7 +243,7 @@ int ex_put_prop(int exoid, ex_entity_type obj_type, ex
- vals[0] = 0; /* fill value */
- /* create attribute to cause variable to fill with zeros per routine spec
- */
-- if ((status = nc_put_att_longlong(exoid, propid, _FillValue, int_type, 1, vals)) != NC_NOERR) {
-+ if ((status = nc_put_att_longlong(exoid, propid, NC_FillValue, int_type, 1, vals)) != NC_NOERR) {
- snprintf(errmsg, MAX_ERR_LENGTH,
- "ERROR: failed to create property name fill attribute in file id %d", exoid);
- ex_err_fn(exoid, __func__, errmsg, status);