[Git][debian-gis-team/h5utils][master] 5 commits: New upstream version 1.13.3
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Sat Sep 5 03:29:00 BST 2026
Bas Couwenberg pushed to branch master at Debian GIS Project / h5utils
Commits:
0d2d8c90 by Bas Couwenberg at 2026-09-05T04:22:22+02:00
New upstream version 1.13.3
- - - - -
8b836b78 by Bas Couwenberg at 2026-09-05T04:22:22+02:00
Update upstream source from tag 'upstream/1.13.3'
Update to upstream version '1.13.3'
with Debian dir c0ac984c40e3dc6150823571173a2f8f8c1a1727
- - - - -
343df492 by Bas Couwenberg at 2026-09-05T04:24:33+02:00
New upstream release.
- - - - -
59f0a6e0 by Bas Couwenberg at 2026-09-05T04:26:18+02:00
Drop patches, applied upstream.
- - - - -
74b3dae9 by Bas Couwenberg at 2026-09-05T04:26:45+02:00
Set distribution to unstable.
- - - - -
11 changed files:
- NEWS.md
- configure.ac
- debian/changelog
- − debian/patches/acute-accent-in-manual-page.patch
- − debian/patches/hdf-4.4.patch
- − debian/patches/series
- doc/man/h5fromh4.1
- doc/man/h5topng.1.in
- doc/man/h5totxt.1
- doc/man/h5tov5d.1
- doc/man/h5tovtk.1
Changes:
=====================================
NEWS.md
=====================================
@@ -2,6 +2,12 @@
Here, we describe what has changed between releases of the [h5utils](README.md) package.
+## h5utils-1.13.3 ##
+
+*9/4/2026*
+
+* Support for HDF4 version 4.4, which renamed the library (#20).
+
## h5utils-1.13.2 ##
*1/15/23*
=====================================
configure.ac
=====================================
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT([h5utils],[1.13.2],[stevenj at alum.mit.edu])
+AC_INIT([h5utils],[1.13.3],[stevenj at alum.mit.edu])
AM_INIT_AUTOMAKE([foreign silent-rules 1.6])
AM_SILENT_RULES(yes)
AC_CONFIG_SRCDIR([h5topng.c])
@@ -93,7 +93,9 @@ if test "x$H4TOH5" != xh4toh5 -o "x$H5TOH4" != xh5toh4; then
AC_CHECK_LIB(jpeg, jpeg_start_compress,
[AC_CHECK_LIB(df, DFSDgetdata,
[H4_LIBS="-ldf -ljpeg"; HDF4=yes],
- [AC_MSG_WARN([can't find libdf (HDF4): won't be able to compile h5fromh4 or h4fromh5])], -ljpeg)],
+ [AC_CHECK_LIB(hdf, DFSDgetdata,
+ [H4_LIBS="-lhdf -ljpeg"; HDF4=yes],
+ [AC_MSG_WARN([can't find libdf/libhdf (HDF4): won't be able to compile h5fromh4 or h4fromh5])])], -ljpeg)],
[AC_MSG_WARN([can't find libjpeg: won't be able to compile h5fromh4 or h4fromh5])])
if test $HDF4 = yes; then
=====================================
debian/changelog
=====================================
@@ -1,16 +1,17 @@
-h5utils (1.13.2-3) UNRELEASED; urgency=medium
+h5utils (1.13.3-1) unstable; urgency=medium
* Team upload.
+ * New upstream release.
+ (closes: #1146652)
* Bump Standards-Version to 4.7.4, no changes.
* Fix old FSF address in copyright file.
* Update lintian overrides.
* Drop Rules-Requires-Root: no, default since dpkg 1.22.13.
* Use test-build-validate-cleanup instead of test-build-twice.
* Drop Priority: optional, default since dpkg 1.22.13.
- * Add patch to fix HDF4 support with 4.4.0.
- (closes: #1146652)
+ * Drop acute-accent-in-manual-page.patch, applied upstream.
- -- Bas Couwenberg <sebastic at debian.org> Thu, 20 Mar 2025 06:07:18 +0100
+ -- Bas Couwenberg <sebastic at debian.org> Sat, 05 Sep 2026 04:26:37 +0200
h5utils (1.13.2-2) unstable; urgency=medium
=====================================
debian/patches/acute-accent-in-manual-page.patch deleted
=====================================
@@ -1,60 +0,0 @@
-Description: Don't use \' groff sequence for apostrophe.
-Author: Bas Couwenberg <sebastic at debian.org>
-Forwarded: https://github.com/NanoComp/h5utils/pull/17
-Applied-Upstream: https://github.com/NanoComp/h5utils/commit/262a82e566b9bc381c55c81eea26b59f2930c118
-
---- a/doc/man/h5fromh4.1
-+++ b/doc/man/h5fromh4.1
-@@ -53,7 +53,7 @@ option is used and multiple HDF4 files a
- datasets are output into that HDF5 file with the input filenames
- (minus the ".hdf" suffix) used as the dataset names.
-
--The most basic usage is something like \'h5fromh4 foo.hdf\', which
-+The most basic usage is something like \(aqh5fromh4 foo.hdf\(aq, which
- will output a file foo.h5 containing the scientific dataset from
- foo.hdf.
- .SH OPTIONS
---- a/doc/man/h5topng.1.in
-+++ b/doc/man/h5topng.1.in
-@@ -49,7 +49,7 @@ slice, via the
- .B -xyzt
- options. Yet more options control things like the colormap and
- magnification. Still, the most basic usage is something like
--\'h5topng foo.h5\', which will output a file foo.png containing an
-+\(aqh5topng foo.h5\(aq, which will output a file foo.png containing an
- image from the two-dimensional data in foo.h5.
- .SH OPTIONS
- .TP
---- a/doc/man/h5totxt.1
-+++ b/doc/man/h5totxt.1
-@@ -55,7 +55,7 @@ more slice dimensions, via the
- .B -xyzt
- options.
-
--The most basic usage is something like \'h5totxt foo.h5\', which will
-+The most basic usage is something like \(aqh5totxt foo.h5\(aq, which will
- output comma-delimited text to stdout from the data in foo.h5.
- .SH OPTIONS
- .TP
---- a/doc/man/h5tov5d.1
-+++ b/doc/man/h5tov5d.1
-@@ -56,7 +56,7 @@ more) slice dimension(s), via the
- options.
-
- A typical invocation is of the form
--\'h5tov5d foo.h5\', which will output a Vis5d data file foo.v5d
-+\(aqh5tov5d foo.h5\(aq, which will output a Vis5d data file foo.v5d
- from the data in foo.h5.
- .SH OPTIONS
- .TP
---- a/doc/man/h5tovtk.1
-+++ b/doc/man/h5tovtk.1
-@@ -52,7 +52,7 @@ vectors and fields can be output via the
- option below.
-
- A typical invocation is of the form
--\'h5tovtk foo.h5\', which will output a VTK data file foo.vtk
-+\(aqh5tovtk foo.h5\(aq, which will output a VTK data file foo.vtk
- from the data in foo.h5.
- .SH OPTIONS
- .TP
=====================================
debian/patches/hdf-4.4.patch deleted
=====================================
@@ -1,18 +0,0 @@
-Description: Check libhdf to HDF 4.4.0.
-Author: Bas Couwenberg <sebastic at debian.org>
-Bug-Debian: https://bugs.debian.org/1146652
-Forwarded: https://github.com/NanoComp/h5utils/pull/20
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -93,7 +93,9 @@ if test "x$H4TOH5" != xh4toh5 -o "x$H5TO
- AC_CHECK_LIB(jpeg, jpeg_start_compress,
- [AC_CHECK_LIB(df, DFSDgetdata,
- [H4_LIBS="-ldf -ljpeg"; HDF4=yes],
-- [AC_MSG_WARN([can't find libdf (HDF4): won't be able to compile h5fromh4 or h4fromh5])], -ljpeg)],
-+ [AC_CHECK_LIB(hdf, DFSDgetdata,
-+ [H4_LIBS="-lhdf -ljpeg"; HDF4=yes],
-+ [AC_MSG_WARN([can't find libdf/libhdf (HDF4): won't be able to compile h5fromh4 or h4fromh5])])], -ljpeg)],
- [AC_MSG_WARN([can't find libjpeg: won't be able to compile h5fromh4 or h4fromh5])])
-
- if test $HDF4 = yes; then
=====================================
debian/patches/series deleted
=====================================
@@ -1,2 +0,0 @@
-acute-accent-in-manual-page.patch
-hdf-4.4.patch
=====================================
doc/man/h5fromh4.1
=====================================
@@ -53,7 +53,7 @@ option is used and multiple HDF4 files are specified, all the HDF4
datasets are output into that HDF5 file with the input filenames
(minus the ".hdf" suffix) used as the dataset names.
-The most basic usage is something like \'h5fromh4 foo.hdf\', which
+The most basic usage is something like \(aqh5fromh4 foo.hdf\(aq, which
will output a file foo.h5 containing the scientific dataset from
foo.hdf.
.SH OPTIONS
=====================================
doc/man/h5topng.1.in
=====================================
@@ -49,7 +49,7 @@ slice, via the
.B -xyzt
options. Yet more options control things like the colormap and
magnification. Still, the most basic usage is something like
-\'h5topng foo.h5\', which will output a file foo.png containing an
+\(aqh5topng foo.h5\(aq, which will output a file foo.png containing an
image from the two-dimensional data in foo.h5.
.SH OPTIONS
.TP
=====================================
doc/man/h5totxt.1
=====================================
@@ -55,7 +55,7 @@ more slice dimensions, via the
.B -xyzt
options.
-The most basic usage is something like \'h5totxt foo.h5\', which will
+The most basic usage is something like \(aqh5totxt foo.h5\(aq, which will
output comma-delimited text to stdout from the data in foo.h5.
.SH OPTIONS
.TP
=====================================
doc/man/h5tov5d.1
=====================================
@@ -56,7 +56,7 @@ more) slice dimension(s), via the
options.
A typical invocation is of the form
-\'h5tov5d foo.h5\', which will output a Vis5d data file foo.v5d
+\(aqh5tov5d foo.h5\(aq, which will output a Vis5d data file foo.v5d
from the data in foo.h5.
.SH OPTIONS
.TP
=====================================
doc/man/h5tovtk.1
=====================================
@@ -52,7 +52,7 @@ vectors and fields can be output via the
option below.
A typical invocation is of the form
-\'h5tovtk foo.h5\', which will output a VTK data file foo.vtk
+\(aqh5tovtk foo.h5\(aq, which will output a VTK data file foo.vtk
from the data in foo.h5.
.SH OPTIONS
.TP
View it on GitLab: https://salsa.debian.org/debian-gis-team/h5utils/-/compare/fd2f09fb2b9d1cb07a6b1d50cbe259aa2971960d...74b3dae9c0f0f99095e4a776428ac56d5370ac47
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/h5utils/-/compare/fd2f09fb2b9d1cb07a6b1d50cbe259aa2971960d...74b3dae9c0f0f99095e4a776428ac56d5370ac47
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20260905/7b1da764/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list