Your message dated Thu, 25 Jun 2026 14:41:53 +0000
with message-id <[email protected]>
and subject line Bug#1139600: fixed in gmtsar 6.7+ds-1
has caused the Debian Bug report #1139600,
regarding gmtsar: FTBFS against HDF5 2.1.0
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1139600: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1139600
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: gmtsar
Version: 6.6+ds-1
Severity: important
Tags: ftbfs patch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hi,
During a test rebuild of HDF5's reverse dependencies against HDF5 2.1.0
currently in experimental, gmtsar FTBFS because the related m4 macro
doesn't support this new major release.
The attached patch fixes this issue and support both HDF5 1.14.6 in
unstable and HDF5 2.1.0 in experimental.
Best,
_g.
- -- System Information:
Debian Release: 12.0
Architecture: amd64 (x86_64)
Kernel: Linux 6.1.0-44-amd64 (SMP w/12 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
-----BEGIN PGP SIGNATURE-----
iQEzBAEBCgAdFiEEoJObzArDE05WtIyR7+hsbH/+z4MFAmopEsUACgkQ7+hsbH/+
z4PQhggAhb8A+rjFmNBcWoNWhrpoo/WnclbhK3x0fnfXwnNfUnMJrHTWhG6yHYXE
EZbJV2rwrZdL8mbkwF01MSINdJqc5L6Z0zwodVVlk75CESeGxPHFIT11Q+/mwk8E
b50+y/T7MzjxDMfSldkALeBQkY/GfrsWzG254ADowDSnK1b6byKz16M+ILd+rSBO
9iHQ63S8T6+LgEYNKCtH9iznkIhOj3HBJ2R4wFvrSSNzUZeaVwpCkcUtrYGKvUKv
qRZe4Bm80ljVo1NOmS1HKyemWeZVQrPvcZzxlYF4E93LD/1waF0SRkZi93uooRzP
LL0nMdQd1W+K+emyhWin3Sp2eELWoA==
=tKbq
-----END PGP SIGNATURE-----
diff -Nru gmtsar-6.6+ds/debian/changelog gmtsar-6.6+ds/debian/changelog
--- gmtsar-6.6+ds/debian/changelog 2025-10-21 08:33:29.000000000 +0200
+++ gmtsar-6.6+ds/debian/changelog 2026-05-28 14:36:01.000000000 +0200
@@ -1,3 +1,10 @@
+gmtsar (6.6+ds-1.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS against HDF5 2.1.0
+
+ -- Gilles Filippini <[email protected]> Thu, 28 May 2026 14:36:01 +0200
+
gmtsar (6.6+ds-1) unstable; urgency=medium
[ Bas Couwenberg ]
diff -Nru gmtsar-6.6+ds/debian/patches/hdf5-2.1.0.patch
gmtsar-6.6+ds/debian/patches/hdf5-2.1.0.patch
--- gmtsar-6.6+ds/debian/patches/hdf5-2.1.0.patch 1970-01-01
01:00:00.000000000 +0100
+++ gmtsar-6.6+ds/debian/patches/hdf5-2.1.0.patch 2026-05-28
14:36:01.000000000 +0200
@@ -0,0 +1,54 @@
+Index: gmtsar-6.6+ds/ax_lib_hdf5.m4
+===================================================================
+--- gmtsar-6.6+ds.orig/ax_lib_hdf5.m4
++++ gmtsar-6.6+ds/ax_lib_hdf5.m4
+@@ -226,7 +226,14 @@ HDF5 support is being disabled (equivale
+ esac
+ done
+
+- HDF5_LIBS="$HDF5_LIBS -lhdf5"
++ HDF5_INFIX=
++ case "$HDF5_LIBS" in
++ -lhdf5_*)
++ HDF5_INFIX="${HDF5_LIBS#-lhdf5_}"
++ HDF5_INFIX="_${HDF5_INFIX%%_*}"
++ ;;
++ esac
++ HDF5_LIBS="$HDF5_LIBS -lhdf5$HDF5_INFIX"
+ AC_MSG_RESULT([yes (version $[HDF5_VERSION])])
+
+ dnl See if we can compile
+@@ -245,7 +252,7 @@ HDF5 support is being disabled (equivale
+ AC_MSG_WARN([Unable to compile HDF5 test program])
+ fi
+ dnl Look for HDF5's high level library
+- AC_CHECK_LIB([hdf5_hl], [H5TBread_table], [HDF5_LIBS="$HDF5_LIBS
-lhdf5_hl"], [], [])
++ AC_CHECK_LIB([hdf5${HDF5_INFIX}_hl], [H5TBread_table],
[HDF5_LIBS="$HDF5_LIBS -lhdf5${HDF5_INFIX}_hl"], [], [])
+
+ CC=$ax_lib_hdf5_save_CC
+ CPPFLAGS=$ax_lib_hdf5_save_CPPFLAGS
+@@ -281,9 +288,9 @@ HDF5 support is being disabled (equivale
+ for arg in $HDF5_LIBS
+ do
+ case "$arg" in #(
+- -lhdf5_hl) HDF5_FLIBS="$HDF5_FLIBS -lhdf5hl_fortran $arg"
++ -lhdf5${HDF5_INFIX}_hl) HDF5_FLIBS="$HDF5_FLIBS
-lhdf5${HDF5_INFIX}_hl_fortran $arg"
+ ;; #(
+- -lhdf5) HDF5_FLIBS="$HDF5_FLIBS -lhdf5_fortran $arg"
++ -lhdf5${HDF5_INFIX}) HDF5_FLIBS="$HDF5_FLIBS
-lhdf5${HDF5_INFIX}_fortran $arg"
+ ;; #(
+ *) HDF5_FLIBS="$HDF5_FLIBS $arg"
+ ;;
+Index: gmtsar-6.6+ds/configure.ac
+===================================================================
+--- gmtsar-6.6+ds.orig/configure.ac
++++ gmtsar-6.6+ds/configure.ac
+@@ -153,7 +153,7 @@ dnl ------------------------------------
+ dnl Set the HDF5 include and lib stuff
+ dnl ------------------------------------------------------------------
+ AX_LIB_HDF5()
+-HDF5_LIBS="$HDF5_LIBS -lhdf5_cpp" # Add the C++ library
++HDF5_LIBS="$HDF5_LIBS -lhdf5${HDF5_INFIX}_cpp" # Add the C++ library
+ AC_MSG_CHECKING(for HDF5 include)
+ AC_MSG_RESULT($HDF5_CPPFLAGS)
+ AC_MSG_CHECKING(for HDF5 libs)
diff -Nru gmtsar-6.6+ds/debian/patches/series
gmtsar-6.6+ds/debian/patches/series
--- gmtsar-6.6+ds/debian/patches/series 2025-10-21 08:33:29.000000000 +0200
+++ gmtsar-6.6+ds/debian/patches/series 2026-05-28 14:36:01.000000000 +0200
@@ -1,3 +1,4 @@
+hdf5-2.1.0.patch
0001-No-snaphu-and-epr-api.patch
0002-Fix-interpreter.patch
0003-Clean.patch
--- End Message ---
--- Begin Message ---
Source: gmtsar
Source-Version: 6.7+ds-1
Done: Antonio Valentino <[email protected]>
We believe that the bug you reported is fixed in the latest version of
gmtsar, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Antonio Valentino <[email protected]> (supplier of updated gmtsar
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Thu, 25 Jun 2026 13:35:10 +0000
Source: gmtsar
Architecture: source
Version: 6.7+ds-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project <[email protected]>
Changed-By: Antonio Valentino <[email protected]>
Closes: 1139600
Changes:
gmtsar (6.7+ds-1) unstable; urgency=medium
.
[ Gilles Filippini ]
* Improve patch for HDF5 2.1.0 (closes: #1139600)
.
[ Antonio Valentino ]
* New upstream release.
* debian/copyright:
- Update the list offiles to exclude in preparation to v6.7.
- Update dates in d/copyright.
* debian/patches:
- Refresh all patches.
- Rename hdf5-2.1.0.patch into 0004-hdf5-2.1.0.patch.
Checksums-Sha1:
c6f69eee8b50fb44741300d758827b8e59bb0324 3414 gmtsar_6.7+ds-1.dsc
16c9a015b7dc915004ff18cdaecb6f7ad34cd9ed 11460760 gmtsar_6.7+ds.orig.tar.xz
7ed51149d69de461fcfb691aa7fd1de9e55f9b38 22976 gmtsar_6.7+ds-1.debian.tar.xz
898f94ef8a7b2d5aace9278ce811c0cf732372db 12335 gmtsar_6.7+ds-1_amd64.buildinfo
Checksums-Sha256:
08192be869f1f461aa7838a62cb416e7aa262e3a0a458e462214b6fddd8c6f7f 3414
gmtsar_6.7+ds-1.dsc
d5bfd61ad78996c5a6c9e9a042a23588cf8c4046c1e3301144581860b5010b9e 11460760
gmtsar_6.7+ds.orig.tar.xz
8234cd9367b4a215eea0cd40fa4afc31e177c47df754790da7e3d0d27927ee62 22976
gmtsar_6.7+ds-1.debian.tar.xz
39ef0e70a20efa42f974073023346c7e22f5adb36713f76903076f7c8ded22ed 12335
gmtsar_6.7+ds-1_amd64.buildinfo
Files:
5c0e6e8260d16908d377bc1837f5f4a2 3414 science optional gmtsar_6.7+ds-1.dsc
10d15eb530c86ca259973b60afe76adb 11460760 science optional
gmtsar_6.7+ds.orig.tar.xz
02d58d0dc6cba1cea3f9ddb76471f4e6 22976 science optional
gmtsar_6.7+ds-1.debian.tar.xz
fb0e1fe252a24d0a207ca42e9459895a 12335 science optional
gmtsar_6.7+ds-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJRBAEBCgA7FiEEO3DyCaX/1okDxHLF6/SKslePmBIFAmo9MCwdHGFudG9uaW8u
dmFsZW50aW5vQHRpc2NhbGkuaXQACgkQ6/SKslePmBJq3Q//a5pCVn5WJnZaxRPv
rTj51MRjVTv6rCpe1LaCW0UN8tJZ3elhHLvdRN2kN1r3bnkBvS/CEN4xRiBPNARK
elGVLvGISmlcUYZ1t0oDLmP78EOIdoBKtKwUQRJcUw3mtBFGM95/3bCGP5LLzY5P
soBz0FXtXcEuIGcsWElaFlRXbq5/YQ42myk6nJbkz9H2VA+fq+pAPORGFX/P+PNd
J7tpByYTKPJzL3P0MYRFPGBsDAFH4cpNGJUTckFIzmY64TMOfczw90AoXVpDr9Ci
h9hs887SXhl17A0MsGA3AuIropLImt7iRhQ8MKVcmmfyhTCTjMnqWdJTxQ/sHtI6
hnGdInQg8Uc5FA8XVlQmHP+SQkdgJV3LXLQJpwKSLQZ8lqXrvhoUoiplc4elXXtn
xmn+yf8S+m2HAay2XyV6C/ojzE+UYlmKv4r7mfHtw4Ii+AriZ0LGlZ+vj1AR3Thz
pDhHO387E5G3l7jMUg+6ml8nsjF/JjvNGa5kln5tmUf2ABXS23hC62MoVnPcJ54p
CRaVJ6tMxS+gAuDn8l1iuU229lUXWdFIlXMFgHWSemNPjftEWHitNEQs1SCNLGwV
PGeqg0z15PYn8x7t2AJ7UqCPfzn1tHoNf/tCAfkgRP90SZRef4CCb9mb0ql9YVDf
T1V9IqEu/mnV9Fp7SRJZmqSs0go=
=BtLl
-----END PGP SIGNATURE-----
pgpNv6Nxj9w3C.pgp
Description: PGP signature
--- End Message ---