Your message dated Wed, 10 Jul 2024 21:56:30 +0000
with message-id <e1srfic-00gwob...@fasolo.debian.org>
and subject line Bug#1075203: fixed in libsis-jhdf5-java 19.04.1+dfsg-5
has caused the Debian Bug report #1075203,
regarding libsis-jhdf5-java: ftbfs with GCC-14
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 ow...@bugs.debian.org
immediately.)


-- 
1075203: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075203
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:libsis-jhdf5-java
Version: 19.04.1+dfsg-4
Severity: important
Tags: sid trixie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-14

[This bug is targeted to the upcoming trixie release]

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-14/g++-14, but succeeds to build with gcc-13/g++-13. The
severity of this report will be raised before the trixie release.

The full build log can be found at:
http://qa-logs.debian.net/2024/07/01/libsis-jhdf5-java_19.04.1+dfsg-4_unstable_gccexp.log
The last lines of the build log are at the end of this report.

To build with GCC 14, either set CC=gcc-14 CXX=g++-14 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-14/porting_to.html

[...]
jni/h5dImp.c:1378:37: warning: passing argument 1 of ‘h5str_vlconvert’ discards 
‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
 1378 |                     h5str_vlconvert(utf8, did, tid, wdata+i, 0);
      |                                     ^~~~
In file included from jni/h5dImp.c:29:
jni/h5util.h:44:38: note: expected ‘char *’ but argument is of type ‘const char 
*’
   44 | extern size_t  h5str_vlconvert(char *str, hid_t container, hid_t tid, 
hvl_t *ptr, int expand_data);
      |                                ~~~~~~^~~
jni/h5pImp.c: In function ‘Java_hdf_hdf5lib_H5_H5Pget_1chunk_1opts’:
jni/h5pImp.c:5933:43: error: passing argument 2 of ‘H5Pget_chunk_opts’ makes 
pointer from integer without a cast [-Wint-conversion]
 5933 |     if (H5Pget_chunk_opts((hid_t)dcpl_id, opts) < 0)
      |                                           ^~~~
      |                                           |
      |                                           unsigned int
In file included from /usr/include/hdf5/serial/hdf5.h:33,
                 from jni/h5pImp.c:25:
/usr/include/hdf5/serial/H5Ppublic.h:5472:59: note: expected ‘unsigned int *’ 
but argument is of type ‘unsigned int’
 5472 | H5_DLL herr_t H5Pget_chunk_opts(hid_t plist_id, unsigned *opts);
      |                                                 ~~~~~~~~~~^~~~
jni/h5util.c: In function ‘h5str_convert’:
jni/h5util.c:336:27: warning: too many arguments for format 
[-Wformat-extra-args]
  336 |             sscanf(token, "%%lf", &tmp_double);
      |                           ^~~~~~
jni/h5util.c:364:34: warning: format ‘%hu’ expects argument of type ‘short 
unsigned int *’, but argument 3 has type ‘unsigned char *’ [-Wformat=]
  364 |                 sscanf(token, "%hu", &tmp_uchar);
      |                                ~~^   ~~~~~~~~~~
      |                                  |   |
      |                                  |   unsigned char *
      |                                  short unsigned int *
      |                                %hhu
jni/h5util.c:370:34: warning: format ‘%hd’ expects argument of type ‘short int 
*’, but argument 3 has type ‘char *’ [-Wformat=]
  370 |                 sscanf(token, "%hd", &tmp_char);
      |                                ~~^   ~~~~~~~~~
      |                                  |   |
      |                                  |   char *
      |                                  short int *
      |                                %hhd
jni/h5util.c:392:33: warning: format ‘%u’ expects argument of type ‘unsigned 
int *’, but argument 3 has type ‘short unsigned int *’ [-Wformat=]
  392 |                 sscanf(token, "%u", &tmp_ushort);
      |                                ~^   ~~~~~~~~~~~
      |                                 |   |
      |                                 |   short unsigned int *
      |                                 unsigned int *
      |                                %hu
jni/h5util.c:398:33: warning: format ‘%d’ expects argument of type ‘int *’, but 
argument 3 has type ‘short int *’ [-Wformat=]
  398 |                 sscanf(token, "%d", &tmp_short);
      |                                ~^   ~~~~~~~~~~
      |                                 |   |
      |                                 |   short int *
      |                                 int *
      |                                %hd
jni/h5util.c:514:54: error: passing argument 4 of ‘h5str_convert’ from 
incompatible pointer type [-Wincompatible-pointer-types]
  514 |             h5str_convert(str, container, mtid, cptr + (i*offset), 
offset, expand_data);
      |                                                 ~~~~~^~~~~~~~~~~~
      |                                                      |
      |                                                      char *
jni/h5util.c:281:53: note: expected ‘hvl_t *’ but argument is of type ‘char *’
  281 |     (char **str, hid_t container, hid_t tid, hvl_t *ptr, int ptroffset, 
int expand_data)
      |                                              ~~~~~~~^~~
jni/h5util.c:542:58: error: passing argument 4 of ‘h5str_convert’ from 
incompatible pointer type [-Wincompatible-pointer-types]
  542 |                 h5str_convert(str, container, mtid, cptr + (i*offset), 
offset, expand_data);
      |                                                     ~~~~~^~~~~~~~~~~~
      |                                                          |
      |                                                          char *
jni/h5util.c:281:53: note: expected ‘hvl_t *’ but argument is of type ‘char *’
  281 |     (char **str, hid_t container, hid_t tid, hvl_t *ptr, int ptroffset, 
int expand_data)
      |                                              ~~~~~~~^~~
make[1]: *** [debian/rules:33: override_dh_auto_build] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:17: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: libsis-jhdf5-java
Source-Version: 19.04.1+dfsg-5
Done: Pierre Gruet <p...@debian.org>

We believe that the bug you reported is fixed in the latest version of
libsis-jhdf5-java, 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 1075...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre Gruet <p...@debian.org> (supplier of updated libsis-jhdf5-java 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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 10 Jul 2024 23:23:47 +0200
Source: libsis-jhdf5-java
Architecture: source
Version: 19.04.1+dfsg-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Pierre Gruet <p...@debian.org>
Closes: 1075203
Changes:
 libsis-jhdf5-java (19.04.1+dfsg-5) unstable; urgency=medium
 .
   * Building with gcc14 (Closes: #1075203)
   * Raising Standards version to 4.7.0 (no change)
Checksums-Sha1:
 96cdcc91983c395735cc6e1c52c147e7c2966f61 2704 
libsis-jhdf5-java_19.04.1+dfsg-5.dsc
 bd2c6b4fbde233aaa43f55fa7ef371fdf9102d6b 15288 
libsis-jhdf5-java_19.04.1+dfsg-5.debian.tar.xz
 5a0d35072725fd236472f69580432d36b6c9324f 17412 
libsis-jhdf5-java_19.04.1+dfsg-5_source.buildinfo
Checksums-Sha256:
 5530398cc26aa3385de06e91e1ac1c62cfc3fe1ece619116c0212d2334849cc5 2704 
libsis-jhdf5-java_19.04.1+dfsg-5.dsc
 20763531f9174f7bb9a4fe149916df00dcfb0cd43849527628ec7c1190f0cef7 15288 
libsis-jhdf5-java_19.04.1+dfsg-5.debian.tar.xz
 6feb8db2363f9bd736b9eb334547594ad3aac92c85e4064070e9c4e51f54b42a 17412 
libsis-jhdf5-java_19.04.1+dfsg-5_source.buildinfo
Files:
 d0ab985d3dcfa2c9bfabe073552d4143 2704 java optional 
libsis-jhdf5-java_19.04.1+dfsg-5.dsc
 8f910b2f41b725facbd1944825bdff58 15288 java optional 
libsis-jhdf5-java_19.04.1+dfsg-5.debian.tar.xz
 4626110fe4088178971ca914da3138d5 17412 java optional 
libsis-jhdf5-java_19.04.1+dfsg-5_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEM8soQxPpC9J9y0UjYAMWptwndHYFAmaO/CMACgkQYAMWptwn
dHZNZhAAp40oOYHMLHmG5oEHAI3lWN+TLMPpVYX7sWKqPkHu/uhrVL5sJYeV4hAX
5ABWrCxpKTzufc5ZtmXfmPDqiwU0BIxkOm8rvi70Y1zmr3snXQwRVrMAbY/DwTcR
lGNKcyA106r/kql9/fpGMUqWtH0PoCWvpq9t2OhXTxkydgxWfoxPJJq7Mq7ugmjm
hSMSwe2s4dY6TKPw/S4odKF4bZEyYcrMsDPAOhkIrQrf7HkOhM87M8kRMAZJsz8P
sYRGuJoLJrXiF47chdjcBGdIlhxqPofCcOPfAQoFUb2zhNveJCWzJcIJTQDAErj0
fpqG7q6B0nuKVN5DAM5T0slR/OpFWCzoMUWdUmAsb0kFmP7nE6R5r3PYoj7S3DFL
xbMdJoaB+phnQ2EaNPC3iGkzzd+3FyEhyvulo63GQp8yLBLaaslUDKw9vklsaDbf
/hLyz+YGO7VbLdE5Yl7TzP7Xvc2kFtY8H5qHNWYyPjetfoW4XV9qggC8be0pDWme
illgMVSJem6V3gL9vCcGfBAodKzQXN00DJXfLg/eLFk1sMUiCIf4SmZB3Gp4PBNv
R12j9eIw0Wb8XcuOTUs9/tz4q/V8go6SkBS6nmgz1g8SWTVLvFsvChpGpsCOh/aQ
Rywb1OACWE50vwJRohGPQwR5QmFLYffe4qF2mpYS6oNtSQZVHGk=
=bCab
-----END PGP SIGNATURE-----

Attachment: pgpXU3X83Fg0I.pgp
Description: PGP signature


--- End Message ---

Reply via email to