Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package netcdf for openSUSE:Factory checked in at 2025-08-28 17:19:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/netcdf (Old) and /work/SRC/openSUSE:Factory/.netcdf.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "netcdf" Thu Aug 28 17:19:56 2025 rev:71 rq:1301786 version:4.9.3 Changes: -------- --- /work/SRC/openSUSE:Factory/netcdf/netcdf.changes 2025-04-03 16:47:31.844943129 +0200 +++ /work/SRC/openSUSE:Factory/.netcdf.new.1977/netcdf.changes 2025-08-28 17:20:33.103950979 +0200 @@ -1,0 +2,15 @@ +Tue Aug 26 18:34:22 UTC 2025 - Stefan BrĂ¼ns <stefan.bru...@rwth-aachen.de> + +- update to 4.9.3: + * Extend the netcdf API to support programmatic changes to the + plugin search path. + * For complete changelog, see included RELEASE_NOTES.md, or + https://github.com/Unidata/netcdf-c/releases/tag/v4.9.3 +- Drop obsolete patches: + * parseServers-Fix-uninitialized-variable-simplify-error-path.patch + * NCD4_dumpbytes-Add-missing-initialization-of-float-types.patch +- Rebase: + * pr_att-Fix-uninitialized-variable.patch + * Fix-spurious-uninitialized-variable-warning.patch + +------------------------------------------------------------------- Old: ---- NCD4_dumpbytes-Add-missing-initialization-of-float-types.patch netcdf-c-4.9.2.tar.gz parseServers-Fix-uninitialized-variable-simplify-error-path.patch New: ---- netcdf-c-4.9.3.tar.gz ----------(Old B)---------- Old: * parseServers-Fix-uninitialized-variable-simplify-error-path.patch * NCD4_dumpbytes-Add-missing-initialization-of-float-types.patch - Rebase: Old:- Drop obsolete patches: * parseServers-Fix-uninitialized-variable-simplify-error-path.patch * NCD4_dumpbytes-Add-missing-initialization-of-float-types.patch ----------(Old E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netcdf.spec ++++++ --- /var/tmp/diff_new_pack.uIwepW/_old 2025-08-28 17:20:35.368045867 +0200 +++ /var/tmp/diff_new_pack.uIwepW/_new 2025-08-28 17:20:35.396047040 +0200 @@ -1,7 +1,7 @@ # # spec file for package netcdf # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ %define _do_check 1 %define pname netcdf -%define sonum 19 +%define sonum 22 %bcond_with valgrind_checks # Keep disabled until properly set up on HDF5 library side @@ -85,15 +85,13 @@ Summary: Command-line programs for the NetCDF scientific data format License: NetCDF Group: Productivity/Scientific/Other -Version: 4.9.2 +Version: 4.9.3 Release: 0 URL: https://www.unidata.ucar.edu/software/netcdf/ Source: https://downloads.unidata.ucar.edu/netcdf-c/%{version}/%{pname}-c-%{version}.tar.gz Source1: nc-config.1.gz -Patch6: parseServers-Fix-uninitialized-variable-simplify-error-path.patch Patch8: val_NC_check_voff-Fix-uninitialized-variable-warning.patch Patch9: pr_att-Fix-uninitialized-variable.patch -Patch10: NCD4_dumpbytes-Add-missing-initialization-of-float-types.patch Patch11: NCZ_def_var_chunking-make-sure-cs-is-set-before-used.patch Patch12: Fix-spurious-uninitialized-variable-warning.patch ++++++ Fix-spurious-uninitialized-variable-warning.patch ++++++ --- /var/tmp/diff_new_pack.uIwepW/_old 2025-08-28 17:20:35.680058943 +0200 +++ /var/tmp/diff_new_pack.uIwepW/_new 2025-08-28 17:20:35.728060955 +0200 @@ -117,10 +117,10 @@ =================================================================== --- netcdf-c-4.9.2.orig/nczarr_test/ncdumpchunks.c +++ netcdf-c-4.9.2/nczarr_test/ncdumpchunks.c -@@ -303,7 +303,7 @@ dump(Format* format) +@@ -345,7 +345,7 @@ dump(Format* format) char sindices[64]; #ifdef H5 - int i; + size_t i; - hid_t fileid, grpid, datasetid; + hid_t fileid = H5P_DEFAULT, grpid = H5P_DEFAULT, datasetid = H5P_DEFAULT; /* GCC */ hid_t dxpl_id = H5P_DEFAULT; /*data transfer property list */ ++++++ netcdf-c-4.9.2.tar.gz -> netcdf-c-4.9.3.tar.gz ++++++ /work/SRC/openSUSE:Factory/netcdf/netcdf-c-4.9.2.tar.gz /work/SRC/openSUSE:Factory/.netcdf.new.1977/netcdf-c-4.9.3.tar.gz differ: char 12, line 1 ++++++ pr_att-Fix-uninitialized-variable.patch ++++++ --- /var/tmp/diff_new_pack.uIwepW/_old 2025-08-28 17:20:36.356087275 +0200 +++ /var/tmp/diff_new_pack.uIwepW/_new 2025-08-28 17:20:36.404089287 +0200 @@ -18,7 +18,7 @@ --- a/ncdump/ncdump.c +++ b/ncdump/ncdump.c @@ -896,6 +896,7 @@ pr_att( - value = *((uint64_t *)data + i); + value = (int64_t)*((uint64_t *)data + i); break; default: + value = 0; /* GCC */