Your message dated Thu, 30 Jul 2026 19:02:11 +0000
with message-id <[email protected]>
and subject line Bug#1139612: fixed in slurm-wlm-contrib 26.5.1-1
has caused the Debian Bug report #1139612,
regarding slurm-wlm-contrib: 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.)
--
1139612: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1139612
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: slurm-wlm-contrib
Version: 25.11.4-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, slurm-wlm-contrib FTBFS because its build
toolchain doesn't support this new major release.
The attached patch is a workaround for this issue and supports 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/+z4MFAmopKwUACgkQ7+hsbH/+
z4NO/gf9G6ebPQw3jHdFpr3ht1EV4NhIu03BXcE9Gun6Vc3xuZ+BwsPK3tjmErL9
EcOJKf8KN3Wlr/a+MqQMFQ5ZIXOOKkC3YGmVsuBOdaS2McB9Mf2NsXCYXsOPIpOs
jXCZ5rFeUTIHI9kz4c+8qYkUv/UUHZAaNBF+tA/TnOAqVSaKteG0vQDQN3DZWFTa
xutnqwoFStv/r1LCYi3RQqDoY4rqPzspuZMwjLY1oNh63+OoNB/q6mMW3JVsbwNf
47pD4/iLaT/NY1STSJJp6uVRjZR/hHNFZss4yfikSilwUAYytiuIZg3DQ/DGwKHI
nay0HPxwl5kMkq8goO4dNeAOeztZcg==
=EM3z
-----END PGP SIGNATURE-----
diff -Nru slurm-wlm-contrib-25.11.4/debian/changelog
slurm-wlm-contrib-25.11.4/debian/changelog
--- slurm-wlm-contrib-25.11.4/debian/changelog 2026-03-19 22:18:24.000000000
+0100
+++ slurm-wlm-contrib-25.11.4/debian/changelog 2026-06-05 14:37:46.000000000
+0200
@@ -1,3 +1,10 @@
+slurm-wlm-contrib (25.11.4-1.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS against HDF5 2.1.0
+
+ -- Gilles Filippini <[email protected]> Fri, 05 Jun 2026 14:37:46 +0200
+
slurm-wlm-contrib (25.11.4-1) unstable; urgency=medium
* New upstream release
diff -Nru slurm-wlm-contrib-25.11.4/debian/patches/hdf5-2.1.0.patch
slurm-wlm-contrib-25.11.4/debian/patches/hdf5-2.1.0.patch
--- slurm-wlm-contrib-25.11.4/debian/patches/hdf5-2.1.0.patch 1970-01-01
01:00:00.000000000 +0100
+++ slurm-wlm-contrib-25.11.4/debian/patches/hdf5-2.1.0.patch 2026-06-05
14:37:46.000000000 +0200
@@ -0,0 +1,49 @@
+Index: slurm-wlm-25.11.4/auxdir/ax_lib_hdf5.m4
+===================================================================
+--- slurm-wlm-25.11.4.orig/auxdir/ax_lib_hdf5.m4
++++ slurm-wlm-25.11.4/auxdir/ax_lib_hdf5.m4
+@@ -237,7 +237,15 @@ HDF5 support is being disabled (equivale
+ esac
+ done
+
+- HDF5_LIBS="-lhdf5 $HDF5_LIBS"
++ HDF5_LIBS="${HDF5_LIBS#"${HDF5_LIBS%%[![:space:]]*}"}"
++ HDF5_INFIX=
++ case "$HDF5_LIBS" in
++ -lhdf5_*)
++ HDF5_INFIX="${HDF5_LIBS#-lhdf5_}"
++ HDF5_INFIX="_${HDF5_INFIX%%_*}"
++ ;;
++ esac
++ HDF5_LIBS="-lhdf5$HDF5_INFIX $HDF5_LIBS"
+ AC_MSG_RESULT([yes (version $[HDF5_VERSION])])
+
+ dnl See if we can compile
+@@ -251,13 +259,13 @@ HDF5 support is being disabled (equivale
+ LIBS=$HDF5_LIBS
+ LDFLAGS=$HDF5_LDFLAGS
+ AC_CHECK_HEADER([hdf5.h], [ac_cv_hadf5_h=yes], [ac_cv_hadf5_h=no])
+- AC_CHECK_LIB([hdf5], [H5Fcreate], [ac_cv_libhdf5=yes],
++ AC_CHECK_LIB([hdf5${HDF5_INFIX}], [H5Fcreate], [ac_cv_libhdf5=yes],
+ [ac_cv_libhdf5=no])
+ if test "$ac_cv_hadf5_h" = "no" && test "$ac_cv_libhdf5" = "no" ; then
+ AC_MSG_WARN([Unable to compile HDF5 test program])
+ fi
+ dnl Look for HDF5's high level library
+- AC_CHECK_LIB([hdf5_hl], [main], [HDF5_LIBS="-lhdf5_hl $HDF5_LIBS"],
[])
++ AC_CHECK_LIB([hdf5${HDF5_INFIX}_hl], [main],
[HDF5_LIBS="-lhdf5${HDF5_INFIX}_hl $HDF5_LIBS"], [])
+
+ CC=$ax_lib_hdf5_save_CC
+ CPPFLAGS=$ax_lib_hdf5_save_CPPFLAGS
+@@ -294,9 +302,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_hl) HDF5_FLIBS="$HDF5_FLIBS
-lhdf5${HDF5_INFIX}_hl_fortran $arg"
+ ;; #(
+- -lhdf5) HDF5_FLIBS="$HDF5_FLIBS -lhdf5_fortran $arg"
++ -lhdf5) HDF5_FLIBS="$HDF5_FLIBS
-lhdf5${HDF5_INFIX}_fortran $arg"
+ ;; #(
+ *) HDF5_FLIBS="$HDF5_FLIBS $arg"
+ ;;
diff -Nru slurm-wlm-contrib-25.11.4/debian/patches/series
slurm-wlm-contrib-25.11.4/debian/patches/series
--- slurm-wlm-contrib-25.11.4/debian/patches/series 2026-03-19
22:18:24.000000000 +0100
+++ slurm-wlm-contrib-25.11.4/debian/patches/series 2026-06-05
14:37:46.000000000 +0200
@@ -7,3 +7,4 @@
retry-getaddrinfo
force-nvml
fix-manpage-groff-warnings
+hdf5-2.1.0.patch
--- End Message ---
--- Begin Message ---
Source: slurm-wlm-contrib
Source-Version: 26.5.1-1
Done: Gennaro Oliva <[email protected]>
We believe that the bug you reported is fixed in the latest version of
slurm-wlm-contrib, 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.
Gennaro Oliva <[email protected]> (supplier of updated slurm-wlm-contrib 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: Sun, 26 Jul 2026 23:43:37 +0200
Source: slurm-wlm-contrib
Binary: slurm-wlm-nvml-plugin slurm-wlm-nvml-plugin-dbgsym
slurm-wlm-nvml-plugin-dev
Architecture: source amd64
Version: 26.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Gennaro Oliva <[email protected]>
Changed-By: Gennaro Oliva <[email protected]>
Description:
slurm-wlm-nvml-plugin - SLURM NVML plugins
slurm-wlm-nvml-plugin-dev - SLURM NVML plugin development files
Closes: 1137761 1139612
Changes:
slurm-wlm-contrib (26.5.1-1) unstable; urgency=medium
.
* New upstream release
* Update patches
* Drop default-libmysqlclient-dev dep (Closes: #1137761)
.
[ Gilles Filippini ]
* Fix FTBFS against HDF5 2.1.0 (Closes: #1139612)
Checksums-Sha1:
a8c7b0f9c560995dc597e7cd393103127c306d8f 2583 slurm-wlm-contrib_26.5.1-1.dsc
f52e7dfdaeb611691153b712a5410d49ed98ce7b 9579815
slurm-wlm-contrib_26.5.1.orig.tar.gz
638d46bd2545a5eac13249bcf164161e45bf102c 86620
slurm-wlm-contrib_26.5.1-1.debian.tar.xz
15a863130a984fccba20345dde86e5085c457c06 13646
slurm-wlm-contrib_26.5.1-1_amd64.buildinfo
3fdcb96ce8bcbb24c773a4808b70cfce1c2963ca 45712
slurm-wlm-nvml-plugin-dbgsym_26.5.1-1_amd64.deb
7fd683375d38783b9a09486e7b523edcfb2868c6 29828
slurm-wlm-nvml-plugin-dev_26.5.1-1_amd64.deb
0738c6e578e4396ddc6fe5952bc8e1050391f1da 29768
slurm-wlm-nvml-plugin_26.5.1-1_amd64.deb
Checksums-Sha256:
ed315e1f4cf0a68c84834d86f40edc5bd114972ee9afa9a0eb05705707b27759 2583
slurm-wlm-contrib_26.5.1-1.dsc
432362d3ced66476a8edb61b6c06b6f0c0c1b3bbbf40589fae94de0664c803b5 9579815
slurm-wlm-contrib_26.5.1.orig.tar.gz
c2fdc040a53ae0b48c61d32ad4ef57df8275a173402e09ed71161cd89977bccc 86620
slurm-wlm-contrib_26.5.1-1.debian.tar.xz
6dc1389a7c114b0a6bfa83c3c21bffe7a028a1cf36e755adf2dcbfe880faa7de 13646
slurm-wlm-contrib_26.5.1-1_amd64.buildinfo
7585f293faf518b09e650a1201a483d9b93d88850694f5eedb93da9378967263 45712
slurm-wlm-nvml-plugin-dbgsym_26.5.1-1_amd64.deb
1bf621ee67f65b779ec84784744184d68c1692657c519ca7f07382e4908abaa1 29828
slurm-wlm-nvml-plugin-dev_26.5.1-1_amd64.deb
3e3f97009293a4d73efeabef40b14ff225afa76d57ed4ae1a153f985aa82a2f6 29768
slurm-wlm-nvml-plugin_26.5.1-1_amd64.deb
Files:
8b6b3bf6b36eaf2a61b247eb46246876 2583 contrib/admin optional
slurm-wlm-contrib_26.5.1-1.dsc
3ee8f2ebfb201c315e8867b4e40ea4fa 9579815 contrib/admin optional
slurm-wlm-contrib_26.5.1.orig.tar.gz
780186b4b64321c90758de613a613080 86620 contrib/admin optional
slurm-wlm-contrib_26.5.1-1.debian.tar.xz
524125b0a5d843bbd50b52f68988a34b 13646 contrib/admin optional
slurm-wlm-contrib_26.5.1-1_amd64.buildinfo
7c9b558104ca3fd3cfa72272c422ed30 45712 contrib/debug optional
slurm-wlm-nvml-plugin-dbgsym_26.5.1-1_amd64.deb
855c60d1fbdfe0273d0b7dda4ce1eae4 29828 contrib/devel optional
slurm-wlm-nvml-plugin-dev_26.5.1-1_amd64.deb
7b23427187b3f21660f254f534527591 29768 contrib/libs optional
slurm-wlm-nvml-plugin_26.5.1-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQJFBAEBCgAvFiEE6zNF9WRBuLgad5h2ffpBrZYZhdcFAmpmg78RHG9saXZhQGRl
Ymlhbi5vcmcACgkQffpBrZYZhdewgxAAkLmj5ZN6CBqAlx3modE3+GPJnqMQOUqE
dtDUzJVpTSNJuyr+a4DmTK9oULN2ePG8O5gXXC3hJ0rdqXaoa4EzWV/h722ZHPM4
A1Wt9MkW1WokHkb589ZkFdVkUgJM+sVuabAF+7lxEI7sVu9w4+CImdU5dcKHAmp6
mbRJ+DKAhC87NvMThU0XiHPQym4ZuqmYZpAzJTL0Ijjv52Yn75LhbU3ucniitcRa
gKTfrin2WGW8UtVYB/itxMBqkisUUqfDy1K8GAG5aGATZmLvQSgb3jjJk3E5rx5I
TG+QZq+J5km4aDRewXJWsBNTVR+OjhDwuL43CJQMxNaKhFHUJCiv6WeQTbwe+TlG
z3PVKffR6Oc2uk9FYgHVB9uc7fjORZ9sl1Kh5eOxRXijRYLAtPTl/Ik5UlO0BX8t
0cgC8+pP+d9NLgX2BnqR/eG2+EwCuh2vTpJhvNm8kRRGhfUCNTDMIJIrT9C/3Ovn
wrq2tDsbbvPbS1koaQKXimFy3eiSrhRnbJ+octBhvUERUr1/R38J1pfCwpYb+ajE
PfzJh6hpTKRVFThyyAnSR//K8G693hus1cDqFrwYduKVetEmDUZ4c+SodWcsMiSE
ELxyFVbcfU3IjWvK+LMDji+9QPNtfHzyxSwlRMWP/gTdW/YDX9DpaIc9PGS8e1sL
wB3aW+lWiJg=
=LLLF
-----END PGP SIGNATURE-----
pgpawMl6oHbkX.pgp
Description: PGP signature
--- End Message ---