Your message dated Sat, 21 Sep 2024 08:38:29 +0000
with message-id <e1srvdn-004nwz...@fasolo.debian.org>
and subject line Bug#1075196: fixed in libopendbx 1.4.6-18
has caused the Debian Bug report #1075196,
regarding libopendbx: 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.)


-- 
1075196: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075196
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:libopendbx
Version: 1.4.6-17
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/libopendbx_1.4.6-17_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

[...]
firebird_basic.c: In function ‘firebird_odbx_row_fetch’:
firebird_basic.c:547:119: warning: format ‘%lld’ expects argument of type ‘long 
long int’, but argument 4 has type ‘int64_t’ {aka ‘long int’} [-Wformat=]
  547 |                                 len = snprintf( da->sqlvar[i].sqldata, 
firebird_priv_collength( da->sqlvar + i ), "%lld", *((int64_t*) 
da->sqlvar[i].sqldata) );
      |                                                                         
                                           ~~~^   
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                                                         
                                              |   |
      |                                                                         
                                              |   int64_t {aka long int}
      |                                                                         
                                              long long int
      |                                                                         
                                           %ld
make[4]: *** [Makefile:520: libfirebirdbackend_la-firebird_basic.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
firebird_lo.c: In function ‘firebird_odbx_lo_open’:
firebird_lo.c:50:42: error: passing argument 2 of ‘isc_open_blob2’ from 
incompatible pointer type [-Wincompatible-pointer-types]
   50 |         if( isc_open_blob2( fbc->status, &(result->handle->generic), 
fbc->tr + fbc->trlevel, &((*lo)->generic), (ISC_QUAD*) value, 0, NULL ) != 0 )
      |                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                          |
      |                                          void **
In file included from firebirdbackend.h:24,
                 from firebird_lo.h:11,
                 from firebird_lo.c:12:
/usr/include/ibase.h:839:74: note: expected ‘isc_db_handle *’ {aka ‘unsigned 
int *’} but argument is of type ‘void **’
  839 |                                                                         
 isc_db_handle*,
      |                                                                         
 ^~~~~~~~~~~~~~
firebird_lo.c:50:94: error: passing argument 4 of ‘isc_open_blob2’ from 
incompatible pointer type [-Wincompatible-pointer-types]
   50 |         if( isc_open_blob2( fbc->status, &(result->handle->generic), 
fbc->tr + fbc->trlevel, &((*lo)->generic), (ISC_QUAD*) value, 0, NULL ) != 0 )
      |                                                                         
                     ^~~~~~~~~~~~~~~~~
      |                                                                         
                     |
      |                                                                         
                     void **
/usr/include/ibase.h:841:74: note: expected ‘isc_blob_handle *’ {aka ‘unsigned 
int *’} but argument is of type ‘void **’
  841 |                                                                         
 isc_blob_handle*,
      |                                                                         
 ^~~~~~~~~~~~~~~~
firebird_lo.c: In function ‘firebird_odbx_lo_close’:
firebird_lo.c:65:81: error: passing argument 2 of ‘isc_close_blob’ from 
incompatible pointer type [-Wincompatible-pointer-types]
   65 |         if( isc_close_blob( ((struct fbconn*) 
lo->result->handle->aux)->status, &(lo->generic) ) != 0 )
      |                                                                         
        ^~~~~~~~~~~~~~
      |                                                                         
        |
      |                                                                         
        void **
/usr/include/ibase.h:622:74: note: expected ‘isc_blob_handle *’ {aka ‘unsigned 
int *’} but argument is of type ‘void **’
  622 |                                                                         
 isc_blob_handle *);
      |                                                                         
 ^~~~~~~~~~~~~~~~~
firebird_lo.c: In function ‘firebird_odbx_lo_read’:
firebird_lo.c:107:45: error: passing argument 2 of ‘isc_get_segment’ from 
incompatible pointer type [-Wincompatible-pointer-types]
  107 |         err = isc_get_segment( fbc->status, &(lo->generic), &bytes, 
len, (char*) buffer );
      |                                             ^~~~~~~~~~~~~~
      |                                             |
      |                                             void **
/usr/include/ibase.h:806:75: note: expected ‘isc_blob_handle *’ {aka ‘unsigned 
int *’} but argument is of type ‘void **’
  806 |                                                                         
  isc_blob_handle *,
      |                                                                         
  ^~~~~~~~~~~~~~~~~
firebird_lo.c: In function ‘firebird_odbx_lo_write’:
firebird_lo.c:125:43: error: passing argument 2 of ‘isc_put_segment’ from 
incompatible pointer type [-Wincompatible-pointer-types]
  125 |         if( isc_put_segment( fbc->status, &(lo->generic), len, (char*) 
buffer ) != 0 )
      |                                           ^~~~~~~~~~~~~~
      |                                           |
      |                                           void **
/usr/include/ibase.h:857:75: note: expected ‘isc_blob_handle *’ {aka ‘unsigned 
int *’} but argument is of type ‘void **’
  857 |                                                                         
  isc_blob_handle*,
      |                                                                         
  ^~~~~~~~~~~~~~~~
make[4]: *** [Makefile:527: libfirebirdbackend_la-firebird_lo.lo] Error 1
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -DAPINUMBER=10200 
-I../../lib -I/usr/include/mysql -I/usr/include/postgresql -Wdate-time 
-D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wall 
-pedantic -std=c99 -MT libfirebirdbackend_la-firebirdbackend.lo -MD -MP -MF 
.deps/libfirebirdbackend_la-firebirdbackend.Tpo -c firebirdbackend.c -o 
libfirebirdbackend_la-firebirdbackend.o >/dev/null 2>&1
mv -f .deps/libfirebirdbackend_la-firebirdbackend.Tpo 
.deps/libfirebirdbackend_la-firebirdbackend.Plo
make[4]: Leaving directory '/<<PKGBUILDDIR>>/backends/firebird'
make[3]: *** [Makefile:399: all-recursive] Error 1
make[3]: Leaving directory '/<<PKGBUILDDIR>>/backends'
make[2]: *** [Makefile:522: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:427: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:46: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: libopendbx
Source-Version: 1.4.6-18
Done: Unit 193 <unit...@debian.org>

We believe that the bug you reported is fixed in the latest version of
libopendbx, 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.
Unit 193 <unit...@debian.org> (supplier of updated libopendbx 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: SHA384

Format: 1.8
Date: Sat, 21 Sep 2024 03:08:50 -0400
Source: libopendbx
Architecture: source
Version: 1.4.6-18
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packa...@qa.debian.org>
Changed-By: Unit 193 <unit...@debian.org>
Closes: 1075196
Changes:
 libopendbx (1.4.6-18) unstable; urgency=medium
 .
   * QA upload.
   * d/p/gcc14.patch: Fix ftbfs with GCC-14.
     Thanks to Tim Woodall (Closes: #1075196)
   * Bump Standards-Version to 4.7.0.
Checksums-Sha1:
 e450f77f39ca42ae8e244d4878e99a67195f09c3 2774 libopendbx_1.4.6-18.dsc
 df6b1cb75165d4510e2ccf64e5515ada4ae3a67c 587514 libopendbx_1.4.6.orig.tar.gz
 68918732122bb690e793537c5e25d95d51bd2292 79528 
libopendbx_1.4.6-18.debian.tar.xz
 467e7340d709d3c8db865a0be9754a09ab9a9350 15409 
libopendbx_1.4.6-18_amd64.buildinfo
Checksums-Sha256:
 877a6d0708e36fcdf334d80232e4f66d18dbb8d840153abb90537a8075f9e250 2774 
libopendbx_1.4.6-18.dsc
 2246a03812c7d90f10194ad01c2213a7646e383000a800277c6fb8d2bf81497c 587514 
libopendbx_1.4.6.orig.tar.gz
 580a158ea9d7f826bae7816561ce7dfcae5d7b2a2f88cc360f74dbb83dbc13b0 79528 
libopendbx_1.4.6-18.debian.tar.xz
 79603bf885ec2f6cb295dbeed892926b2b2da926f77b154e29ee04d074ab9156 15409 
libopendbx_1.4.6-18_amd64.buildinfo
Files:
 abb5a144d0860516cb78df54ab779b6c 2774 libs optional libopendbx_1.4.6-18.dsc
 3e89d7812ce4a28046bd60d5f969263d 587514 libs optional 
libopendbx_1.4.6.orig.tar.gz
 4f9f579de81cb3091b545aba47a766b8 79528 libs optional 
libopendbx_1.4.6-18.debian.tar.xz
 94d2b2f62bf577d61f1224f2d21fd0ab 15409 libs optional 
libopendbx_1.4.6-18_amd64.buildinfo

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

iQIzBAEBCQAdFiEEjbPlhoZdK0orGFpcUAHhsJqjdEsFAmbucu8ACgkQUAHhsJqj
dEvnFQ//Yr9Spaqw+l8+ufnBxldTM8hToiAhEIaCLXHxDigH/b4cZXF4WXcAftob
s5O7mst7reWQPi0GXtaR4LvuWemWlHvLnTT4FyXXY4+G4p/ZLUdJ8OZz3rN5epcC
XL5VN67mPXJj51TYldXOWCU44le/l2EESOqbXnA4ahuaKhZyyAMgQuxZzKndTW+7
M+cjkszmvxMoPqbtam8Id7KWeS68Jk9HBcotxR9hyKUYGkceFWxs0EN1Q8JkdTpS
8be3c1d9VXbcEvoX6G+jDLLXlL4F5fXz8U3Z09kiXDj3yuoQIeSt5CFmORO9Z3yk
Hk6COB0+82JGK7i840Id7jM1eS3NPbqDUCwN/EOqIcjMS76LvviNCBljyHruWTly
vlRGv/PIp5DpKbnDo3/b/2RKaLJMF6iTxq1+eze/B7IhMuNVyUbJL05q55Dux2yp
eIfYWI+v9HGwQVwDN4zKQVC3Njma+oUjIO1jXpadlwqgCM5/5gi1H3/7Emk/x9/u
pCLhLapxMkC1cXB2vtr+JDvylUGgjrh3quJr/57s6Ui7J1M3Tw/MKinF/Z+y64ao
E5ww5p63oGkWLQ5i5WXrUS426porIaWWgQ5fc1AXrY3mDjXXwd4DtHvX+D+XTcyo
pbJEIot0mlgjR8JLGX28VTusQcqM0VQlH7uDsKuwC3npwyuwRZQ=
=Q/OI
-----END PGP SIGNATURE-----

Attachment: pgp4nKjG8555v.pgp
Description: PGP signature


--- End Message ---

Reply via email to