diff --git a/gnu/local.mk b/gnu/local.mk index 956fc22335e..e48b5bf29c0 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -2023,7 +2023,6 @@ dist_patch_DATA = \ %D%/packages/patches/ocaml-4.07-dynamically-allocate-signal-stack.patch \ %D%/packages/patches/ocaml-4.09-dynamically-allocate-signal-stack.patch \ %D%/packages/patches/ocaml-4.09-multiple-definitions.patch \ - %D%/packages/patches/ogs-6.5.7-netcdfconverter.patch \ %D%/packages/patches/omake-fix-non-determinism.patch \ %D%/packages/patches/oneko-remove-nonfree-characters.patch \ %D%/packages/patches/onetbb-other-arches.patch \ diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index b1aa7506da4..f1ab629140e 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -807,7 +807,7 @@ OpenGeoSys") (define-public ogs-serial (package (name "ogs-serial") - (version "6.5.7") + (version "6.5.8") (source (origin (method git-fetch) @@ -816,9 +816,7 @@ OpenGeoSys") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1wflgkbcsa4sr8g63img0ld6h4jm1b7hjzsa2m4gsbzc6j7kd41w")) - ;; Remove patch on next release, likely 6.5.8 - (patches (search-patches "ogs-6.5.7-netcdfconverter.patch")))) + (base32 "037il6jw2j1g7bvrwvbp20yf0cnz7c7f3wmszxfv5ay7l54sffqg")))) (build-system cmake-build-system) (arguments (list @@ -873,6 +871,7 @@ OpenGeoSys") tclap tfel vtk + xdmf xmlpatch zlib)) (propagated-inputs diff --git a/gnu/packages/patches/ogs-6.5.7-netcdfconverter.patch b/gnu/packages/patches/ogs-6.5.7-netcdfconverter.patch deleted file mode 100644 index bc64a449936..00000000000 --- a/gnu/packages/patches/ogs-6.5.7-netcdfconverter.patch +++ /dev/null @@ -1,23 +0,0 @@ -Upstream fix - -https://gitlab.opengeosys.org/ogs/ogs/-/commit/9a8399b0d3cff032e70fe79a85dc35c4e7c662f2 - -diff --git a/Applications/Utils/FileConverter/NetCdfConverter.cpp b/Applications/Utils/FileConverter/NetCdfConverter.cpp -index c6fb9f151d..622bd2cd54 100644 ---- a/Applications/Utils/FileConverter/NetCdfConverter.cpp -+++ b/Applications/Utils/FileConverter/NetCdfConverter.cpp -@@ -232,11 +232,12 @@ static bool dimensionSelectionLoop(NcVar const& var, - if (n_dims > 1) - { - std::string temp_str(""); -- cout << "Is the parameter time-dependent?\n"; -+ std::cout << "Is the parameter time-dependent?\n"; - while (dim_idx_map[0] == std::numeric_limits::max() && - is_time_dep == true) - { -- cout << "Enter ID for temporal dimension or \"c\" to continue: "; -+ std::cout -+ << "Enter ID for temporal dimension or \"c\" to continue: "; - std::getline(std::cin, temp_str); - std::stringstream str_stream(temp_str); - if (str_stream.str() == "c" || str_stream.str() == "continue")