Your message dated Thu, 20 Jun 2024 00:46:24 +0000
with message-id <e1sk5ww-007rbm...@fasolo.debian.org>
and subject line Bug#1073347: fixed in qdl 1.0+git20240610.cbd4618-1
has caused the Debian Bug report #1073347,
regarding qdl: FTBFS: program.c:54:19: error: implicit declaration of function 
‘calloc’ [-Werror=implicit-function-declaration]
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.)


-- 
1073347: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1073347
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qdl
Version: 1.0+git20230411.3b22df2-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240615 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -O2 -Wall -g `pkg-config --cflags libxml-2.0` -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o ks.o ks.c
> program.c: In function ‘load_erase_tag’:
> program.c:54:19: error: implicit declaration of function ‘calloc’ 
> [-Werror=implicit-function-declaration]
>    54 |         program = calloc(1, sizeof(struct program));
>       |                   ^~~~~~
> program.c:39:1: note: include ‘<stdlib.h>’ or provide a declaration of 
> ‘calloc’
>    38 | #include "program.h"
>   +++ |+#include <stdlib.h>
>    39 | #include "qdl.h"
> program.c:54:19: warning: incompatible implicit declaration of built-in 
> function ‘calloc’ [-Wbuiltin-declaration-mismatch]
>    54 |         program = calloc(1, sizeof(struct program));
>       |                   ^~~~~~
> program.c:54:19: note: include ‘<stdlib.h>’ or provide a declaration of 
> ‘calloc’
> program.c:67:17: error: implicit declaration of function ‘free’ 
> [-Werror=implicit-function-declaration]
>    67 |                 free(program);
>       |                 ^~~~
> program.c:67:17: note: include ‘<stdlib.h>’ or provide a declaration of ‘free’
> program.c:67:17: warning: incompatible implicit declaration of built-in 
> function ‘free’ [-Wbuiltin-declaration-mismatch]
> program.c:67:17: note: include ‘<stdlib.h>’ or provide a declaration of ‘free’
> program.c: In function ‘load_program_tag’:
> program.c:87:19: warning: incompatible implicit declaration of built-in 
> function ‘calloc’ [-Wbuiltin-declaration-mismatch]
>    87 |         program = calloc(1, sizeof(struct program));
>       |                   ^~~~~~
> program.c:87:19: note: include ‘<stdlib.h>’ or provide a declaration of 
> ‘calloc’
> program.c:109:17: warning: incompatible implicit declaration of built-in 
> function ‘free’ [-Wbuiltin-declaration-mismatch]
>   109 |                 free(program);
>       |                 ^~~~
> program.c:109:17: note: include ‘<stdlib.h>’ or provide a declaration of 
> ‘free’
> patch.c: In function ‘patch_load’:
> patch.c:68:25: error: implicit declaration of function ‘calloc’ 
> [-Werror=implicit-function-declaration]
>    68 |                 patch = calloc(1, sizeof(struct patch));
>       |                         ^~~~~~
> patch.c:38:8: note: include ‘<stdlib.h>’ or provide a declaration of ‘calloc’
>    37 | #include "qdl.h"
>   +++ |+#include <stdlib.h>
>    38 | 
> patch.c:68:25: warning: incompatible implicit declaration of built-in 
> function ‘calloc’ [-Wbuiltin-declaration-mismatch]
>    68 |                 patch = calloc(1, sizeof(struct patch));
>       |                         ^~~~~~
> patch.c:68:25: note: include ‘<stdlib.h>’ or provide a declaration of ‘calloc’
> patch.c:81:25: error: implicit declaration of function ‘free’ 
> [-Werror=implicit-function-declaration]
>    81 |                         free(patch);
>       |                         ^~~~
> patch.c:81:25: note: include ‘<stdlib.h>’ or provide a declaration of ‘free’
> patch.c:81:25: warning: incompatible implicit declaration of built-in 
> function ‘free’ [-Wbuiltin-declaration-mismatch]
> patch.c:81:25: note: include ‘<stdlib.h>’ or provide a declaration of ‘free’
> qdl.c: In function ‘parse_usb_desc’:
> qdl.c:134:19: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   134 |         end = ptr + n;
>       |                   ^
> qdl.c:142:13: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   142 |         ptr += dev->bLength;
>       |             ^~
> qdl.c:147:13: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   147 |         ptr += cfg->bLength;
>       |             ^~
> qdl.c:160:29: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   160 |                         ptr += ifc->bLength;
>       |                             ^~
> qdl.c:177:37: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   177 |                                 ptr += ept->bLength;
>       |                                     ^~
> qdl.c:197:37: warning: pointer of type ‘void *’ used in arithmetic 
> [-Wpointer-arith]
>   197 |                                 ptr += USB_DT_SS_EP_COMP_SIZE;
>       |                                     ^~
> qdl.c: In function ‘qdl_read’:
> qdl.c:335:45: warning: ISO C forbids empty initializer braces before C2X 
> [-Wpedantic]
>   335 |         struct usbdevfs_bulktransfer bulk = {};
>       |                                             ^
> qdl.c: In function ‘qdl_write’:
> qdl.c:349:45: warning: ISO C forbids empty initializer braces before C2X 
> [-Wpedantic]
>   349 |         struct usbdevfs_bulktransfer bulk = {};
>       |                                             ^
> sahara.c:75:17: warning: struct has no members [-Wpedantic]
>    75 |                 struct {
>       |                 ^~~~~~
> util.c: In function ‘attr_as_unsigned’:
> cc1: some warnings being treated as errors
> util.c:94:31: error: implicit declaration of function ‘strtoul’; did you mean 
> ‘strtok’? [-Werror=implicit-function-declaration]
>    94 |         return (unsigned int) strtoul((char*)value, NULL, 0);
>       |                               ^~~~~~~
>       |                               strtok
> make[1]: *** [<builtin>: patch.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/06/15/qdl_1.0+git20230411.3b22df2-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240615;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240615&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: qdl
Source-Version: 1.0+git20240610.cbd4618-1
Done: Christopher Obbard <chris.obb...@collabora.com>

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

Debian distribution maintenance software
pp.
Christopher Obbard <chris.obb...@collabora.com> (supplier of updated qdl 
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, 19 Jun 2024 23:42:37 +0100
Source: qdl
Architecture: source
Version: 1.0+git20240610.cbd4618-1
Distribution: unstable
Urgency: medium
Maintainer: Christopher Obbard <chris.obb...@collabora.com>
Changed-By: Christopher Obbard <chris.obb...@collabora.com>
Closes: 1073347
Changes:
 qdl (1.0+git20240610.cbd4618-1) unstable; urgency=medium
 .
   * New upstream version 1.0+git20240610.cbd4618 (Closes: #1073347)
   * d/control: Update upstream
   * d/watch: Update upstream
   * d/patches: Drop patches applied upstream
   * d/control: Update Build-Depends: pkg-config => pkgconf
   * d/control: Bump Standards-Version to 4.7.0
Checksums-Sha1:
 3d1e6729b3b448644ca9f676d967ca2d87d4dea3 1992 qdl_1.0+git20240610.cbd4618-1.dsc
 77d24faffa3b2c195ba79a5d884aff5dc0b5d242 16012 
qdl_1.0+git20240610.cbd4618.orig.tar.xz
 1e6e46c108985d01e1b1a0f29935f151291dee17 2292 
qdl_1.0+git20240610.cbd4618-1.debian.tar.xz
 1c9d5024042748579966c325dc7a9fc9a37e2c36 6457 
qdl_1.0+git20240610.cbd4618-1_amd64.buildinfo
Checksums-Sha256:
 bfd6f71b35e44d05ae721e47f365eed9bc6d6d91edc76bfcde426bb6dd2ad1a1 1992 
qdl_1.0+git20240610.cbd4618-1.dsc
 b49125ced30f622a8374c90a411858ac1a262ea46acaef8ab50f63077275fadd 16012 
qdl_1.0+git20240610.cbd4618.orig.tar.xz
 e1a6edf02b8ddd54d215a943510d2079c6ee2d558bff42cb1d41c970062f0816 2292 
qdl_1.0+git20240610.cbd4618-1.debian.tar.xz
 c8630f6de56ae8504986694bfce69a81aafe783989d36d977e9018d28a8cd31f 6457 
qdl_1.0+git20240610.cbd4618-1_amd64.buildinfo
Files:
 cb8a17e0b3d7997485e3b904e102d9f1 1992 utils optional 
qdl_1.0+git20240610.cbd4618-1.dsc
 8108961e2a172406d4cf38d59112d1ab 16012 utils optional 
qdl_1.0+git20240610.cbd4618.orig.tar.xz
 0e8a3b04d52404ec350f5befd120caf2 2292 utils optional 
qdl_1.0+git20240610.cbd4618-1.debian.tar.xz
 468dd32ffdbcb5af08385506a1bcca9a 6457 utils optional 
qdl_1.0+git20240610.cbd4618-1_amd64.buildinfo

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

iQJPBAEBCgA5FiEE8Yvci2wl+QqiPVF0Y03E8GhwRvgFAmZzX64bHGNocmlzLm9i
YmFyZEBjb2xsYWJvcmEuY29tAAoJEGNNxPBocEb4vrkP/RaD1rFORSnHeFymIUAD
v++aT67rldyW4b3THwbOr6ORIXpc1JmHB/PZi7kIRuLjwLn16Fl8iVNupXz/gx3B
Fh9G8cvmqVsm8JkPhuvadd9plY+41K7u6oD4PWl20mZO7P+rwGXDgDVWe93Ag4gQ
PvEURRnj+zlC4IHw/MXX3ZXtsyDQEDD8tzeBFeETys95NEPiwiqJwX5HbwsQmt7W
9qc0Sv5jiBM6LoUdYh6YKN/Bzqu1ojoS4E0cb0hMi41UG05rYovG6YMvqEcId8P5
uaxqbMHVDFuNl75ucasHcbfWXh0smFsGhKOr0WM6D6DI+oeo/KEVFiv7uHKfdaBH
wggjYpDKZfTaV0Chty/LfkMqdznHYhzeMqV5msOEh7SpKfdmOd8XlYvC46Cux1F6
au4MvAr+C/Src713URULQIbDSK27jWOerpXUEgYj9fTEAYy4hTWdDvWOCvhUfOsI
X4rS12+fbYxvDFpgIb/CN7TLUSq5np3VNqQo8onzpqPoYvkkJzD0c8ULQcuLdrRB
sJrQpvosVQnk47pNUBcT09Q+JT+I9xSmcYbhYf7nhMH/V4zVQ7ctJ7CuP1SbLkV3
9c7XVn4jaxbEgz2KIGOcZGFFqBIUiyZP1TzHpir48aQuiGezgIxV5+hi4nNupcLB
jvKoh8HAgn8AcoOVRgZSbsIn
=OmCr
-----END PGP SIGNATURE-----

Attachment: pgpmQeQgqpoqT.pgp
Description: PGP signature


--- End Message ---

Reply via email to