Bug#1066480: cyrus-imspd: FTBFS: main.c:127:10: error: implicit declaration of function ‘setsid’; did you mean ‘setbit’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: cyrus-imspd
Version: 1.8-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -c -I.. -I. -I. -I./../lib -I/usr/local/include -Wdate-time 
> -D_FORTIFY_SOURCE=2  -DHAVE_CONFIG_H -DSETPROCTITLE  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection \
> main.c
> main.c: In function ‘start_server’:
> main.c:127:10: error: implicit declaration of function ‘setsid’; did you mean 
> ‘setbit’? [-Werror=implicit-function-declaration]
>   127 | (setsid((pid_t)0) < 0)) {
>   |  ^~
>   |  setbit
> main.c:165:9: error: implicit declaration of function ‘sleep’ 
> [-Werror=implicit-function-declaration]
>   165 | sleep(1);
>   | ^
> main.c:187:17: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>   187 |   pid = fork();
>   | ^~~~
> main.c:189:20: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   189 | (void) close(sock);
>   |^
>   |pclose
> main.c:197:20: error: implicit declaration of function ‘write’; did you mean 
> ‘fwrite’? [-Werror=implicit-function-declaration]
>   197 | (void) write(newfd, msg_forkfailed, sizeof 
> (msg_forkfailed));
>   |^
>   |fwrite
> main.c: In function ‘main’:
> main.c:216:12: warning: type defaults to ‘int’ in declaration of ‘optind’ 
> [-Wimplicit-int]
>   216 | extern optind;
>   |^~
> main.c:221:17: error: implicit declaration of function ‘getopt’; did you mean 
> ‘getsubopt’? [-Werror=implicit-function-declaration]
>   221 | while ((c = getopt(argc, argv, "dp:")) != EOF) {
>   | ^~
>   | getsubopt
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:75: main.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/cyrus-imspd_1.8-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066478: readseq: FTBFS: readseq.c:801:5: error: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: readseq
Version: 1-14
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc   -o readseq -I/usr/include/ncbi  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -g -O2 -DNCBI -I/usr/include/ncbi 
> -DARB readseq.c ureadseq.c ureadasn.c -lncbi -lncbiobj -lncbicdr -lncbiacc 
> -lncbitool -lncbimmdb -lncbiid1 -lnetcli -lm -Wl,-z,relro -Wl,-z,now
> readseq.c: In function ‘formatstr’:
> readseq.c:267:41: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   267 |   case kASNseqset   : return formats[kASN1-1];
>   |  ~~~^
> readseq.c:269:45: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   269 |   case kPhylipSequential: return formats[kPhylip-1];
>   |  ~~~^~~
> readseq.c:273:22: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   273 |   else return formats[format-1];
>   |   ~~~^~
> readseq.c: In function ‘Nlm_Main’:
> readseq.c:801:5: error: implicit declaration of function ‘gets’; did you mean 
> ‘fgets’? [-Werror=implicit-function-declaration]
>   801 | gets(oname= onamestore);
>   | ^~~~
>   | fgets
> readseq.c:936:33: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 4 has type ‘long int’ [-Wformat=]
>   936 | sprintf( stemp,"%s_%d", oname, whichSeq);
>   |~^  
>   | |  |
>   | intlong int
>   |%ld
> readseq.c:938:48: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 3 has type ‘long int’ [-Wformat=]
>   938 | fprintf( stderr,"Writing sequence %d to file %s\n", 
> whichSeq, stemp);
>   |   ~^
> 
>   |||
>   |int  long 
> int
>   |   %ld
> readseq.c:980:39: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 3 has type ‘long int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |  ~^
>   |   |
>   |   int
>   |  %ld
>   981 | whichSeq, seqlen, checksum, formatstr(format), 
> seqidptr);
>   |    
>   | |
>   | long int
> readseq.c:980:51: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 4 has type ‘long int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |  ~^
>   |   |
>   |   int
>   |  %ld
>   981 | whichSeq, seqlen, checksum, formatstr(format), 
> seqidptr);
>   |   ~~   
>   |   |
>   |   long int
> readseq.c:980:65: warning: format ‘%X’ expects argument of type ‘unsigned 
> int’, but argument 5 has type ‘long unsigned int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |~^
>   | |
>   | 
> unsigned int
>   |%lX
>   981 | whichSeq, seqlen, checksum, formatstr(format), 
> seqidptr);
>   |      
>   |   |
>   |   long unsigned int
> 

Bug#1066479: opendnssec: FTBFS: ../../common/scheduler/task.c:137:25: error: implicit declaration of function ‘clamp’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: opendnssec
Version: 1:2.1.13-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I../../common  -I/usr/include -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -DSQLITE3_SONAME=\"libsqlite3.so.0\" -pedantic -rdynamic -c 
> -o scheduler/worker.o ../../common/scheduler/worker.c
> ../../common/cmdhandler.c: In function ‘cmdhandler_accept_client’:
> ../../common/cmdhandler.c:386:9: warning: unused variable ‘err’ 
> [-Wunused-variable]
>   386 | int err;
>   | ^~~
> ../../common/cmdhandler.c: In function ‘cmdhandler_start’:
> ../../common/cmdhandler.c:509:13: warning: unused variable ‘i’ 
> [-Wunused-variable]
>   509 | ssize_t i;
>   | ^
> ../../common/cmdhandler.c: In function ‘self_pipe_trick’:
> ../../common/cmdhandler.c:596:35: warning: zero-length gnu_printf format 
> string [-Wformat-zero-length]
>   596 | client_printf(sockfd, "");
>   |   ^~
> ../../common/cmdhandler.c: In function ‘cmdhandler_perform_command’:
> ../../common/cmdhandler.c:173:13: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   173 | asprintf(, "unknown generic arguments");
>   | ^
> ../../common/cmdhandler.c:202:17: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   202 | asprintf(, "memory error");
>   | ^~~~
> ../../common/cmdhandler.c:209:21: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   209 | asprintf(, "Error parsing arguments %s 
> command line %s", command->name, arg);
>   | 
> ^~
> ../../common/cmdhandler.c:232:25: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   232 | asprintf(, "no help for command  
> %s.", arg);
>   | 
> ^
> ../../common/cmdhandler.c:246:13: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   246 | asprintf(, "Unknown command %s.", arg);
>   | ^~~~
> ../../common/scheduler/schedule.c: In function ‘schedule_get_first_task’:
> ../../common/scheduler/schedule.c:81:20: warning: unused variable ‘node’ 
> [-Wunused-variable]
>81 | ldns_rbnode_t* node = LDNS_RBTREE_NULL;
>   |^~~~
> ../../common/scheduler/task.c: In function ‘task_perform’:
> ../../common/scheduler/task.c:137:25: error: implicit declaration of function 
> ‘clamp’ [-Werror=implicit-function-declaration]
>   137 | task->backoff = clamp(task->backoff * 2, 60, 
> ODS_SE_MAX_BACKOFF);
>   | ^
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:601: scheduler/task.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/opendnssec_2.1.13-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066477: setserial: FTBFS: pcmcia.c:93:10: error: implicit declaration of function ‘waitpid’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: setserial
Version: 2.17-53
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -O2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -DHAVE_ASM_IOCTLS_H=1  -I. 
> setserial.c -o setserial
> In file included from setserial.c:18:
> pcmcia.c: In function ‘pcmcia_check_cardctl’:
> pcmcia.c:93:10: error: implicit declaration of function ‘waitpid’ 
> [-Werror=implicit-function-declaration]
>93 |  if (waitpid(pid, , 0) == -1) {
>   |  ^~~
> setserial.c: In function ‘print_multiport’:
> setserial.c:238:13: error: implicit declaration of function ‘ioctl’ 
> [-Werror=implicit-function-declaration]
>   238 | if (ioctl(fd, TIOCSERGETMULTI, ) < 0)
>   | ^
> setserial.c: At top level:
> setserial.c:766:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>   766 | main(int argc, char **argv)
>   | ^~~~
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:26: setserial] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/setserial_2.17-53_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066476: conntrack-tools: FTBFS: configure: error: Package requirements (libtirpc) were not met

2024-03-13 Thread Lucas Nussbaum
Source: conntrack-tools
Version: 1:1.4.8-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> checking for byacc... no
> checking for pkg-config... /usr/bin/pkg-config
> checking pkg-config is at least version 0.9.0... yes
> checking for rpc/rpc_msg.h... no
> checking for libtirpc... no
> configure: error: Package requirements (libtirpc) were not met
> 
> Package 'libtirpc', required by 'virtual:world', not found
> 
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
> 
> Alternatively, you may set the environment variables LIBTIRPC_CFLAGS
> and LIBTIRPC_LIBS to avoid the need to call pkg-config.
> See the pkg-config man page for more details.
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/conntrack-tools_1.4.8-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066475: libpsortb: FTBFS: debug_funcs.c:320:38: error: implicit declaration of function ‘get_mtx_index’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libpsortb
Version: 1.0+dfsg-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  
>  -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o std_funcs.lo std_funcs.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> debug_funcs.c  -fPIC -DPIC -o .libs/debug_funcs.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readseqs_multialpha.c  -fPIC -DPIC -o .libs/readseqs_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readhmm.c  -fPIC -DPIC -o .libs/readhmm.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> hmmsearch.c  -fPIC -DPIC -o .libs/hmmsearch.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> std_calculation_funcs.c  -fPIC -DPIC -o .libs/std_calculation_funcs.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readhmm_multialpha.c  -fPIC -DPIC -o .libs/readhmm_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> core_algorithms_multialpha.c  -fPIC -DPIC -o 
> .libs/core_algorithms_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> std_funcs.c  -fPIC -DPIC -o .libs/std_funcs.o
> debug_funcs.c: In function ‘dump_viterbi_path’:
> debug_funcs.c:320:38: error: implicit declaration of function ‘get_mtx_index’ 
> [-Werror=implicit-function-declaration]
>   320 | dump_viterbi_path(viterbi_mtxp + get_mtx_index(row-1, cur->prev, 
> row_size), hmmp,
>   |  ^
> debug_funcs.c: In function ‘dump_replacement_letters’:
> debug_funcs.c:861:14: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’ [-Wformat=]
>   861 | printf("%c ", (*(replacement_letters->letters + i)));
>   | ~^~
>   |  | |
>   |  int   struct letter_s
> debug_funcs.c: In function ‘dump_replacement_letters_multi’:
> debug_funcs.c:915:16: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’ [-Wformat=]
>   915 |   printf("%c ", (*(replacement_letters->letters_1 + i)));
>   |   ~^~~~
>   || |
>   |int   struct letter_s
> debug_funcs.c:918:16: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’ [-Wformat=]
>   918 |   printf("%c ", (*(replacement_letters->letters_2 + i)));
>   |   ~^~~~
>   || |
>   |int   struct letter_s
> debug_funcs.c:921:16: warning: format ‘%c’ expects 

Bug#1066474: freedroid: FTBFS: init.c:937:3: error: implicit declaration of function ‘Load_Fonts’; did you mean ‘LoadFont’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: freedroid
Version: 1.0.2+cvs040112-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o influ.o 
> influ.c
> init.c: In function ‘InitFreedroid’:
> init.c:937:3: error: implicit declaration of function ‘Load_Fonts’; did you 
> mean ‘LoadFont’? [-Werror=implicit-function-declaration]
>   937 |   Load_Fonts (); // we need this for progress-meter!
>   |   ^~
>   |   LoadFont
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o misc.o misc.c
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o text.o text.c
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:428: init.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/freedroid_1.0.2+cvs040112-7_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066472: pullseq: FTBFS: pull_by_re.c:76:29: error: implicit declaration of function ‘search_header’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pullseq
Version: 1.0.2-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o pull_by_size.o 
> pull_by_size.c
> pull_by_re.c: In function ‘pull_by_re’:
> pull_by_re.c:76:29: error: implicit declaration of function ‘search_header’ 
> [-Werror=implicit-function-declaration]
>76 | if (search_header(re, seq->name.s) || 
> search_header(re, seq->comment.s))
>   | ^
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o pullseq.o pullseq.c
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o cmpseq.o cmpseq.c
> pullseq.c: In function ‘main’:
> pullseq.c:275:25: error: implicit declaration of function ‘pull_by_re’; did 
> you mean ‘pull_by_size’? [-Werror=implicit-function-declaration]
>   275 | count = pull_by_re(in, aStrRegex, min, max, length, 
> exclude, convert, just_count);
>   | ^~
>   | pull_by_size
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o seqdiff.o seqdiff.c
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o seqdiff_results.o 
> seqdiff_results.c
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:413: pull_by_re.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pullseq_1.0.2-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066473: multitail: FTBFS: mt.c:707:25: error: implicit declaration of function ‘waddnwstr’; did you mean ‘waddnstr’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: multitail
Version: 6.5.0-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -Wno-unused-parameter -funsigned-char -O3 -DLinux -DVERSION=\"6.5.0\" 
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DCONFIG_FILE=\"/etc/multitail.conf\" -MMD -MP -DUTF8_SUPPORT  -c -o mt.o mt.c
> mt.c: In function ‘do_color_print’:
> mt.c:707:25: error: implicit declaration of function ‘waddnwstr’; did you 
> mean ‘waddnstr’? [-Werror=implicit-function-declaration]
>   707 | waddnwstr(win -> win, , 1);
>   | ^
>   | waddnstr
> mt.c: In function ‘update_statusline’:
> mt.c:1467:126: warning: format ‘%lld’ expects argument of type ‘long long 
> int’, but argument 5 has type ‘off64_t’ {aka ‘long int’} [-Wformat=]
>  1467 | mvwprintw(status -> 
> win, 0, win_width - (strlen(timestamp) + cur_len), "%10lld - %s", fsize, 
> timestamp);
>   |   
>   ~^~
>   |   
>||
>   |   
>|off64_t {aka 
> long int}
>   |   
>long long int
>   |   
>   %10ld
> cc1: some warnings being treated as errors
> make[2]: *** [: mt.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/multitail_6.5.0-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066471: sbox-dtc: FTBFS: env.c:46:25: error: implicit declaration of function ‘strchr’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: sbox-dtc
Version: 1.11.7-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O 
> -g -DVERSION=1.11 -Wdate-time -D_FORTIFY_SOURCE=2  -c -o env.o env.c
> env.c: In function ‘main’:
> env.c:46:25: error: implicit declaration of function ‘strchr’ 
> [-Werror=implicit-function-declaration]
>46 | delimiter = (char*) strchr(name,'=');
>   | ^~
> env.c:6:1: note: include ‘’ or provide a declaration of ‘strchr’
> 5 | #include 
>   +++ |+#include 
> 6 | 
> env.c:46:25: warning: incompatible implicit declaration of built-in function 
> ‘strchr’ [-Wbuiltin-declaration-mismatch]
>46 | delimiter = (char*) strchr(name,'=');
>   | ^~
> env.c:46:25: note: include ‘’ or provide a declaration of ‘strchr’
> env.c:49:5: error: implicit declaration of function ‘strncpy’ 
> [-Werror=implicit-function-declaration]
>49 | strncpy(nm,name,delimiter-name);
>   | ^~~
> env.c:49:5: note: include ‘’ or provide a declaration of ‘strncpy’
> env.c:49:5: warning: incompatible implicit declaration of built-in function 
> ‘strncpy’ [-Wbuiltin-declaration-mismatch]
> env.c:49:5: note: include ‘’ or provide a declaration of ‘strncpy’
> cc1: some warnings being treated as errors
> make[1]: *** [: env.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/sbox-dtc_1.11.7-1.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066470: kxl: FTBFS: KXLsound.c:75:9: error: implicit declaration of function 'read'; did you mean 'fread'? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: kxl
Version: 1.1.7-17
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
>  gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"KXL\" 
> -DVERSION=\"1.1.7\" -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
> -DHAVE_FCNTL_H=1 -DHAVE_MALLOC_H=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_TIME_H=1 
> -DHAVE_LINUX_JOYSTICK_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DTIME_WITH_SYS_TIME=1 
> -DRETSIGTYPE=void -DHAVE_SELECT=1 -I. -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> KXLjoystick.c  -fPIC -DPIC -o .libs/KXLjoystick.o
> KXLmisc.c: In function 'KXL_ReadU16':
> KXLmisc.c:196:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   196 |   fread(c, 1, 2, fp);
>   |   ^~
> KXLmisc.c: In function 'KXL_ReadU32':
> KXLmisc.c:209:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   209 |   fread(c, 1, 4, fp);
>   |   ^~
> KXLsound.c: In function 'KXL_SoundServer':
> KXLsound.c:75:9: error: implicit declaration of function 'read'; did you mean 
> 'fread'? [-Werror=implicit-function-declaration]
>75 | if (read(KXL_SoundData.Pipe[0], ,sizeof(Command)) != 
> sizeof(Command))
>   | ^~~~
>   | fread
> KXLsound.c:165:9: error: implicit declaration of function 'write'; did you 
> mean 'fwrite'? [-Werror=implicit-function-declaration]
>   165 | write(KXL_SoundData.Device, KXL_SoundData.PBuff, 
> fragment_size);
>   | ^
>   | fwrite
> KXLimage.c: In function 'KXL_ReadBitmapHeader':
> KXLimage.c:112:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   112 |   fread(hed->magic, 1, 2, fp);
>   |   ^~~
> KXLimage.c:166:7: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   166 |   fread(&(hed->data[i * hed->w]), hed->w, 1, fp);
>   |   ^~
> KXLsound.c: In function 'KXL_InitSound':
> KXLsound.c:262:7: error: implicit declaration of function 'pipe' 
> [-Werror=implicit-function-declaration]
>   262 |   if (pipe(KXL_SoundData.Pipe) < 0) {
>   |   ^~~~
> KXLsound.c:267:27: error: implicit declaration of function 'fork' 
> [-Werror=implicit-function-declaration]
>   267 |   if ((KXL_SoundData.ID = fork()) < 0) {
>   |   ^~~~
> KXLsound.c:273:5: error: implicit declaration of function 'close'; did you 
> mean 'pclose'? [-Werror=implicit-function-declaration]
>   273 | close(KXL_SoundData.Pipe[1]);
>   | ^
>   | pclose
> KXLsound.c: In function 'KXL_LoadSound':
> KXLsound.c:213:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   213 |   fread(dummy, sizeof(Uint8), 40, file);
>   |   ^
> KXLsound.c:216:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   216 |   fread(new.Data, sizeof(Uint8), new.Length, file);
>   |   ^~~~
> KXLjoystick.c: In function 'KXL_CloseJoystick':
> KXLjoystick.c:43:5: error: implicit declaration of function 'close'; did you 
> mean 'pclose'? [-Werror=implicit-function-declaration]
>43 | close(KXL_joydev);
>   | ^
>   | pclose
> KXLjoystick.c: In function 'KXL_ReadJoystick':
> KXLjoystick.c:55:9: error: implicit declaration of function 'read'; did you 
> mean 'fread'? [-Werror=implicit-function-declaration]
>55 | if (read(KXL_joydev, my, JS_RETURN) == JS_RETURN) {
>   | ^~~~
>   | fread
>  gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"KXL\" 
> -DVERSION=\"1.1.7\" -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
> -DHAVE_FCNTL_H=1 

Bug#1066468: searchmonkey: FTBFS: callbacks.c:195:11: error: implicit declaration of function ‘clearComboBox2’; did you mean ‘clearComboBox’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: searchmonkey
Version: 0.8.3-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -DPACKAGE_DATA_DIR=\""/usr/share"\" 
> -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -I/usr/include/poppler/glib 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/cairo -I/usr/include/libpng16 -I/usr/include/freetype2 
> -I/usr/include/pixman-1 -I/usr/include/poppler -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/harfbuzz -I/usr/include/libmount -I/usr/include/blkid 
> -I/usr/include/fribidi -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o callbacks.o callbacks.c
> In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
>  from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
>  from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
>  from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:33,
>  from callbacks.c:5:
> /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: ‘GTypeDebugFlags’ is 
> deprecated [-Wdeprecated-declarations]
>   236 | voidgtk_type_init   (GTypeDebugFlagsdebug_flags);
>   | ^~~~
> In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
>  from /usr/include/glib-2.0/gobject/gbinding.h:31,
>  from /usr/include/glib-2.0/glib-object.h:24,
>  from /usr/include/glib-2.0/gio/gioenums.h:30,
>  from /usr/include/glib-2.0/gio/giotypes.h:30,
>  from /usr/include/glib-2.0/gio/gio.h:28,
>  from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
>  from /usr/include/gtk-2.0/gdk/gdk.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32:
> /usr/include/glib-2.0/gobject/gtype.h:723:1: note: declared here
>   723 | {
>   | ^
> In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
>  from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
>  from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
>  from /usr/include/gtk-2.0/gtk/gtk.h:126:
> /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: ‘GTimeVal’ is 
> deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
>73 |   GTimeVal last_popdown;
>   |   ^~~~
> In file included from /usr/include/glib-2.0/glib/galloca.h:34,
>  from /usr/include/glib-2.0/glib.h:32,
>  from /usr/include/glib-2.0/gobject/gbinding.h:30:
> /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
>   580 | struct _GTimeVal
>   |^
> callbacks.c: In function ‘on_cl_ear_history1_activate’:
> callbacks.c:195:11: error: implicit declaration of function ‘clearComboBox2’; 
> did you mean ‘clearComboBox’? [-Werror=implicit-function-declaration]
>   195 |   clearComboBox2(lookup_widget(GTK_WIDGET(menuitem), 
> "fileName"));
>   |   ^~
>   |   clearComboBox
> In file included from support.h:15,
>  from callbacks.c:11:
> callbacks.c: In function ‘on_online_release_notes1_activate’:
> callbacks.c:1162:38: warning: format ‘%G’ expects argument of type ‘double’, 
> but argument 2 has type ‘char *’ [-Wformat=]
>  1162 |   gchar *website = 
> g_strdup_printf(_("https://sourceforge.net/projects/searchmonkey/files/gSearchmonkey%20GTK%20%28Gnome%29/0.8.2%20%5Bstable%5D/;),
>  PACKAGE, VERSION);
>   |  
> ^
> callbacks.c:1162:36: note: in expansion of macro ‘_’
>  1162 |   gchar *website = 
> g_strdup_printf(_("https://sourceforge.net/projects/searchmonkey/files/gSearchmonkey%20GTK%20%28Gnome%29/0.8.2%20%5Bstable%5D/;),
>  PACKAGE, VERSION);
>   |^
> callbacks.c:1162:107: note: format string is defined here
>  1162 |   gchar *website = 
> 

Bug#1066469: tack: FTBFS: configure: error: No curses header-files found

2024-03-13 Thread Lucas Nussbaum
Source: tack
Version: 1.08-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> configure: WARNING: pkg-config is not installed
> checking for specific curses-directory... no
> checking for specified curses library type... curses
> checking for extra include directories... no
> checking if we have identified curses headers... none
> configure: error: No curses header-files found
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/tack_1.08-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066466: rlinetd: FTBFS: ../../src/cleanups.c:27:49: error: implicit declaration of function ‘pmap_unset’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: rlinetd
Version: 0.9.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=link 
> /<>/debian/gcc-wrapper gcc -I../.. -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -Wextra  -Wwrite-strings 
> -Wcast-qual -Wbad-function-cast -Wpointer-arith -Wmissing-prototypes 
> -Wstrict-prototypes -Wmissing-declarations -Wnested-externs -Wcast-align 
> -Winline -Wshadow -Wredundant-decls -export-dynamic -Wl,-z,relro -Wl,-z,now 
> -o rlinetd buffer.o bytecode.o connect.o db.o error.o engine.o main.o stack.o 
> strings.o signals.o -ldl  ../port/libport.a -lcap
> ../../src/cleanups.c: In function ‘rlp_cleanup’:
> ../../src/cleanups.c:27:49: error: implicit declaration of function 
> ‘pmap_unset’ [-Werror=implicit-function-declaration]
>27 | 
> pmap_unset(rlcu->prog, nl->num);
>   | ^~
> ../../src/cleanups.c:27:49: warning: nested extern declaration of 
> ‘pmap_unset’ [-Wnested-externs]
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:603: cleanups.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rlinetd_0.9.3-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066467: opensmtpd-extras: FTBFS: configure: error: *** compiler cannot create working executables, check config.log ***

2024-03-13 Thread Lucas Nussbaum
Source: opensmtpd-extras
Version: 6.7.1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> checking for syslog.h... yes
> checking for time.h... yes
> checking for ucred.h... no
> checking for unistd.h... (cached) yes
> checking compiler and flags for sanity... no
> configure: error: *** compiler cannot create working executables, check 
> config.log ***
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/opensmtpd-extras_6.7.1-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066465: dcraw: FTBFS: fujiturn.c:76:37: error: implicit declaration of function ‘ntohs’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dcraw
Version: 9.28-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DPACKAGE_NAME=\"dcraw\" -DPACKAGE_TARNAME=\"dcraw\" 
> -DPACKAGE_VERSION=\"9.28\" -DPACKAGE_STRING=\"dcraw\ 9.28\" 
> -DPACKAGE_BUGREPORT=\"hr...@physics.muni.cz\" -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"dcraw\" -DVERSION=\"9.28\" -DHAVE_LIBM=1 -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_JPEGLIB_H=1 -DHAVE_LIBJPEG=1 -DHAVE_LCMS2_H=1 
> -DHAVE_LIBLCMS2=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -O4 -c -o clean_crw.o clean_crw.c
> fujiturn.c: In function ‘main’:
> fujiturn.c:61:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>61 |   fread (in, iwide, sizeof *in, ifp);
>   |   ^~
> fujiturn.c:78:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>78 | fread (in, iwide, sizeof *in, ifp);
>   | ^~
> fujiturn.c: In function ‘main’:
> fujiturn.c:76:37: error: implicit declaration of function ‘ntohs’ 
> [-Werror=implicit-function-declaration]
>76 |   mid[orow*owide+ocol][i] = ntohs(in[icol][i]);
>   | ^
> fujiturn.c:90:28: error: implicit declaration of function ‘htons’ 
> [-Werror=implicit-function-declaration]
>90 | out[ocol][i] = htons (
>   |^
> fujiturn.c:61:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>61 |   fread (in, iwide, sizeof *in, ifp);
>   |   ^~
> fujiturn.c:78:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>78 | fread (in, iwide, sizeof *in, ifp);
>   | ^~
> clean_crw.c: In function ‘main’:
> clean_crw.c:54:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>54 | fread (buffer, 1, size, fp);
>   | ^~~
> fuji_green.c: In function ‘read_shorts’:
> fuji_green.c:72:29: error: implicit declaration of function ‘ntohs’ 
> [-Werror=implicit-function-declaration]
>72 |   if ((order == 0x4949) == (ntohs(0x1234) == 0x1234))
>   | ^
> fuji_green.c:73:5: error: implicit declaration of function ‘swab’ 
> [-Werror=implicit-function-declaration]
>73 | swab (pixel, pixel, count*2);
>   | ^~~~
> fuji_green.c: In function ‘write_psd’:
> fuji_green.c:249:11: error: implicit declaration of function ‘htonl’ 
> [-Werror=implicit-function-declaration]
>   249 |   hw[0] = htonl(height*2);  /* write the header */
>   |   ^
> fuji_green.c: In function ‘main’:
> fuji_green.c:307:9: error: implicit declaration of function ‘isatty’ 
> [-Werror=implicit-function-declaration]
>   307 | if (isatty(1)) {
>   | ^~
> fuji_green.c: In function ‘read_shorts’:
> fuji_green.c:71:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>71 |   fread (pixel, 2, count, ifp);
>   |   ^~~~
> fuji_green.c: In function ‘parse_tiff’:
> fuji_green.c:140:11: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   140 |   fgets (make, 64, ifp);
>   |   ^
> fuji_green.c:143:11: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   143 |   fgets (model, 64, ifp);
>   |   ^~
> fuji_green.c: In function ‘identify’:
> fuji_green.c:160:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   160 |   fread (head, 1, 32, ifp);
>   |   ^~~~
> parse.c: In function ‘parse_tiff_ifd’:
> parse.c:431:9: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   431 | fgets (make, slen, ifp);
>

Bug#1066464: liece: FTBFS: dcc.c:128:7: error: implicit declaration of function ‘sleep’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: liece
Version: 2.0+0.20030527cvs-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -I. -I.. -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"liece\" -DVERSION=\"2.0.0\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 
> -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 
> -DHAVE_SYS_SELECT_H=1 -DHAVE_LIBGEN_H=1 -DHAVE_STRTOUL=1 -DHAVE_MEMMOVE=1 
> -DHAVE_GETADDRINFO=1 -DHAVE_BASENAME=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o dcc.o dcc.c
> dcc.c: In function ‘prepare_listen_port’:
> dcc.c:128:7: error: implicit declaration of function ‘sleep’ 
> [-Werror=implicit-function-declaration]
>   128 |   sleep (20);   /* wait 20 seconds and try again */
>   |   ^
> dcc.c: In function ‘get_address_externally’:
> dcc.c:163:3: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   163 |   close(dummy);
>   |   ^
>   |   pclose
> dcc.c: In function ‘send_file’:
> dcc.c:189:3: error: implicit declaration of function ‘gethostname’; did you 
> mean ‘gethostbyname’? [-Werror=implicit-function-declaration]
>   189 |   gethostname(namebuf, sizeof (namebuf));
>   |   ^~~
>   |   gethostbyname
> dcc.c:205:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, 
> but argument 4 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=]
>   205 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, 
> statbuf.st_size);
>   | ~^ 
>   |  | |
>   |  unsigned int  u_long {aka 
> long unsigned int}
>   | %lu
> dcc.c:205:37: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 5 has type ‘__off_t’ {aka ‘long int’} [-Wformat=]
>   205 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, 
> statbuf.st_size);
>   |~^
> ~~~
>   | |   |
>   | int 
> __off_t {aka long int}
>   |%ld
> dcc.c:209:17: error: implicit declaration of function ‘read’; did you mean 
> ‘fread’? [-Werror=implicit-function-declaration]
>   209 |   while ((len = read (ifd, buf, sizeof (buf))) > 0) {
>   | ^~~~
>   | fread
> dcc.c:210:5: error: implicit declaration of function ‘write’; did you mean 
> ‘fwrite’? [-Werror=implicit-function-declaration]
>   210 | write (ofd, buf, len);
>   | ^
>   | fwrite
> dcc.c: In function ‘receive_file’:
> dcc.c:245:5: error: implicit declaration of function ‘lseek’; did you mean 
> ‘fseek’? [-Werror=implicit-function-declaration]
>   245 | lseek (ifd, 0, 2);
>   | ^
>   | fseek
> dcc.c: In function ‘primary_address_of’:
> dcc.c:342:12: error: implicit declaration of function ‘inet_addr’ 
> [-Werror=implicit-function-declaration]
>   342 | addr = inet_addr(host);
>   |^
> dcc.c: In function ‘chat_listen’:
> dcc.c:370:27: warning: format ‘%u’ expects argument of type ‘unsigned int’, 
> but argument 2 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=]
>   370 | printf("DCC chat %u %d\n", addr, port);
>   |  ~^
>   |   ||
>   |   |u_long {aka long unsigned int}
>   |   unsigned int
>   |  %lu
> dcc.c: In function ‘main’:
> dcc.c:397:22: error: implicit declaration of function ‘basename’; did you 
> mean ‘rename’? [-Werror=implicit-function-declaration]
>   397 |   progname = (char *)basename(argv[ 0 ]);
>   |  ^~~~
>   |   

Bug#1066463: gnome-paint: FTBFS: cv_resize.c:368:9: error: implicit declaration of function ‘undo_add_resize’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: gnome-paint
Version: 0.4.0-9
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" 
> -DPACKAGE_SRC_DIR=\""."\" -DPACKAGE_DATA_DIR=\""/usr/share"\" 
> -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -Wdate-time -D_FORTIFY_SOURCE=2 -DG_DISABLE_DEPRECATED 
> -DG_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_DEPRECATED 
> -DGDK_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o 
> gnome_paint-pixbuf-file-chooser.o `test -f 'pixbuf-file-chooser.c' || echo 
> './'`pixbuf-file-chooser.c
> cv_resize.c: In function ‘cv_resize_stop’:
> cv_resize.c:368:9: error: implicit declaration of function ‘undo_add_resize’ 
> [-Werror=implicit-function-declaration]
>   368 | undo_add_resize ( width, height );
>   | ^~~
> toolbar.c: In function ‘get_gtk_image’:
> toolbar.c:505:48: warning: passing argument 1 of 
> ‘gdk_pixbuf_new_from_xpm_data’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>   505 | pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
>   |^~~
>   ||
>   |gchar ** {aka char **}
> In file included from /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h:34,
>  from /usr/include/gtk-2.0/gdk/gdkpixbuf.h:37,
>  from /usr/include/gtk-2.0/gdk/gdkcairo.h:28,
>  from /usr/include/gtk-2.0/gdk/gdk.h:33,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32,
>  from toolbar.h:28,
>  from toolbar.c:27:
> /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:294:55: note: 
> expected ‘const char **’ but argument is of type ‘gchar **’ {aka ‘char **’}
>   294 | GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
>   |  ~^~~~
> color.c: In function ‘on_color_palette_entry_button_press_event’:
> color.c:178:17: error: implicit declaration of function 
> ‘notify_brush_of_fg_color_change’ [-Werror=implicit-function-declaration]
>   178 | notify_brush_of_fg_color_change();
>   | ^~~
> pixbuf-file-chooser.c: In function ‘pixbuf_file_chooser_class_init’:
> pixbuf-file-chooser.c:91:9: warning: ‘g_type_class_add_private’ is deprecated 
> [-Wdeprecated-declarations]
>91 | g_type_class_add_private (object_class, sizeof 
> (PixbufFileChooserPrivate));
>   | ^~~~
> In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
>  from /usr/include/glib-2.0/gobject/gbinding.h:31,
>  from /usr/include/glib-2.0/glib-object.h:24,
>  from /usr/include/glib-2.0/gio/gioenums.h:30,
>  from /usr/include/glib-2.0/gio/giotypes.h:30,
>  from /usr/include/glib-2.0/gio/gio.h:28,
>  from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
>  from /usr/include/gtk-2.0/gdk/gdk.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32,
>  from pixbuf-file-chooser.h:29,
>  from pixbuf-file-chooser.c:30:
> /usr/include/glib-2.0/gobject/gtype.h:1495:10: note: declared here
>  1495 | void g_type_class_add_private   (gpointer
> g_class,
>   |  ^~~~
> pixbuf-file-chooser.c: In function ‘pixbuf_file_chooser_init’:
> pixbuf-file-chooser.c:97:20: warning: Deprecated pre-processor symbol: 
> replace with "G_ADD_PRIVATE"
>97 | chooser->priv = PIXBUF_FILE_CHOOSER_GET_PRIVATE (chooser);
>   |^~~
>   
> main.c: In function ‘main’:
> main.c:83:9: error: implicit declaration of function ‘gtk_set_locale’; 

Bug#1066462: dot-forward: FTBFS: control.c:65:41: error: implicit declaration of function ‘close’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dot-forward
Version: 1:0.71-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> ( cat warn-auto.sh; \
> echo CC=\'`head -1 conf-cc`\'; \
> echo LD=\'`head -1 conf-ld`\' \
> ) > auto-ccld.sh
> nroff -man dot-forward.1 > dot-forward.0
> cat auto-ccld.sh make-load.sh > make-load
> cat auto-ccld.sh find-systype.sh > find-systype
> cat auto-ccld.sh make-compile.sh > make-compile
> cat auto-ccld.sh make-makelib.sh > make-makelib
> chmod 755 make-load
> chmod 755 find-systype
> chmod 755 make-compile
> chmod 755 make-makelib
> ./find-systype > systype
> ( cat warn-auto.sh; ./make-load "`cat systype`" ) > load
> ( cat warn-auto.sh; ./make-compile "`cat systype`" ) > \
> compile
> ( cat warn-auto.sh; ./make-makelib "`cat systype`" ) > \
> makelib
> chmod 755 load
> chmod 755 makelib
> chmod 755 compile
> ./compile dot-forward.c
> ./compile control.c
> ( ( ./compile tryvfork.c && ./load tryvfork ) >/dev/null \
> 2>&1 \
> && cat fork.h2 || cat fork.h1 ) > fork.h
> ./compile auto-str.c
> ./compile substdio.c
> ./compile substdi.c
> ./compile substdo.c
> ./compile subfderr.c
> control.c: In function ‘control_readline’:
> control.c:65:41: error: implicit declaration of function ‘close’ 
> [-Werror=implicit-function-declaration]
>65 |  if (getln(,sa,,'\n') == -1) { close(fd); return -1; }
>   | ^
> dot-forward.c: In function ‘run’:
> dot-forward.c:78:7: error: implicit declaration of function ‘pipe’ 
> [-Werror=implicit-function-declaration]
>78 |   if (pipe(pi) == -1)
>   |   ^~~~
> dot-forward.c:81:19: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>81 |   switch (child = fork()) {
>   |   ^~~~
> dot-forward.c:85:7: error: implicit declaration of function ‘close’ 
> [-Werror=implicit-function-declaration]
>85 |   close(pi[1]);
>   |   ^
> dot-forward.c:86:11: error: implicit declaration of function ‘fd_move’ 
> [-Werror=implicit-function-declaration]
>86 |   if (fd_move(0,pi[0]) == -1)
>   |   ^~~
> dot-forward.c:89:7: error: implicit declaration of function ‘sig_pipedefault’ 
> [-Werror=implicit-function-declaration]
>89 |   sig_pipedefault();
>   |   ^~~
> dot-forward.c:90:7: error: implicit declaration of function ‘execv’ 
> [-Werror=implicit-function-declaration]
>90 |   execv(*args,args);
>   |   ^
> auto-str.c:8:6: warning: conflicting types for built-in function ‘puts’; 
> expected ‘int(const char *)’ [-Wbuiltin-declaration-mismatch]
> 8 | void puts(s)
>   |  ^~~~
> auto-str.c:4:1: note: ‘puts’ is declared in header ‘’
> 3 | #include "exit.h"
>   +++ |+#include 
> 4 | 
> dot-forward.c: In function ‘readcontrols’:
> dot-forward.c:141:7: error: implicit declaration of function ‘chdir’ 
> [-Werror=implicit-function-declaration]
>   141 |   if (chdir(auto_qmail) == -1)
>   |   ^
> dot-forward.c:160:7: error: implicit declaration of function ‘fchdir’ 
> [-Werror=implicit-function-declaration]
>   160 |   if (fchdir(fddir) == -1)
>   |   ^~
> dot-forward.c: In function ‘gotaddr’:
> dot-forward.c:189:12: error: implicit declaration of function ‘case_diffb’ 
> [-Werror=implicit-function-declaration]
>   189 |   if (!case_diffb(address.s,address.len,user)) {
>   |^~
> dot-forward.c: In function ‘main’:
> dot-forward.c:389:3: error: implicit declaration of function ‘sig_pipeignore’ 
> [-Werror=implicit-function-declaration]
>   389 |   sig_pipeignore();
>   |   ^~
> rm -f tryvfork.o tryvfork
> ./compile substdio_copy.c
> ./compile error.c
> ./compile error_str.c
> ./compile str_len.c
> ./compile str_diffn.c
> ./compile byte_chr.c
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:75: control.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/dot-forward_0.71-6_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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 

Bug#1066461: wordnet: FTBFS: grind.c:78:9: error: implicit declaration of function ‘yyparse’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: wordnet
Version: 1:3.0-37
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include  -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> grind.c
> grind.c: In function ‘grind’:
> grind.c:78:9: error: implicit declaration of function ‘yyparse’ 
> [-Werror=implicit-function-declaration]
>78 | yyparse();
>   | ^~~
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:296: grind.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/wordnet_3.0-37_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066460: epson-inkjet-printer-escpr: FTBFS: mem.c:34:17: error: implicit declaration of function ‘err_system’; did you mean ‘system’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: epson-inkjet-printer-escpr
Version: 1.7.17-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -Wall 
> -DCUPS_FILTER_NAME=\"epson-escpr\" 
> -DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\"  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o epson_escpr_wrapper-wrapper.o 
> `test -f 'wrapper.c' || echo './'`wrapper.c
> mem.c: In function ‘mem_malloc’:
> mem.c:34:17: error: implicit declaration of function ‘err_system’; did you 
> mean ‘system’? [-Werror=implicit-function-declaration]
>34 | err_system ("mem_malloc");
>   | ^~
>   | system
> cc1: some warnings being treated as errors
> filter.c: In function ‘epsInitJob’:
> filter.c:132:9: error: implicit declaration of function ‘obsClear’ 
> [-Werror=implicit-function-declaration]
>   132 | obsClear();
>   | ^~~~
> filter.c: In function ‘main’:
> filter.c:346:15: error: implicit declaration of function ‘SetupJobAttrib’ 
> [-Werror=implicit-function-declaration]
>   346 | err = SetupJobAttrib();
>   |   ^~
> filter.c:355:15: error: implicit declaration of function ‘pageAllocBuffer’ 
> [-Werror=implicit-function-declaration]
>   355 | err = pageAllocBuffer();
>   |   ^~~
> filter.c:374:15: error: implicit declaration of function ‘SendStartJob’; did 
> you mean ‘epsStartJob’? [-Werror=implicit-function-declaration]
>   374 | err = SendStartJob(FALSE);
>   |   ^~~~
>   |   epsStartJob
> filter.c:537:33: error: implicit declaration of function ‘PrintBand’; did you 
> mean ‘epsPrintBand’? [-Werror=implicit-function-declaration]
>   537 | PrintBand (rever_buf, 
> bandBmp.widthBytes, );
>   | ^
>   | epsPrintBand
> make[3]: *** [Makefile:547: epson_escpr-mem.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/epson-inkjet-printer-escpr_1.7.17-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066459: yiyantang: FTBFS: xmalloc.c:136:16: error: implicit declaration of function ‘strlen’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: yiyantang
Version: 0.7.0-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/include 
> -DG_LOG_DOMAIN=\"yyt\" -I../intl -I../intl  -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> yiyantang_init.c
> xmalloc.c: In function ‘xstrdup’:
> xmalloc.c:136:16: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   136 |   p = xmalloc (strlen (str) + 1);
>   |^~
> xmalloc.c:48:1: note: include ‘’ or provide a declaration of 
> ‘strlen’
>47 | #include "error.h"
>   +++ |+#include 
>48 | 
> xmalloc.c:136:16: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   136 |   p = xmalloc (strlen (str) + 1);
>   |^~
> xmalloc.c:136:16: note: include ‘’ or provide a declaration of 
> ‘strlen’
> xmalloc.c:137:3: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>   137 |   strcpy (p, str);
>   |   ^~
> xmalloc.c:137:3: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> xmalloc.c:137:3: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
> xmalloc.c:137:3: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> loop.c: In function ‘loop’:
> loop.c:91:25: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>91 | exit (ret);
>   | ^~~~
> loop.c:42:1: note: include ‘’ or provide a declaration of ‘exit’
>41 | #include "zhconv.h"
>   +++ |+#include 
>42 | 
> loop.c:91:25: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>91 | exit (ret);
>   | ^~~~
> loop.c:91:25: note: include ‘’ or provide a declaration of ‘exit’
> loop.c:117:33: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   117 | write (ptym, ibuf, ret);
>   | ^~~
> loop.c:162:41: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   162 | write (STDOUT_FILENO, tbuf2, 
> ret);
>   | 
> ^
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:201: xmalloc.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/yiyantang_0.7.0-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066458: rmlint: FTBFS: ./lib/session.c:227:(.text+0x701): undefined reference to `rm_xattr_is_deduplicated'

2024-03-13 Thread Lucas Nussbaum
Source: rmlint
Version: 2.9.0-2.5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: librmlint.a(session.o): in function `rm_session_dedupe_main':
> ./lib/session.c:227:(.text+0x701): undefined reference to 
> `rm_xattr_is_deduplicated'
> /usr/bin/ld: ./lib/session.c:345:(.text+0xa0b): undefined reference to 
> `rm_xattr_mark_deduplicated'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rmlint_2.9.0-2.5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066457: node-websocket: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-websocket
Version: 1.0.34+~cs10.0.25-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[1]: Entering directory '/<>/utf-8-validate/build'
>   CC(target) Release/obj.target/validation/src/validation.o
>   SOLINK_MODULE(target) Release/obj.target/validation.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-websocket_1.0.34+~cs10.0.25-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066456: rpy2: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: rpy2
Version: 3.5.15-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>  debian/rules build
> dh build --with python3 --buildsystem=pybuild
>dh_update_autotools_config -O--buildsystem=pybuild
>dh_autoreconf -O--buildsystem=pybuild
>dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:305: python3.12 setup.py config 
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rpy2_3.5.15-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066454: wpewebkit: FTBFS: SharedContextMutex.cpp:219:41: error: inlining failed in call to ‘always_inline’ ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() [with Mutex

2024-03-13 Thread Lucas Nussbaum
Source: wpewebkit
Version: 2.42.5-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/c++ -DANGLE_ENABLE_ESSL -DANGLE_ENABLE_GLSL -DANGLE_ENABLE_OPENGL 
> -DANGLE_PLATFORM_LINUX -DBUILDING_WEBKIT=1 -DBUILDING_WITH_CMAKE=1 
> -DBUILDING_WPE__=1 -DBWRAP_EXECUTABLE=\"/usr/bin/bwrap\" 
> -DDBUS_PROXY_EXECUTABLE=\"/usr/bin/xdg-dbus-proxy\" -DEGL_EGL_PROTOTYPES=0 
> -DEGL_NO_PLATFORM_SPECIFIC_TYPES -DGETTEXT_PACKAGE=\"WPE\" 
> -DGL_GLES_PROTOTYPES=0 -DHAVE_CONFIG_H=1 -DJSC_GLIB_API_ENABLED 
> -DLIBANGLE_IMPLEMENTATION -DPAS_BMALLOC=1 -DUSE_SYSTEM_EGL 
> -I/<>/Source/ThirdParty/ANGLE/WebKit 
> -I/<>/Source/ThirdParty/ANGLE/include 
> -I/<>/Source/ThirdParty/ANGLE/include/KHR 
> -I/<>/Source/ThirdParty/ANGLE/src 
> -I/<>/Source/ThirdParty/ANGLE/src/common/base 
> -I/<>/Source/ThirdParty/ANGLE/src/common/third_party/xxhash 
> -I/<>/Source/ThirdParty/ANGLE/third_party/zlib/google 
> -I/<>/obj-x86_64-linux-gnu/Source/ThirdParty/ANGLE/include -g1 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -DNDEBUG -DG_DISABLE_CAST_CHECKS -std=c++20 
> -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -w -MD -MT 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o
>  -MF 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o.d
>  -o 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o
>  -c 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp
> cc1plus: warning: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ 
> is not valid for C++
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp: 
> In member function ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’:
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | SharedContextMutex *const lockedRoot = root->doTryLock();
>   |~~~^~
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | SharedContextMutex *const lockedRoot = root->doTryLock();
>   |~~~^~
> In member function ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’,
> inlined from ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67,
> inlined from ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67,
> inlined from ‘bool egl::SharedContextMutex::try_lock() [with Mutex 
> = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:124:28:
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | SharedContextMutex *const lockedRoot = root->doTryLock();
>   |~~~^~
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | 

Bug#1066450: opensearch: FTBFS: server/src/main/java/org/opensearch/index/codec/CodecService.java:37: error: cannot find symbol

2024-03-13 Thread Lucas Nussbaum
Source: opensearch
Version: 2.4.1+dfsg-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> find . -name internalClusterTest -o -name javaRestTest -o -name test -o -name 
> yamlRestTest | xargs rm -rf
> rm -rf modules/ingest-geoip # Cannot be built due to missing build 
> dependencies
> find distribution/src/ -type f | grep -v '\.exe$' | xargs 
> debian/fill-gradle-template distribution/build.gradle
> $VAR1 = {
>   'path.env' => '/etc/default/opensearch',
>   'path.logs' => 'path.logs: /var/log/opensearch',
>   'project.version' => '1.2.3',
>   'path.data' => 'path.data: /var/lib/opensearch',
>   'loggc' => '/var/log/opensearch/gc.log',
>   'heap.min' => '1g',
>   'opensearch.bundled_jdk' => 'true',
>   'error.file' => 
> '-XX:ErrorFile=/var/log/opensearch/hs_err_pid%p.log',
>   'license.name' => 'ASL-2.0',
>   'heap.dump.path' => '-XX:HeapDumpPath=/var/lib/opensearch',
>   'heap.max' => '1g',
>   'source.path.env' => 'source /etc/default/opensearch',
>   'project.name' => 'Debian',
>   'stopping.timeout' => undef,
>   'scripts.footer' => 'exit 0
> ',
>   'path.conf' => '/etc/opensearch',
>   'license.text' => 'Apache 2.0',
>   'opensearch.distribution.type' => 'deb'
> };
> jh_build --javacopts='-source 11 -encoding UTF-8' --no-javadoc 
> opensearch-2.4.1.jar client/ distribution/tools/java-version-checker/ 
> distribution/tools/keystore-cli/ distribution/tools/launchers/ libs/ modules/ 
> server/
> warning: [options] system modules path not set in conjunction with -source 11
> server/src/main/java/org/opensearch/client/package-info.java:36: warning: a 
> package-info.java file has already been seen for package org.opensearch.client
> package org.opensearch.client;
>   ^
> server/src/main/java/org/opensearch/index/reindex/package-info.java:10: 
> warning: a package-info.java file has already been seen for package 
> org.opensearch.index.reindex
> package org.opensearch.index.reindex;
> ^
> Note: Processing Log4j annotations
> Note: Annotations processed
> server/src/main/java/org/opensearch/client/package-info.java:36: warning: a 
> package-info.java file has already been seen for package org.opensearch.client
> package org.opensearch.client;
>   ^
> server/src/main/java/org/opensearch/index/reindex/package-info.java:10: 
> warning: a package-info.java file has already been seen for package 
> org.opensearch.index.reindex
> package org.opensearch.index.reindex;
> ^
> server/src/main/java/org/opensearch/index/codec/CodecService.java:37: error: 
> cannot find symbol
> import org.apache.lucene.codecs.lucene94.Lucene94Codec;
> ^
>   symbol:   class Lucene94Codec
>   location: package org.apache.lucene.codecs.lucene94
> server/src/main/java/org/opensearch/index/codec/CodecService.java:38: error: 
> package org.apache.lucene.codecs.lucene94.Lucene94Codec does not exist
> import org.apache.lucene.codecs.lucene94.Lucene94Codec.Mode;
>   ^
> server/src/main/java/org/opensearch/index/mapper/DateFieldMapper.java:40: 
> error: cannot find symbol
> import 
> org.apache.lucene.sandbox.search.IndexSortSortedNumericDocValuesRangeQuery;
>^
>   symbol:   class IndexSortSortedNumericDocValuesRangeQuery
>   location: package org.apache.lucene.sandbox.search
> server/src/main/java/org/opensearch/index/mapper/NumberFieldMapper.java:45: 
> error: cannot find symbol
> import 
> org.apache.lucene.sandbox.search.IndexSortSortedNumericDocValuesRangeQuery;
>^
>   symbol:   class IndexSortSortedNumericDocValuesRangeQuery
>   location: package org.apache.lucene.sandbox.search
> server/src/main/java/org/opensearch/index/codec/PerFieldMappingPostingFormatCodec.java:39:
>  error: cannot find symbol
> import org.apache.lucene.codecs.lucene94.Lucene94Codec;
> ^
>   symbol:   class Lucene94Codec
>   location: package org.apache.lucene.codecs.lucene94
> server/src/main/java/org/opensearch/index/codec/PerFieldMappingPostingFormatCodec.java:56:
>  error: cannot find symbol
> public class PerFieldMappingPostingFormatCodec extends Lucene94Codec {
>^
>   symbol: class Lucene94Codec
> server/src/main/java/org/opensearch/index/codec/PerFieldMappingPostingFormatCodec.java:66:
>  error: cannot find symbol
> public PerFieldMappingPostingFormatCodec(Mode compressionMode, 
> MapperService mapperService, Logger logger) {
>  

Bug#1066455: littler: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: littler
Version: 0.3.19-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -o r -g -O2 -ffile-prefix-map=/build/reproducible-path/r-base-4.3.3=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/share/R/include littler.c -Wl,-z,relro -Wl,--export-dynamic -fopenmp 
> -Wl,-z,relro -L/usr/lib/R/lib -lR -lpcre2-8 -llzma -lbz2 -lz -ltirpc -lrt 
> -ldl -lm -licuuc -licui18n -lblas -llapack -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu/libfakeroot 
> -Wl,-rpath,/usr/lib64/libfakeroot -Wl,-rpath,/usr/lib32/libfakeroot 
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/littler_0.3.19-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066453: arduino-ctags: FTBFS: ../../routines.c:529:48: error: expected ‘;’, ‘,’ or ‘)’ before ‘__unused__’

2024-03-13 Thread Lucas Nussbaum
Source: arduino-ctags
Version: 5.8-arduino11-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -I. -I../.. -DHAVE_CONFIG_H -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -c ../../sh.c
> ../../routines.c:529:48: error: expected ‘;’, ‘,’ or ‘)’ before ‘__unused__’
>   529 | static void canonicalizePath (char *const path __unused__)
>   |^~
> ../../routines.c: In function ‘isSameFile’:
> ../../routines.c:553:17: error: implicit declaration of function 
> ‘canonicalizePath’ [-Werror=implicit-function-declaration]
>   553 | canonicalizePath (n1);
>   | ^~~~
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:220: routines.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/arduino-ctags_5.8-arduino11-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066452: rapache: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: rapache
Version: 1.2.10-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/share/apr-1.0/build/libtool  --mode=link --tag=disable-static 
> x86_64-linux-gnu-gcc -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -lpcre2-8 
> -L/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0-o mod_R.la  -rpath 
> /usr/lib/apache2/modules -module -avoid-versionmod_R.lo 
> -Wl,--export-dynamic -fopenmp -Wl,-z,relro -L/usr/lib/R/lib -lR -lpcre2-8 
> -llzma -lbz2 -lz -ltirpc -lrt -ldl -lm -licuuc -licui18n 
> -L/usr/lib/x86_64-linux-gnu -lapreq2
> libtool: link: x86_64-linux-gnu-gcc -shared  -fPIC -DPIC  .libs/mod_R.o   
> -L/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0 -L/usr/lib/R/lib -lR -lpcre2-8 
> -llzma -lbz2 -lz -ltirpc -lrt -ldl -lm -licuuc -licui18n 
> -L/usr/lib/x86_64-linux-gnu -lapreq2  -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z 
> -Wl,now -Wl,--export-dynamic -fopenmp -Wl,-z -Wl,relro   -fopenmp -Wl,-soname 
> -Wl,mod_R.so -o .libs/mod_R.so
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rapache_1.2.10-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066451: phast: FTBFS: ./src/lib/phylo/./src/lib/phylo/phast_subst_mods.c:532:(.text+0xead7): undefined reference to `die'

2024-03-13 Thread Lucas Nussbaum
Source: phast
Version: 1.6+dfsg-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: 
> /<>/src/exoniphy/../../lib/libphast.a(phast_subst_mods.o): in 
> function `tm_rate_params_init_from_model':
> ./src/lib/phylo/./src/lib/phylo/phast_subst_mods.c:532:(.text+0xead7): 
> undefined reference to `die'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/phast_1.6+dfsg-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066449: mpi4py: FTBFS: ld: cannot find -llmpe: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: mpi4py
Version: 3.1.5-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> dh_auto_build override_dh_auto_build-arch -- \
>   --build-args "--mpicc=/usr/bin/mpicc --mpicxx=/usr/bin/mpicxx"
> I: pybuild base:305: /usr/bin/python3.12 setup.py build 
> --mpicc=/usr/bin/mpicc --mpicxx=/usr/bin/mpicxx
> running build
> running build_src
> running build_py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/bench.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/run.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__main__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/pool.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_lib.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__main__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_core.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_base.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/aplus.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/server.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/pkl5.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/dtlib.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/py.typed -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/MPI.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/bench.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/run.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__main__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/dl.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/libmpi.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/MPI.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/include
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.MPI.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.MPI_api.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.i -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi.pxi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/futures/pool.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/server.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_lib.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__main__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/aplus.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_core.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/util/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/dtlib.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/pkl5.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> running build_clib
> MPI configuration: [mpi] from 'mpi.cfg'
> MPI C compiler:/usr/bin/mpicc
> MPI C++ compiler:  /usr/bin/mpicxx
> checking for library 'lmpe' ...
> /usr/bin/mpicc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
> -c 

Bug#1066447: gpm: FTBFS: prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: gpm
Version: 1.20.7-10
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -I. -I /<>/src -M -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/<>/src -DHAVE_CONFIG_H -include headers/config.h -Wall 
> -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time 
> -D_FORTIFY_SOURCE=2 $DEPS | \
> /usr/bin/sed 's/^\(.*\)\.o\([ :]+\)/\1.o \1.lo\2/g' >> .depend ; done
> prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory
>40 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/display-coords.c:41:10: fatal error: gpm.h: No such file or directory
>41 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/get-versions.c:25:10: fatal error: gpm.h: No such file or directory
>25 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> # make links in srcdir
> make[3]: [Makefile:92: dep] Error 1 (ignored)
> # create dependencies
> for DEPS in `echo *.c */*.c`; do \
> gcc -I. -I /<>/src -M -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/<>/src -DHAVE_CONFIG_H -include headers/config.h -Wall 
> -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time 
> -D_FORTIFY_SOURCE=2 $DEPS | \
> /usr/bin/sed 's/^\(.*\)\.o\([ :]+\)/\1.o \1.lo\2/g' >> .depend ; done
> prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory
>40 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/display-coords.c:41:10: fatal error: gpm.h: No such file or directory
>41 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/get-versions.c:25:10: fatal error: gpm.h: No such file or directory
>25 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> make[3]: Leaving directory '/<>/src'
> make[3]: Entering directory '/<>/src'
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o mice.o mice.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o twiddler.o twiddler.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o synaptics.o synaptics.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o daemon/add_mouse.o daemon/add_mouse.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> 

Bug#1066448: zvbi: FTBFS: io-sim.c:128:1: error: static declaration of ‘sincos’ follows non-static declaration

2024-03-13 Thread Lucas Nussbaum
Source: zvbi
Version: 0.2.42-1.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  
> -I..  -D_REENTRANT -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o io-v4l2.lo io-v4l2.c
> io-sim.c:128:1: error: static declaration of ‘sincos’ follows non-static 
> declaration
>   128 | sincos  (double x,
>   | ^~
> In file included from /usr/include/features.h:490,
>  from 
> /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
>  from /usr/include/math.h:27,
>  from io-sim.c:28:
> /usr/include/x86_64-linux-gnu/bits/mathcalls.h:79:1: note: previous 
> declaration of ‘sincos’ with type ‘void(double,  double *, double *)’
>79 | __MATHDECL_VEC (void,sincos,,
>   | ^~
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -D_REENTRANT 
> -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c io-v4l.c  -fPIC -DPIC -o 
> .libs/io-v4l.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -D_REENTRANT 
> -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c io-v4l2.c  -fPIC -DPIC -o 
> .libs/io-v4l2.o
> make[5]: *** [Makefile:794: io-sim.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/zvbi_0.2.42-1.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066446: node-iconv: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-iconv
Version: 3.0.1+~3.0.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CC(target) Release/obj.target/iconv/binding.o
>   SOLINK_MODULE(target) Release/obj.target/iconv.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-iconv_3.0.1+~3.0.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066444: nacl: FTBFS: ld: cannot find -lnsl: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: nacl
Version: 20110221-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> ./do
> echo 'log'
> log
> echo '==='
> ===
> cat build/debianbuildhost/log
> === Tue Mar 12 20:30:43 UTC 2024 === starting
> === Tue Mar 12 20:30:43 UTC 2024 === hostname
> ip-10-84-234-227
> === Tue Mar 12 20:30:43 UTC 2024 === uname -a
> Linux ip-10-84-234-227 6.1.0-13-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 
> 6.1.55-1 (2023-09-29) x86_64 GNU/Linux
> === Tue Mar 12 20:30:43 UTC 2024 === uname -M
> uname: invalid option -- 'M'
> Try 'uname --help' for more information.
> === Tue Mar 12 20:30:43 UTC 2024 === uname -F
> uname: invalid option -- 'F'
> Try 'uname --help' for more information.
> === Tue Mar 12 20:30:43 UTC 2024 === /usr/sbin/lscfg | grep proc
> ./do: 57: /usr/sbin/lscfg: not found
> === Tue Mar 12 20:30:43 UTC 2024 === /usr/sbin/lsattr -El proc0
> ./do: 59: /usr/sbin/lsattr: not found
> === Tue Mar 12 20:30:43 UTC 2024 === cat /proc/cpuinfo
> processor : 0
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 0
> cpu cores : 4
> apicid: 0
> initial apicid: 0
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni 
> pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt 
> tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 
> 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
> invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd 
> avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
> bugs  : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds 
> swapgs itlb_multihit mmio_stale_data retbleed gds
> bogomips  : 4999.99
> clflush size  : 64
> cache_alignment   : 64
> address sizes : 46 bits physical, 48 bits virtual
> power management:
> 
> processor : 1
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 1
> cpu cores : 4
> apicid: 2
> initial apicid: 2
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni 
> pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt 
> tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 
> 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
> invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd 
> avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
> bugs  : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds 
> swapgs itlb_multihit mmio_stale_data retbleed gds
> bogomips  : 4999.99
> clflush size  : 64
> cache_alignment   : 64
> address sizes : 46 bits physical, 48 bits virtual
> power management:
> 
> processor : 2
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 2
> cpu cores : 4
> apicid: 4
> initial apicid: 4
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni 
> pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt 
> tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 
> 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
> invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd 
> avx512bw avx512vl xsaveopt xsavec xgetbv1 

Bug#1066445: node-node-sass: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-node-sass
Version: 7.0.3+git20221109.ee13eb9+dfsg-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>   g++ -o Release/obj.target/binding.node -shared -pthread -rdynamic -m64 
> -Wl,-z,relro -Wl,-z,now -Wl,-soname=binding.node -Wl,--start-group 
> Release/obj.target/binding/src/binding.o 
> Release/obj.target/binding/src/create_string.o 
> Release/obj.target/binding/src/custom_function_bridge.o 
> Release/obj.target/binding/src/custom_importer_bridge.o 
> Release/obj.target/binding/src/sass_context_wrapper.o 
> Release/obj.target/binding/src/sass_types/boolean.o 
> Release/obj.target/binding/src/sass_types/color.o 
> Release/obj.target/binding/src/sass_types/error.o 
> Release/obj.target/binding/src/sass_types/factory.o 
> Release/obj.target/binding/src/sass_types/list.o 
> Release/obj.target/binding/src/sass_types/map.o 
> Release/obj.target/binding/src/sass_types/null.o 
> Release/obj.target/binding/src/sass_types/number.o 
> Release/obj.target/binding/src/sass_types/string.o -Wl,--end-group -lnode 
> -lsass
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-node-sass_7.0.3+git20221109.ee13eb9+dfsg-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066442: merkaartor: FTBFS: Preferences/MerkaartorPreferences.h:28:10: fatal error: proxy.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: merkaartor
Version: 0.19.0+ds-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> g++ -c -pipe -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/include/gdal -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -std=gnu++11 -frtti -Wall -Wextra -Wno-reorder -D_REENTRANT -fPIC 
> -DQT_NO_DEPRECATED_WARNINGS -DVERSION=0.19.0 -DREVISION=0.19.0-64bit 
> -DPRODUCT=Merkaartor -DUSE_LIBPROXY -DUSE_WEBKIT -D_TTY_POSIX_ -DUSE_GPS 
> -DUSE_GPSD_LIB -DPLUGINS_DIR=/usr/lib/merkaartor/plugins 
> -DSHARE_DIR=/usr/share/merkaartor 
> -DTRANSDIR_MERKAARTOR=/usr/share/merkaartor/translations 
> -DTRANSDIR_SYSTEM=/usr/share/qt5/translations/ -DGEOIMAGE -DQT_NO_DEBUG 
> -DQT_SVG_LIB -DQT_WEBENGINEWIDGETS_LIB -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB 
> -DQT_WEBENGINECORE_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB 
> -DQT_WEBCHANNEL_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_XML_LIB 
> -DQT_CONCURRENT_LIB -DQT_POSITIONING_LIB -DQT_CORE_LIB -I. 
> -I../3rdparty/qtsingleapplication-2.6_1-opensource/src -I. -I../include 
> -I../interfaces -Icommon -IBackend -IPaintStyle -IPaintStyle -IFeatures 
> -ILayers -IPreferences -ISync -ICommands -IInteractions -IDocks -IQMapControl 
> -IImportExport -IRender -Iqextserialport -IGPS -ITools -ITagTemplate 
> -INameFinder -IUtils -IQToolBarDialog -I/usr/include/x86_64-linux-gnu/qt5 
> -I/usr/include/x86_64-linux-gnu/qt5/QtSvg 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets 
> -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQuick 
> -I/usr/include/x86_64-linux-gnu/qt5/QtGui 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQml 
> -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork 
> -I/usr/include/x86_64-linux-gnu/qt5/QtXml 
> -I/usr/include/x86_64-linux-gnu/qt5/QtConcurrent 
> -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning 
> -I/usr/include/x86_64-linux-gnu/qt5/QtCore -Irelease -I. 
> -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o release/Global.o 
> common/Global.cpp
> In file included from common/Projection.h:7,
>  from common/MapView.h:4,
>  from Features/Feature.h:8,
>  from Features/Features.h:2,
>  from Backend/MemoryBackend.h:4,
>  from common/Global.h:19,
>  from common/Global.cpp:13:
> Preferences/MerkaartorPreferences.h:28:10: fatal error: proxy.h: No such file 
> or directory
>28 | #include 
>   |  ^
> compilation terminated.
> make[3]: *** [Makefile.Release:2432: release/Global.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/merkaartor_0.19.0+ds-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066441: blackbox-terminal: FTBFS: ./obj-x86_64-linux-gnu/src/blackbox.p/CommandLine.c:544:(.text+0xb6f): undefined reference to `g_application_command_line_print_literal'

2024-03-13 Thread Lucas Nussbaum
Source: blackbox-terminal
Version: 0.14.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: src/blackbox.p/meson-generated_CommandLine.c.o: in function 
> `terminal_command_line_parse_command_line':
> ./obj-x86_64-linux-gnu/src/blackbox.p/CommandLine.c:544:(.text+0xb6f): 
> undefined reference to `g_application_command_line_print_literal'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/blackbox-terminal_0.14.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066439: squidguard: FTBFS: ././conftest.c:17:(.text.startup+0xb): undefined reference to `yywrap'

2024-03-13 Thread Lucas Nussbaum
Source: squidguard
Version: 1.6.0-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccG4JRNN.o: in function `main':
> ././conftest.c:17:(.text.startup+0xb): undefined reference to `yywrap'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/squidguard_1.6.0-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066440: librep: FTBFS: ././conftest.c:48:(.text.startup+0xb): undefined reference to `mpz_init'

2024-03-13 Thread Lucas Nussbaum
Source: librep
Version: 0.92.5-3.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccO0t9oT.o: in function `main':
> ././conftest.c:48:(.text.startup+0xb): undefined reference to `mpz_init'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/librep_0.92.5-3.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066438: backuppc-rsync: FTBFS: lib/compat.c:154:16: error: too few arguments to function ‘gettimeofday’

2024-03-13 Thread Lucas Nussbaum
Source: backuppc-rsync
Version: 3.1.3.0-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -I. -I. -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -DHAVE_CONFIG_H -Wall -W -Wdate-time -D_FORTIFY_SOURCE=2 -c 
> lib/snprintf.c -o lib/snprintf.o
> lib/snprintf.c: In function ‘dopr’:
> lib/snprintf.c:504:44: warning: this statement may fall through 
> [-Wimplicit-fallthrough=]
>   504 | cnk->flags |= DP_F_UP;
>   |^
> lib/snprintf.c:505:25: note: here
>   505 | case 'x':
>   | ^~~~
> lib/snprintf.c:514:44: warning: this statement may fall through 
> [-Wimplicit-fallthrough=]
>   514 | cnk->flags |= DP_F_UP;
>   |^
> lib/snprintf.c:515:25: note: here
>   515 | case 'a':
>   | ^~~~
> lib/compat.c: In function ‘sys_gettimeofday’:
> lib/compat.c:154:16: error: too few arguments to function ‘gettimeofday’
>   154 | return gettimeofday(tv);
>   |^~~~
> In file included from ./rsync.h:365,
>  from lib/compat.c:22:
> /usr/include/x86_64-linux-gnu/sys/time.h:67:12: note: declared here
>67 | extern int gettimeofday (struct timeval *__restrict __tv,
>   |^~~~
> lib/compat.c:156:1: warning: control reaches end of non-void function 
> [-Wreturn-type]
>   156 | }
>   | ^
> make[1]: *** [Makefile:65: lib/compat.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/backuppc-rsync_3.1.3.0-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066437: libast: FTBFS: snprintf.c:45:22: error: unknown type name ‘size_t’

2024-03-13 Thread Lucas Nussbaum
Source: libast
Version: 0.7-9.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
> -I../include/libast -I../include -I../include/libast  -I/usr/include 
> -Wdate-time -D_FORTIFY_SOURCE=2   -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o snprintf.lo snprintf.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I../include/libast 
> -I../include -I../include/libast -I/usr/include -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> snprintf.c  -fPIC -DPIC -o .libs/snprintf.o
> snprintf.c:45:22: error: unknown type name ‘size_t’
>45 | vsnprintf(char *str, size_t count, const char *fmt, va_list args)
>   |  ^~
> snprintf.c:8:1: note: ‘size_t’ is defined in header ‘’; did you 
> forget to ‘#include ’?
> 7 | # include 
>   +++ |+#include 
> 8 | #else
> snprintf.c:58:21: error: unknown type name ‘size_t’
>58 | snprintf(char *str, size_t count, const char *fmt, ...)
>   | ^~
> snprintf.c:58:21: note: ‘size_t’ is defined in header ‘’; did you 
> forget to ‘#include ’?
> snprintf.c: In function ‘fmtstr’:
> snprintf.c:250:36: error: implicit declaration of function ‘iscntrl’ 
> [-Werror=implicit-function-declaration]
>   250 | if (visible_control && iscntrl(c) && !isspace(c)) {
>   |^~~
> snprintf.c:8:1: note: include ‘’ or provide a declaration of 
> ‘iscntrl’
> 7 | # include 
>   +++ |+#include 
> 8 | #else
> snprintf.c:250:51: error: implicit declaration of function ‘isspace’ 
> [-Werror=implicit-function-declaration]
>   250 | if (visible_control && iscntrl(c) && !isspace(c)) {
>   |   ^~~
> snprintf.c:250:51: note: include ‘’ or provide a declaration of 
> ‘isspace’
> snprintf.c: In function ‘fmtdouble’:
> snprintf.c:359:5: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>   359 | strcpy(fmtstr, "%");
>   | ^~
> snprintf.c:8:1: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> 7 | # include 
>   +++ |+#include 
> 8 | #else
> snprintf.c:359:5: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>   359 | strcpy(fmtstr, "%");
>   | ^~
> snprintf.c:359:5: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> snprintf.c:361:9: error: implicit declaration of function ‘strcat’ 
> [-Werror=implicit-function-declaration]
>   361 | strcat(fmtstr, "-");
>   | ^~
> snprintf.c:361:9: note: include ‘’ or provide a declaration of 
> ‘strcat’
> snprintf.c:361:9: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
> snprintf.c:361:9: note: include ‘’ or provide a declaration of 
> ‘strcat’
> snprintf.c:363:9: error: implicit declaration of function ‘sprintf’ 
> [-Werror=implicit-function-declaration]
>   363 | sprintf(fmtstr + strlen(fmtstr), "%d", len);
>   | ^~~
> snprintf.c:8:1: note: include ‘’ or provide a declaration of 
> ‘sprintf’
> 7 | # include 
>   +++ |+#include 
> 8 | #else
> snprintf.c:363:9: warning: incompatible implicit declaration of built-in 
> function ‘sprintf’ [-Wbuiltin-declaration-mismatch]
>   363 | sprintf(fmtstr + strlen(fmtstr), "%d", len);
>   | ^~~
> snprintf.c:363:9: note: include ‘’ or provide a declaration of 
> ‘sprintf’
> snprintf.c:363:26: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   363 | sprintf(fmtstr + strlen(fmtstr), "%d", len);
>   |  ^~
> snprintf.c:363:26: note: include ‘’ or provide a declaration of 
> ‘strlen’
> snprintf.c:363:26: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
> snprintf.c:363:26: note: include ‘’ or provide a declaration of 
> ‘strlen’
> snprintf.c:366:9: warning: incompatible implicit declaration of built-in 
> function ‘sprintf’ [-Wbuiltin-declaration-mismatch]
>   366 | sprintf(fmtstr + strlen(fmtstr), ".%d", precision);
>   | ^~~
> snprintf.c:366:9: note: include ‘’ or provide a declaration of 
> ‘sprintf’
> snprintf.c:366:26: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   366 |   

Bug#1066435: hyperic-sigar: FTBFS: [cc] /<>/src/sigar_util.c:742:10: fatal error: rpc/rpc.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: hyperic-sigar
Version: 1.6.4+dfsg-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>  debian/rules binary
> dh binary --sourcedirectory=bindings/java
>dh_update_autotools_config -O--sourcedirectory=bindings/java
>dh_autoreconf -O--sourcedirectory=bindings/java
>dh_auto_configure -O--sourcedirectory=bindings/java
>dh_auto_build -O--sourcedirectory=bindings/java
>   cd bindings/java && ant -Duser.name debian
> Buildfile: /<>/bindings/java/build.xml
> 
> jni-init:
> [mkdir] Created dir: /<>/bindings/java/build/classes
>  [echo] jni.src=linux, jni.jdk.os=linux, 64-bit
> [javac] /<>/bindings/java/hyperic_jni/jni-build.xml:165: 
> warning: 'includeantruntime' was not set, defaulting to 
> build.sysclasspath=last; set to false for repeatable builds
> [javac] Using javac -source 1.4 is no longer supported, switching to 7
> [javac] Using javac -target 1.4 is no longer supported, switching to 7
> [javac] Compiling 6 source files to 
> /<>/bindings/java/build/classes
> [javac] warning: [options] bootstrap class path not set in conjunction 
> with -source 7
> [javac] warning: [options] source value 7 is obsolete and will be removed 
> in a future release
> [javac] warning: [options] target value 7 is obsolete and will be removed 
> in a future release
> [javac] warning: [options] To suppress warnings about obsolete options, 
> use -Xlint:-options.
> [javac] Note: 
> /<>/bindings/java/hyperic_jni/src/org/hyperic/jni/ArchLoader.java
>  uses or overrides a deprecated API.
> [javac] Note: Recompile with -Xlint:deprecation for details.
> [javac] 4 warnings
>   [libarch] amd64-linux
>  [echo] java.home=/usr/lib/jvm/java-17-openjdk-amd64
> 
> sigar-version:
>[tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been 
> set to 1636439402
>  [echo] SIGAR git revision exported
> 
> version-file:
>  [echo] cp ./src/org/hyperic/sigar/SigarVersion.java.in -> 
> /<>/bindings/java/build/./src/org/hyperic/sigar/SigarVersion.java
>  [copy] Copying 1 file to 
> /<>/bindings/java/build/src/org/hyperic/sigar
> 
> version-file:
>  [echo] cp ../../src/sigar_version.c.in -> 
> /<>/bindings/java/build/src/sigar_version.c
>  [copy] Copying 1 file to /<>/bindings/java/build/src
> 
> version-file:
>  [echo] cp ../../src/os/darwin/Info.plist.in -> 
> /<>/bindings/java/build/src/Info.plist
>  [copy] Copying 1 file to /<>/bindings/java/build/src
> 
> version-file:
>  [echo] cp ../../src/os/win32/sigar.rc.in -> 
> /<>/bindings/java/build/src/sigar.rc
>  [copy] Copying 1 file to /<>/bindings/java/build/src
> 
> sigar.rc:
> 
> prepare-src:
>  [exec] javasigar_generated.c needs update
>  [exec] generating javasigar_generated.c
>  [exec] generating javasigar_generated.h
>  [exec] generating org/hyperic/sigar/DirUsage.java
>  [exec] generating org/hyperic/sigar/FileSystem.java
>  [exec] generating org/hyperic/sigar/FileAttrs.java
>  [exec] generating org/hyperic/sigar/NfsServerV2.java
>  [exec] generating org/hyperic/sigar/NetInfo.java
>  [exec] generating org/hyperic/sigar/DirStat.java
>  [exec] generating org/hyperic/sigar/Mem.java
>  [exec] generating org/hyperic/sigar/NetInterfaceConfig.java
>  [exec] generating org/hyperic/sigar/NfsClientV3.java
>  [exec] generating org/hyperic/sigar/ProcFd.java
>  [exec] generating org/hyperic/sigar/Uptime.java
>  [exec] generating org/hyperic/sigar/NetInterfaceStat.java
>  [exec] generating org/hyperic/sigar/Who.java
>  [exec] generating org/hyperic/sigar/ProcTime.java
>  [exec] generating org/hyperic/sigar/DiskUsage.java
>  [exec] generating org/hyperic/sigar/NetConnection.java
>  [exec] generating org/hyperic/sigar/FileSystemUsage.java
>  [exec] generating org/hyperic/sigar/ProcStat.java
>  [exec] skipping org/hyperic/sigar/NetStat.java
>  [exec] generating org/hyperic/sigar/ProcCredName.java
>  [exec] generating org/hyperic/sigar/ProcMem.java
>  [exec] generating org/hyperic/sigar/ProcState.java
>  [exec] generating org/hyperic/sigar/ProcCpu.java
>  [exec] generating org/hyperic/sigar/ProcExe.java
>  [exec] generating org/hyperic/sigar/ThreadCpu.java
>  [exec] generating org/hyperic/sigar/SysInfo.java
>  [exec] generating org/hyperic/sigar/ResourceLimit.java
>  [exec] generating org/hyperic/sigar/NfsClientV2.java
>  [exec] generating org/hyperic/sigar/CpuInfo.java
>  [exec] generating org/hyperic/sigar/Tcp.java
>  [exec] generating org/hyperic/sigar/Swap.java
>  [exec] skipping org/hyperic/sigar/CpuPerc.java
>  [exec] generating org/hyperic/sigar/NetRoute.java
>  [exec] generating org/hyperic/sigar/NfsServerV3.java
>  [exec] generating 

Bug#1066436: hmmer2: FTBFS: ld: cannot find -lhmmer: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: hmmer2
Version: 2.3.2+dfsg-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wl,-z,relro -Wl,-z,now -DHAVE_CONFIG_H -o masks_test -L../src masks_test.o 
> -lhmmer `pkg-config --libs libsquid`  -lm
> /usr/bin/ld: cannot find -lhmmer: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/hmmer2_2.3.2+dfsg-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066433: uim: FTBFS: bsd-snprintf.c:104:38: error: assignment to expression with array type

2024-03-13 Thread Lucas Nussbaum
Source: uim
Version: 1:1.8.8-9.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../uim -I../replace -I../uim  -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -O1 -pedantic -pipe -Wall 
> -Wchar-subscripts -Wmissing-declarations -Wredundant-decls 
> -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align 
> -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG -c -o 
> getpeereid.lo getpeereid.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c daemon.c  -fPIC -DPIC -o .libs/daemon.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c bsd-poll.c  -fPIC -DPIC -o .libs/bsd-poll.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c bsd-misc.c  -fPIC -DPIC -o .libs/bsd-misc.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c bsd-snprintf.c  -fPIC -DPIC -o .libs/bsd-snprintf.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c fake-rfc2553.c  -fPIC -DPIC -o .libs/fake-rfc2553.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c bsd-asprintf.c  -fPIC -DPIC -o .libs/bsd-asprintf.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O1 
> -pedantic -pipe -Wall -Wchar-subscripts -Wmissing-declarations 
> -Wredundant-decls -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
> -Wcast-align -Wsign-compare -Wno-long-long -Wno-overlength-strings -DNDEBUG 
> -c bsd-waitpid.c  -fPIC -DPIC -o .libs/bsd-waitpid.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../uim -I../replace -I../uim 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 

Bug#1066434: uucp: FTBFS: ../uucp.h:103:3: error: #error ANSI C compiler without void or unsigned char or prototypes

2024-03-13 Thread Lucas Nussbaum
Source: uucp
Version: 1.07-28
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -I.. -I./.. -W 
> -Wall -Wstrict-prototypes -Wmissing-prototypes -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -g -Wl,-z,relro -Wl,-z,now 
> -Wdate-time -D_FORTIFY_SOURCE=2 -O2 -MT buffer.o -MD -MP -MF .deps/buffer.Tpo 
> -c -o buffer.o buffer.c
> In file included from buffer.c:25:
> ../uucp.h:103:3: error: #error ANSI C compiler without void or unsigned char 
> or prototypes
>   103 |  #error ANSI C compiler without void or unsigned char or prototypes
>   |   ^
> make[4]: *** [Makefile:355: buffer.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/uucp_1.07-28_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066432: node-shiny-server: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-shiny-server
Version: 1.5.20.1002-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/posix/src/posix.o
>   SOLINK_MODULE(target) Release/obj.target/posix.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-shiny-server_1.5.20.1002-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066431: dsniff: FTBFS: ./decode_yp.c:18:10: fatal error: rpcsvc/yp_prot.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: dsniff
Version: 2.4b1+debian-32
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -I/usr/include/tirpc/ -D_BSD_SOURCE -D_BSD_SOURCE -D__BSD_SOURCE 
> -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DDSNIFF_LIBDIR=\"/usr/share/dsniff/\" 
> -I/usr/include/tirpc -Wdate-time -D_FORTIFY_SOURCE=2 -I. -I/usr/include 
> -I/usr/include -I/usr/include -I/usr/include -I/usr/include  -I./missing -c 
> ./mailsnarf.c
> ./decode_yp.c:18:10: fatal error: rpcsvc/yp_prot.h: No such file or directory
>18 | #include 
>   |  ^~
> compilation terminated.
> In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
>  from ./mailsnarf.c:13:
> /usr/include/features.h:195:3: warning: #warning "_BSD_SOURCE and 
> _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
>   195 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
> _DEFAULT_SOURCE"
>   |   ^~~
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -I/usr/include/tirpc/ -D_BSD_SOURCE -D_BSD_SOURCE -D__BSD_SOURCE 
> -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DDSNIFF_LIBDIR=\"/usr/share/dsniff/\" 
> -I/usr/include/tirpc -Wdate-time -D_FORTIFY_SOURCE=2 -I. -I/usr/include 
> -I/usr/include -I/usr/include -I/usr/include -I/usr/include  -I./missing -c 
> ./msgsnarf.c
> make[1]: *** [Makefile:78: decode_yp.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/dsniff_2.4b1+debian-32_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066430: namazu2: FTBFS: ld: ../nmz/.libs/libnmz.so: undefined reference to `_nmz_memcmp'

2024-03-13 Thread Lucas Nussbaum
Source: namazu2
Version: 2.0.21-23
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -pedantic  -Wl,-z,relro 
> -Wl,-z,now -o namazu.cgi form.o namazu.o output.o rcfile.o charset.o result.o 
> usage.o cgi.o namazu-cgi.o ../nmz/libnmz.la ../lib/libnmzut.a  -lm 
> libtool: link: gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/namazu.cgi form.o 
> namazu.o output.o rcfile.o charset.o result.o usage.o cgi.o namazu-cgi.o  
> ../nmz/.libs/libnmz.so ../lib/libnmzut.a -lm
> libtool: link: gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/namazu form.o 
> namazu.o output.o rcfile.o charset.o result.o usage.o namazu-cmd.o  
> ../nmz/.libs/libnmz.so ../lib/libnmzut.a -lm
> /usr/bin/ld: ../nmz/.libs/libnmz.so: undefined reference to `_nmz_memcmp'
> /usr/bin/ld: ../nmz/.libs/libnmz.so: undefined reference to `_nmz_memcmp'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/namazu2_2.0.21-23_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066424: dcl: FTBFS: gcc: error: unrecognized command-line option '-V'

2024-03-13 Thread Lucas Nussbaum
Source: dcl
Version: 7.5.1-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc version 13.2.0 (Debian 13.2.0-18) 
> ... rest of stderr output deleted ...
> configure:2498: $? = 0
> configure:2487: gcc -V >&5
> gcc: error: unrecognized command-line option '-V'
> gcc: fatal error: no input files
> compilation terminated.
> configure:2498: $? = 1
> configure:2487: gcc -qversion >&5
> gcc: error: unrecognized command-line option '-qversion'; did you mean 
> '--version'?
> gcc: fatal error: no input files
> compilation terminated.
> configure:2498: $? = 1
> configure:2518: checking whether the C compiler works
> configure:2540: gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro 
> -Wl,-z,now conftest.c  >&5
> configure:2544: $? = 0
> configure:2592: result: yes
> configure:2595: checking for C compiler default output file name
> configure:2597: result: a.out
> configure:2603: checking for suffix of executables
> configure:2610: gcc -o conftest -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro 
> -Wl,-z,now conftest.c  >&5
> configure:2614: $? = 0
> configure:2636: result: 
> configure:2658: checking whether we are cross compiling
> configure:2666: gcc -o conftest -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro 
> -Wl,-z,now conftest.c  >&5
> configure:2670: $? = 0
> configure:2677: ./conftest
> configure:2681: $? = 0
> configure:2696: result: no
> configure:2701: checking for suffix of object files
> configure:2723: gcc -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
> configure:2727: $? = 0
> configure:2748: result: o
> configure:2752: checking whether we are using the GNU C compiler
> configure:2771: gcc -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
> configure:2771: $? = 0
> configure:2780: result: yes
> configure:2789: checking whether gcc accepts -g
> configure:2809: gcc -c -g -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
> configure:2809: $? = 0
> configure:2850: result: yes
> configure:2867: checking for gcc option to accept ISO C89
> configure:2930: gcc  -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
> configure:2930: $? = 0
> configure:2943: result: none needed
> configure:2968: checking how to run the C preprocessor
> configure:2999: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
> configure:2999: $? = 0
> configure:3013: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
> conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
> 9 | #include 
>   |  ^~
> compilation terminated.
> configure:3013: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME ""
> | #define PACKAGE_TARNAME ""
> | #define PACKAGE_VERSION ""
> | #define PACKAGE_STRING ""
> | #define PACKAGE_BUGREPORT ""
> | #define PACKAGE_URL ""
> | /* end confdefs.h.  */
> | #include 
> configure:3038: result: gcc -E
> configure:3058: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
> configure:3058: $? = 0
> configure:3072: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
> conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
> 9 | #include 
>   |  ^~
> compilation terminated.
> configure:3072: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME ""
> | #define PACKAGE_TARNAME ""
> | #define PACKAGE_VERSION ""
> | #define PACKAGE_STRING ""
> | #define PACKAGE_BUGREPORT ""
> | #define PACKAGE_URL ""
> | /* end confdefs.h.  */
> | #include 
> configure:3106: checking for mawk
> configure:3124: found /usr/bin/mawk
> configure:3136: result: /usr/bin/mawk
> 

Bug#1066429: eso-midas: FTBFS: ld: cannot find computer.o: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: eso-midas
Version: 23.02pl1.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> cc -Wl,-z,relro computer.o -lm -Wl,-rpath,/usr/lib/eso-midas/23FEB/lib -o 
> ../exec/computer.exe
> /usr/bin/ld: cannot find computer.o: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/eso-midas_23.02pl1.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066426: xshisen: FTBFS: main.C:149:71: error: ‘rand’ was not declared in this scope

2024-03-13 Thread Lucas Nussbaum
Source: xshisen
Version: 1:1.51-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> c++ -c -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DNO_GLOBAL_HIGHSCORE  -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/X11R6/include 
> -DLIB_DIR=\"/usr/share/games/xshisen\" -DDAT_DIR=\"/var/games\" 
> -DHAVE_CONFIG_H main.C -o main.o
> In file included from main.C:3:
> fallback.h:2:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
> 2 | "*connectLineColor: blue",
>   | ^
> fallback.h:3:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
> 3 | "*connectLineTime: 1200",
>   | ^~~~
> fallback.h:4:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
> 4 | "*aboutString: Shisen-sho for X11 ver " XSHISEN_VERSION " \\n\\n"
>   | ^
> 5 | " Shisen-sho for X11by Masaoki Kobayashi 
> \\n"
>   | 
> ~
> 6 | "   Shisen-sho for Win  by Shinji Ono \\n"
>   | ~~~
> 7 | "   Picture by Takayuki Akiyama ",
>   | ~~
> fallback.h:8:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
> 8 | "*tedumari: No pieces available to get",
>   | ^~~
> fallback.h:9:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
> 9 | "*timeFormat: Your time is %2.2d:%2.2d.",
>   | ^~~~
> fallback.h:10:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>10 | "*displayFormat1: Pieces left: ",
>   | ^~~~
> fallback.h:11:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>11 | "*displayFormat2: Time: ",
>   | ^
> fallback.h:12:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>12 | "*score*scoreTitle: Shisen-sho best scores\\n\\n",
>   | ^
> fallback.h:13:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>13 | "*score*strPeriod: Last %d days",
>   | ^~~~
> fallback.h:14:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>14 | "*score*strPlayed: Played",
>   | ^~
> fallback.h:15:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>15 | "*score*strCompleted: Completed",
>   | ^~~~
> fallback.h:16:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>16 | "*score*strTedumari: Deadlocked",
>   | ^~~~
> fallback.h:17:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>17 | "*score*strSearched: Search used",
>   | ^
> fallback.h:18:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>18 | "*score*strGames: games",
>   | ^~~~
> fallback.h:19:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>19 | "*score*strAverage: Average",
>   | ^~~~
> fallback.h:20:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>20 | "*score*strTotal: Total",
>   | ^~~~
> fallback.h:21:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>21 | "*score*strGiveUp: Given up",
>   | ^~~~
> fallback.h:22:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>22 | "*score*personalTitle: Personal Statistics (%s)\\n\\n",
>   | ^~
> fallback.h:23:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ [-Wwrite-strings]
>23 | "*score*averagePeriod: 14",
>   | ^~
> fallback.h:25:5: warning: ISO C++ forbids converting a string constant to 
> ‘char*’ 

Bug#1066428: node-leveldown: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-leveldown
Version: 5.6.0+dfsg-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/leveldown/binding.o
>   SOLINK_MODULE(target) Release/obj.target/leveldown.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-leveldown_5.6.0+dfsg-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066427: atlas-ecmwf: FTBFS: Library.cc:63:10: fatal error: ectrans/transi.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: atlas-ecmwf
Version: 0.36.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> cd /<>/debian/build/atlas_io/tests && /usr/bin/c++  
> -I/<>/atlas_io/src -I/<>/debian/build/atlas_io/src 
> -I/usr/include/x86_64-linux-gnu/eckit -g -O2 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -O3 -DNDEBUG -std=gnu++17 -fPIE -MD -MT 
> atlas_io/tests/CMakeFiles/atlas_io_test_record.dir/test_io_record.cc.o -MF 
> CMakeFiles/atlas_io_test_record.dir/test_io_record.cc.o.d -o 
> CMakeFiles/atlas_io_test_record.dir/test_io_record.cc.o -c 
> /<>/atlas_io/tests/test_io_record.cc
> /<>/src/atlas/library/Library.cc:63:10: fatal error: 
> ectrans/transi.h: No such file or directory
>63 | #include "ectrans/transi.h"
>   |  ^~
> compilation terminated.
> make[3]: *** [src/atlas/CMakeFiles/atlas_ecmwf.dir/build.make:93: 
> src/atlas/CMakeFiles/atlas_ecmwf.dir/library/Library.cc.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/atlas-ecmwf_0.36.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066425: node-libpq: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-libpq
Version: 1.8.12+~1.8.10-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/addon/src/connection.o
>   CXX(target) Release/obj.target/addon/src/connect-async-worker.o
>   CXX(target) Release/obj.target/addon/src/addon.o
> In file included from ../../../../usr/share/nodejs/nan/nan.h:62,
>  from ../src/addon.h:4,
>  from ../src/addon.cc:1:
> /usr/include/nodejs/src/node.h:1014:7: warning: cast between incompatible 
> function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka 
> ‘void (*)(v8::Local)’} to ‘node::addon_register_func’ {aka ‘void 
> (*)(v8::Local, v8::Local, void*)’} 
> [-Wcast-function-type]
>  1014 |   (node::addon_register_func) (regfunc),  
> \
>   |   ^
> /usr/include/nodejs/src/node.h:1048:3: note: in expansion of macro 
> ‘NODE_MODULE_X’
>  1048 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT 
> (readability/null_usage)
>   |   ^
> ../src/addon.cc:76:1: note: in expansion of macro ‘NODE_MODULE’
>76 | NODE_MODULE(addon, InitAddon)
>   | ^~~
>   SOLINK_MODULE(target) Release/obj.target/addon.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-libpq_1.8.12+~1.8.10-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066422: plastimatch: FTBFS: ld: cannot find -lnsl: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: plastimatch
Version: 1.9.4+dfsg.1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/c++ -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2  
> -fno-sized-deallocation -O3 -DNDEBUG -Wl,-z,relro -Wl,-z,now  -rdynamic 
> -fopenmp CMakeFiles/landmark_diff.dir/landmark_diff_main.cxx.o -o 
> ../../../landmark_diff   
> -L/<>/obj-x86_64-linux-gnu/libs/liblbfgs-1.9  
> -L/<>/obj-x86_64-linux-gnu/libs/specfun  
> -L/usr/lib/x86_64-linux-gnu/lib  -L/<>/obj-x86_64-linux-gnu  
> -L/usr/lib/x86_64-linux-gnu/cmake/dcmtk/lib/x86_64-linux-gnu  -L/usr/include  
> ../clp/libplmclp.a ../../../libplmsegment.so.1.9 
> ../../../libplmregister.so.1.9 ../../../libplmreconstruct.so.1.9 
> ../../../libplmdose.so.1.9 ../../../libplmutil.so.1.9 
> ../../../libplmbase.so.1.9 ../../../libplmsys.so.1.9 -lz -ljpeg -lexpat -lpng 
> /usr/lib/x86_64-linux-gnu/libITKTestKernel-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKConvolution-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKColormap-5.3.so.1 -lofstd -loflog -ldcmdata 
> -li2d -ldcmimgle -ldcmimage -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmjpls 
> -ldcmtkcharls -ldcmtls -ldcmnet -ldcmsr -lcmr -ldcmdsig -ldcmwlm -ldcmqrdb 
> -ldcmpstat -ldcmrt -ldcmiod -ldcmfg -ldcmseg -ldcmtract -ldcmpmap -ldcmect 
> /usr/lib/x86_64-linux-gnu/libITKDICOMParser-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKDenoising-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5_cpp.so 
> /usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so 
> /usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5_hl.so 
> /usr/lib/x86_64-linux-gnu/libITKIOBruker-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOCSV-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOHDF5-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOJPEG2000-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOLSM-5.3.so.1 -lminc2 -lm -lz -lm -ldl 
> -lnetcdf /usr/lib/x86_64-linux-gnu/libITKIOMINC-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMRC-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKRegistrationMethodsv4-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKReview-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKVideoIO-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKVtkGlue-5.3.so.1 ../../../libdevillard.a 
> ../../../libnkidecompress.a -lm 
> /usr/lib/x86_64-linux-gnu/libdcmdata.so.17.3.6.7 
> /usr/lib/x86_64-linux-gnu/libdlib.so.19.24.0 -lfftw3f -lfftw3 -ldl 
> ../../../libspecfun.a ../../../liblbfgs.a 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshBYU-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshFreeSurfer-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshGifti-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKgiftiio-5.3.so.1 -lexpat 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshOBJ-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshOFF-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshVTK-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeshBase-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKOptimizersv4-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libitklbfgs-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOBMP-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOGDCM-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libgdcmMSFF.so.3.0.22 
> /usr/lib/x86_64-linux-gnu/libgdcmDICT.so.3.0.22 
> /usr/lib/x86_64-linux-gnu/libgdcmIOD.so.3.0.22 
> /usr/lib/x86_64-linux-gnu/libgdcmDSED.so.3.0.22 
> /usr/lib/x86_64-linux-gnu/libgdcmCommon.so.3.0.22 
> /usr/lib/x86_64-linux-gnu/libITKIOGIPL-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOJPEG-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKQuadEdgeMesh-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOMeta-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKMetaIO-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIONIFTI-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKniftiio-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKznz-5.3.so.1 -lm 
> /usr/lib/x86_64-linux-gnu/libITKIONRRD-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKNrrdIO-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOPNG-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOTIFF-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libitktiff-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOVTK-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKLabelMap-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKFastMarching-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKPolynomials-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKBiasCorrection-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKDeformableMesh-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKDiffusionTensorImage-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKPDEDeformableRegistration-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKFFT-5.3.so.1 -lfftw3_threads -lfftw3 
> -lfftw3f_threads -lfftw3f 
> /usr/lib/x86_64-linux-gnu/libITKImageFeature-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKOptimizers-5.3.so.1 
> /usr/lib/x86_64-linux-gnu/libITKIOBioRad-5.3.so.1 
> 

Bug#1066423: sight: FTBFS: ld.gold: error: cannot find -lnsl

2024-03-13 Thread Lucas Nussbaum
Source: sight
Version: 23.1.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/c++ -fPIC -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O3 
> -DNDEBUG -fuse-ld=gold -Wl,--as-needed -Wl,--sort-common -Wl,-O2 -Wl,-z,relro 
> -Wl,-z,now -shared -Wl,-soname,libsight_io_dimse.so.23.1 -o 
> ../../../lib/x86_64-linux-gnu/libsight_io_dimse.so.23.1.0 
> CMakeFiles/io_dimse.dir/SeriesEnquirer.cpp.o 
> CMakeFiles/io_dimse.dir/SeriesRetriever.cpp.o 
> CMakeFiles/io_dimse.dir/data/PacsConfiguration.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/Base.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/NegociateAssociationFailure.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/NetworkInitializationFailure.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/PresentationContextMissing.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/RequestFailure.cpp.o 
> CMakeFiles/io_dimse.dir/exceptions/TagMissing.cpp.o 
> CMakeFiles/io_dimse.dir/helper/Series.cpp.o  
> -Wl,-rpath,/<>/obj-x86_64-linux-gnu/lib/x86_64-linux-gnu: 
> /usr/lib/x86_64-linux-gnu/libdcmnet.so.17.3.6.7 
> ../../../lib/x86_64-linux-gnu/libsight_data.so.23.1.0 
> /usr/lib/x86_64-linux-gnu/libdcmdata.so.17.3.6.7 
> /usr/lib/x86_64-linux-gnu/liboflog.so.17.3.6.7 
> /usr/lib/x86_64-linux-gnu/libofstd.so.17.3.6.7 -lnsl -lpthread -lrt 
> /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/x86_64-linux-gnu/libxml2.so 
> /usr/lib/x86_64-linux-gnu/libwrap.so 
> ../../../lib/x86_64-linux-gnu/libsight_core.so.23.1.0 
> /usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_log_setup.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_log.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libboost_iostreams.so.1.83.0 
> /usr/lib/x86_64-linux-gnu/libxml2.so /usr/lib/x86_64-linux-gnu/libicuuc.so 
> /usr/lib/x86_64-linux-gnu/libcrypto.so -ldl 
> /usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so 
> /usr/lib/x86_64-linux-gnu/libpthread.a 
> /usr/bin/ld.gold: error: cannot find -lnsl
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/sight_23.1.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066421: mpb: FTBFS: ././conftest.c:44:(.text.startup+0xb): undefined reference to `foobar'

2024-03-13 Thread Lucas Nussbaum
Source: mpb
Version: 1.11.1-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccEEtlwH.o: in function `main':
> ././conftest.c:44:(.text.startup+0xb): undefined reference to `foobar'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/mpb_1.11.1-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066420: sendmail: FTBFS: ./debian/./debian/conftest.c:37:(.text.startup+0xb): undefined reference to `__res_query'

2024-03-13 Thread Lucas Nussbaum
Source: sendmail
Version: 8.18.1-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccO4jMcD.o: in function `main':
> ./debian/./debian/conftest.c:37:(.text.startup+0xb): undefined reference to 
> `__res_query'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/sendmail_8.18.1-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066418: tinyssh: FTBFS: ld: cannot find -lsocket: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: tinyssh
Version: 20240101-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>'
> sh -e make-tinyssh.sh
> === Tue Mar 12 20:33:37 UTC 2024 === obtaining compiler
> === Tue Mar 12 20:33:37 UTC 2024 ===   cc ok
> === Tue Mar 12 20:33:37 UTC 2024 === finishing
> === Tue Mar 12 20:33:37 UTC 2024 === checking compiler options
> === Tue Mar 12 20:33:37 UTC 2024 ===   -Wdate-time ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -D_FORTIFY_SOURCE=2 ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -g ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -O2 ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -Werror=implicit-function-declaration 
> ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -ffile-prefix-map=/<>=. ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -fstack-protector-strong ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -fstack-clash-protection ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -Wformat ok
> === Tue Mar 12 20:33:37 UTC 2024 ===   -Werror=format-security ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -fcf-protection ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wl,-z,relro ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wl,-z,now ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -pedantic ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wall ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wno-long-long ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wno-overlength-strings ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wno-unused-function ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wshadow ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wdeclaration-after-statement ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wwrite-strings ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wmissing-declarations ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wmissing-prototypes ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wstrict-prototypes ok
> === Tue Mar 12 20:33:38 UTC 2024 ===   -Wunused-value ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -Wunused-parameter ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -Wundef ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -fstack-protector-strong ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -fwrapv ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -fno-strict-overflow ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -Os ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -fomit-frame-pointer ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -funroll-loops ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   cc -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wl,-z,relro -Wl,-z,now -pedantic -Wall -Wno-long-long 
> -Wno-overlength-strings -Wno-unused-function -Wshadow 
> -Wdeclaration-after-statement -Wwrite-strings -Wmissing-declarations 
> -Wmissing-prototypes -Wstrict-prototypes -Wunused-value -Wunused-parameter 
> -Wundef -fstack-protector-strong -fwrapv -fno-strict-overflow -Os 
> -fomit-frame-pointer -funroll-loops
> === Tue Mar 12 20:33:39 UTC 2024 === finishing
> === Tue Mar 12 20:33:39 UTC 2024 === checking libs
> === Tue Mar 12 20:33:39 UTC 2024 ===   -lutil ok
> === Tue Mar 12 20:33:39 UTC 2024 ===   -lsocket -lnsl failed
> === Tue Mar 12 20:33:39 UTC 2024 === finishing
> === Tue Mar 12 20:33:39 UTC 2024 === checking $LIBS
> === Tue Mar 12 20:33:39 UTC 2024 === finishing
> === Tue Mar 12 20:33:39 UTC 2024 === building sysdep headers
> === Tue Mar 12 20:33:39 UTC 2024 ===   hasasmvolatilememory.h 
> hasasmvolatilememory.h-yes
> === Tue Mar 12 20:33:39 UTC 2024 ===   hasmlock.h hasmlock.h-yes
> === Tue Mar 12 20:33:39 UTC 2024 ===   haslibutilh.h default.h-no
> === Tue Mar 12 20:33:39 UTC 2024 ===   hasutilh.h default.h-no
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasopenpty.h hasopenpty.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   haslogintty.h haslogintty.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpx.h hasutmpx.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpxupdwtmpx.h default.h-no
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpxsyslen.h default.h-no
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpxaddrv6.h hasutmpxaddrv6.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmp.h hasutmp.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpname.h hasutmpname.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmpuser.h hasutmpuser.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmphost.h hasutmphost.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmptime.h hasutmptime.h-yes
> === Tue Mar 12 20:33:40 UTC 2024 ===   hasutmptv.h hasutmptv.h-yes
> === Tue Mar 12 20:33:41 UTC 2024 ===   hasutmppid.h hasutmppid.h-yes
> === Tue Mar 12 20:33:41 UTC 2024 ===   hasutmptype.h hasutmptype.h-yes
> === Tue Mar 12 20:33:41 UTC 2024 ===   hasutmplogwtmp.h hasutmplogwtmp.h-yes
> 

Bug#1066419: node-node-pty: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-node-pty
Version: 1.0.0+ds1+~6.3.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/pty/src/unix/pty.o
> ../src/unix/pty.cc: In function ‘void pty_after_waitpid(uv_async_t*)’:
> ../src/unix/pty.cc:609:9: warning: ‘void* memset(void*, int, size_t)’ writing 
> to an object of type ‘class Nan::Persistent’ with no trivial 
> copy-assignment [-Wclass-memaccess]
>   609 |   memset(>cb, -1, sizeof(baton->cb));
>   |   ~~^~~
> In file included from ../../../../usr/share/nodejs/nan/nan.h:411,
>  from ../src/unix/pty.cc:20:
> /usr/include/nan_persistent_12_inl.h:12:40: note: ‘class 
> Nan::Persistent’ declared here
>12 | template class Persistent :
>   |^~
> In file included from ../../../../usr/share/nodejs/nan/nan.h:62:
> ../src/unix/pty.cc: At global scope:
> /usr/include/nodejs/src/node.h:1014:7: warning: cast between incompatible 
> function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka 
> ‘void (*)(v8::Local)’} to ‘node::addon_register_func’ {aka ‘void 
> (*)(v8::Local, v8::Local, void*)’} 
> [-Wcast-function-type]
>  1014 |   (node::addon_register_func) (regfunc),  
> \
>   |   ^
> /usr/include/nodejs/src/node.h:1048:3: note: in expansion of macro 
> ‘NODE_MODULE_X’
>  1048 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT 
> (readability/null_usage)
>   |   ^
> ../src/unix/pty.cc:826:1: note: in expansion of macro ‘NODE_MODULE’
>   826 | NODE_MODULE(pty, init)
>   | ^~~
>   SOLINK_MODULE(target) Release/obj.target/pty.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-node-pty_1.0.0+ds1+~6.3.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066417: perdition: FTBFS: perditiondb_nis.h:32:10: fatal error: rpcsvc/ypclnt.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: perdition
Version: 2.2-3.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../.. -I../../../ -I../../../perdition  -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o perditiondb_nis.lo perditiondb_nis.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../ 
> -I../../../perdition -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c perditiondb_nis.c  -fPIC -DPIC -o 
> .libs/perditiondb_nis.o
> In file included from perditiondb_nis.c:32:
> perditiondb_nis.h:32:10: fatal error: rpcsvc/ypclnt.h: No such file or 
> directory
>32 | #include 
>   |  ^
> compilation terminated.
> make[5]: *** [Makefile:499: perditiondb_nis.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/perdition_2.2-3.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066416: granite-7: FTBFS: ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:248:(.text+0x70c): undefined reference to `gtk_calendar_get_year'

2024-03-13 Thread Lucas Nussbaum
Source: granite-7
Version: 7.4.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: 
> lib/libgranite-7.so.7.4.0.p/meson-generated_Widgets_DatePicker.c.o: in 
> function `_granite_date_picker___lambda10_':
> ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:248:(.text+0x70c):
>  undefined reference to `gtk_calendar_get_year'
> /usr/bin/ld: 
> ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:251:(.text+0x71a):
>  undefined reference to `gtk_calendar_get_month'
> /usr/bin/ld: 
> ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:254:(.text+0x727):
>  undefined reference to `gtk_calendar_get_day'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/granite-7_7.4.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066415: node-sqlite3: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-sqlite3
Version: 5.1.5+ds1-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/node_sqlite3/src/backup.o
> gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
> ../src/backup.cc: In static member function ‘static void 
> node_sqlite3::Backup::Work_BeginInitialize(node_sqlite3::Database::Baton*)’:
> ../src/backup.cc:182:9: warning: unused variable ‘status’ [-Wunused-variable]
>   182 | int status = napi_create_async_work(
>   | ^~
> In file included from ../src/backup.cc:4:
> ../src/backup.cc: In static member function ‘static void 
> node_sqlite3::Backup::Work_BeginStep(Baton*)’:
> ../src/macros.h:185:9: warning: unused variable ‘status’ [-Wunused-variable]
>   185 | int status = napi_create_async_work(  
>  \
>   | ^~
> ../src/backup.cc:255:5: note: in expansion of macro ‘BACKUP_BEGIN’
>   255 | BACKUP_BEGIN(Step);
>   | ^~~~
> ../src/backup.cc: In static member function ‘static void 
> node_sqlite3::Backup::Work_BeginFinish(Baton*)’:
> ../src/macros.h:185:9: warning: unused variable ‘status’ [-Wunused-variable]
>   185 | int status = napi_create_async_work(  
>  \
>   | ^~
> ../src/backup.cc:322:5: note: in expansion of macro ‘BACKUP_BEGIN’
>   322 | BACKUP_BEGIN(Finish);
>   | ^~~~
>   CXX(target) Release/obj.target/node_sqlite3/src/database.o
> ../src/database.cc: In static member function ‘static void 
> node_sqlite3::Database::Work_BeginOpen(Baton*)’:
> ../src/database.cc:155:9: warning: unused variable ‘status’ 
> [-Wunused-variable]
>   155 | int status = napi_create_async_work(
>   | ^~
> ../src/database.cc: In static member function ‘static void 
> node_sqlite3::Database::Work_BeginClose(Baton*)’:
> ../src/database.cc:249:9: warning: unused variable ‘status’ 
> [-Wunused-variable]
>   249 | int status = napi_create_async_work(
>   | ^~
> ../src/database.cc: In static member function ‘static void 
> node_sqlite3::Database::Work_BeginExec(Baton*)’:
> ../src/database.cc:593:9: warning: unused variable ‘status’ 
> [-Wunused-variable]
>   593 | int status = napi_create_async_work(
>   | ^~
> ../src/database.cc: In static member function ‘static void 
> node_sqlite3::Database::Work_BeginLoadExtension(Baton*)’:
> ../src/database.cc:702:9: warning: unused variable ‘status’ 
> [-Wunused-variable]
>   702 | int status = napi_create_async_work(
>   | ^~
>   CXX(target) Release/obj.target/node_sqlite3/src/node_sqlite3.o
>   CXX(target) Release/obj.target/node_sqlite3/src/statement.o
> ../src/statement.cc: In static member function ‘static void 
> node_sqlite3::Statement::Work_BeginPrepare(node_sqlite3::Database::Baton*)’:
> ../src/statement.cc:125:9: warning: unused variable ‘status’ 
> [-Wunused-variable]
>   125 | int status = napi_create_async_work(
>   | ^~
> In file included from ../src/statement.cc:5:
> ../src/statement.cc: In static member function ‘static void 
> node_sqlite3::Statement::Work_BeginBind(Baton*)’:
> ../src/macros.h:149:9: warning: unused variable ‘status’ [-Wunused-variable]
>   149 | int status = napi_create_async_work(  
>  \
>   | ^~
> ../src/statement.cc:353:5: note: in expansion of macro ‘STATEMENT_BEGIN’
>   353 | STATEMENT_BEGIN(Bind);
>   | ^~~
> ../src/statement.cc: In static member function ‘static void 
> node_sqlite3::Statement::Work_BeginGet(Baton*)’:
> ../src/macros.h:149:9: warning: unused variable ‘status’ [-Wunused-variable]
>   149 | int status = napi_create_async_work(  
>  \
>   | ^~
> ../src/statement.cc:405:5: note: in expansion of macro ‘STATEMENT_BEGIN’
>   405 | STATEMENT_BEGIN(Get);
>   | ^~~
> ../src/statement.cc: In static member function ‘static void 
> node_sqlite3::Statement::Work_BeginRun(Baton*)’:
> ../src/macros.h:149:9: warning: unused variable ‘status’ [-Wunused-variable]
>   149 | int status = napi_create_async_work(  
>  \
>   | ^~
> ../src/statement.cc:477:5: note: in expansion of macro ‘STATEMENT_BEGIN’
>   477 | STATEMENT_BEGIN(Run);
>   | ^~~
> ../src/statement.cc: In static member function ‘static void 
> node_sqlite3::Statement::Work_BeginAll(Baton*)’:
> ../src/macros.h:149:9: warning: unused variable ‘status’ [-Wunused-variable]
>   149 | int status = napi_create_async_work(  
>  \
>   | ^~
> 

Bug#1066412: hdf-eos5: FTBFS: gcc: error: unrecognized command-line option '-V'

2024-03-13 Thread Lucas Nussbaum
Source: hdf-eos5
Version: 2:2.0-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc version 13.2.0 (Debian 13.2.0-18) 
> ... rest of stderr output deleted ...
> configure:4368: $? = 1
> configure:4357: /usr/bin/h5cc -V >&5
> gcc: error: unrecognized command-line option '-V'
> configure:4368: $? = 1
> configure:4357: /usr/bin/h5cc -qversion >&5
> gcc: error: unrecognized command-line option '-qversion'; did you mean 
> '--version'?
> configure:4368: $? = 1
> configure:4357: /usr/bin/h5cc -version >&5
> gcc: error: unrecognized command-line option '-version'
> configure:4368: $? = 1
> configure:4388: checking whether the C compiler works
> configure:4410: /usr/bin/h5cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -D_HDFEOS5_THREADSAFE -Df2cFortran -Wdate-time -D_FORTIFY_SOURCE=2 
> -Wl,-z,relro -lpthread conftest.c  >&5
> configure:4414: $? = 0
> configure:4464: result: yes
> configure:4467: checking for C compiler default output file name
> configure:4469: result: a.out
> configure:4475: checking for suffix of executables
> configure:4482: /usr/bin/h5cc -o conftest -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -D_HDFEOS5_THREADSAFE -Df2cFortran 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -lpthread conftest.c  >&5
> configure:4486: $? = 0
> configure:4509: result: 
> configure:4531: checking whether we are cross compiling
> configure:4539: /usr/bin/h5cc -o conftest -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -D_HDFEOS5_THREADSAFE -Df2cFortran 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -lpthread conftest.c  >&5
> configure:4543: $? = 0
> configure:4550: ./conftest
> configure:4554: $? = 0
> configure:4569: result: no
> configure:4574: checking for suffix of object files
> configure:4597: /usr/bin/h5cc -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -D_HDFEOS5_THREADSAFE -Df2cFortran -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c 
> >&5
> configure:4601: $? = 0
> configure:4623: result: o
> configure:4627: checking whether the compiler supports GNU C
> configure:4647: /usr/bin/h5cc -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -D_HDFEOS5_THREADSAFE -Df2cFortran -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c 
> >&5
> configure:4647: $? = 0
> configure:4657: result: yes
> configure:4668: checking whether /usr/bin/h5cc accepts -g
> configure:4689: /usr/bin/h5cc -c -g -Wdate-time -D_FORTIFY_SOURCE=2 
> conftest.c >&5
> configure:4689: $? = 0
> configure:4733: result: yes
> configure:4753: checking for /usr/bin/h5cc option to enable C11 features
> configure:4768: /usr/bin/h5cc  -c -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -D_HDFEOS5_THREADSAFE -Df2cFortran 
> -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
> configure:4768: $? = 0
> configure:4786: result: none needed
> configure:4902: checking whether /usr/bin/h5cc understands -c and -o together
> configure:4925: /usr/bin/h5cc -c conftest.c -o conftest2.o
> configure:4928: $? = 0
> configure:4925: /usr/bin/h5cc -c conftest.c -o conftest2.o
> configure:4928: $? = 0
> configure:4940: result: yes
> configure:4959: checking dependency style of /usr/bin/h5cc
> configure:5071: result: none
> configure:5086: checking for a sed that does not truncate output
> configure:5156: result: /usr/bin/sed
> configure:5174: checking for grep that handles long lines and -e
> configure:5238: result: /usr/bin/grep
> configure:5243: checking for egrep
> configure:5311: result: /usr/bin/grep -E
> configure:5316: checking for fgrep
> configure:5384: result: /usr/bin/grep -F
> configure:5420: checking for ld used by /usr/bin/h5cc
> configure:5488: result: /usr/bin/ld
> configure:5495: checking if the linker (/usr/bin/ld) is GNU ld
> configure:5511: result: yes
> configure:5523: checking for BSD- or MS-compatible name lister (nm)
> configure:5578: result: /usr/bin/nm -B
> configure:5718: checking the name lister (/usr/bin/nm -B) interface
> configure:5726: /usr/bin/h5cc -c -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat 

Bug#1066414: pcb-rnd: FTBFS: ./util/bxl2txt/./util/bxl2txt/txt2bxl.c:43: multiple definition of `main'; /usr/lib/libgenht.a(mainsi.o):(.text+0x9d): first defined here

2024-03-13 Thread Lucas Nussbaum
Source: pcb-rnd
Version: 3.1.3-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: txt2bxl.o: in function `main':
> ./util/bxl2txt/./util/bxl2txt/txt2bxl.c:43: multiple definition of `main'; 
> /usr/lib/libgenht.a(mainsi.o):(.text+0x9d): first defined here
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pcb-rnd_3.1.3-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066413: trinity: FTBFS: fds/memfd.c:22:12: error: static declaration of ‘memfd_create’ follows non-static declaration

2024-03-13 Thread Lucas Nussbaum
Source: trinity
Version: 1.9+git20230728.e71872454d26-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 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=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -Wextra -I. -Iinclude/ -include config.h -Wimplicit -D_GNU_SOURCE 
> -D__linux__ -std=gnu11 -Wformat=2 -Winit-self -Wnested-externs -Wpacked 
> -Wshadow -Wswitch-enum -Wundef -Wwrite-strings -Wno-format-nonliteral 
> -Wstrict-prototypes -Wmissing-prototypes -fsigned-char 
> -Wno-missing-field-initializers -Wlogical-op -Wstrict-aliasing=3 -o 
> fds/sockets.o -c fds/sockets.c
> fds/memfd.c:22:12: error: static declaration of ‘memfd_create’ follows 
> non-static declaration
>22 | static int memfd_create(__unused__ const char *uname, __unused__ 
> unsigned int flag)
>   |^~~~
> In file included from /usr/include/x86_64-linux-gnu/bits/mman-linux.h:116,
>  from /usr/include/x86_64-linux-gnu/bits/mman.h:32,
>  from /usr/include/x86_64-linux-gnu/sys/mman.h:41,
>  from fds/memfd.c:8:
> /usr/include/x86_64-linux-gnu/bits/mman-shared.h:51:5: note: previous 
> declaration of ‘memfd_create’ with type ‘int(const char *, unsigned int)’
>51 | int memfd_create (const char *__name, unsigned int __flags) __THROW;
>   | ^~~~
> make[2]: *** [Makefile:113: fds/memfd.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/trinity_1.9+git20230728.e71872454d26-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066407: node-opencv: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-opencv
Version: 7.0.0+git20200316.f0a03a4b-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> cc1plus: note: source object is likely at address zero
>   CXX(target) Release/obj.target/opencv/src/FaceRecognizer.o
> ../src/FaceRecognizer.cc: In static member function ‘static void 
> FaceRecognizerWrap::Init(v8::Local)’:
> ../src/FaceRecognizer.cc:84:14: warning: ignoring return value of 
> ‘v8::Maybe v8::Object::Set(v8::Local, 
> v8::Local, v8::Local)’, declared with attribute 
> ‘warn_unused_result’ [-Wunused-result]
>84 |   target->Set(Nan::GetCurrentContext(), 
> Nan::New("FaceRecognizer").ToLocalChecked(), ctor->GetFunction( 
> Nan::GetCurrentContext() ).ToLocalChecked());
>   |   
> ~~~^~~
> In file included from 
> /usr/include/nodejs/deps/v8/include/v8-array-buffer.h:13,
>  from /usr/include/nodejs/deps/v8/include/v8.h:24,
>  from ../src/OpenCV.h:18,
>  from ../src/FaceRecognizer.cc:1:
> /usr/include/nodejs/deps/v8/include/v8-object.h:244:37: note: declared here
>   244 |   V8_WARN_UNUSED_RESULT Maybe Set(Local context,
>   | ^~~
> ../src/FaceRecognizer.cc: In static member function ‘static 
> Nan::NAN_METHOD_RETURN_TYPE 
> FaceRecognizerWrap::PredictSync(Nan::NAN_METHOD_ARGS_TYPE)’:
> ../src/FaceRecognizer.cc:335:11: warning: ignoring return value of 
> ‘v8::Maybe v8::Object::Set(v8::Local, 
> v8::Local, v8::Local)’, declared with attribute 
> ‘warn_unused_result’ [-Wunused-result]
>   335 |   res->Set(Nan::GetCurrentContext(), Nan::New("id").ToLocalChecked(), 
> Nan::New(predictedLabel));
>   |   
> ^
> /usr/include/nodejs/deps/v8/include/v8-object.h:244:37: note: declared here
>   244 |   V8_WARN_UNUSED_RESULT Maybe Set(Local context,
>   | ^~~
> ../src/FaceRecognizer.cc:336:11: warning: ignoring return value of 
> ‘v8::Maybe v8::Object::Set(v8::Local, 
> v8::Local, v8::Local)’, declared with attribute 
> ‘warn_unused_result’ [-Wunused-result]
>   336 |   res->Set(Nan::GetCurrentContext(), 
> Nan::New("confidence").ToLocalChecked(), Nan::New(confidence));
>   |   
> ^
> /usr/include/nodejs/deps/v8/include/v8-object.h:244:37: note: declared here
>   244 |   V8_WARN_UNUSED_RESULT Maybe Set(Local context,
>   | ^~~
> ../src/FaceRecognizer.cc: In member function ‘virtual void 
> PredictASyncWorker::HandleOKCallback()’:
> ../src/FaceRecognizer.cc:375:13: warning: ignoring return value of 
> ‘v8::Maybe v8::Object::Set(v8::Local, 
> v8::Local, v8::Local)’, declared with attribute 
> ‘warn_unused_result’ [-Wunused-result]
>   375 | res->Set(Nan::GetCurrentContext(), 
> Nan::New("id").ToLocalChecked(), Nan::New(predictedLabel));
>   | 
> ^
> /usr/include/nodejs/deps/v8/include/v8-object.h:244:37: note: declared here
>   244 |   V8_WARN_UNUSED_RESULT Maybe Set(Local context,
>   | ^~~
> ../src/FaceRecognizer.cc:376:13: warning: ignoring return value of 
> ‘v8::Maybe v8::Object::Set(v8::Local, 
> v8::Local, v8::Local)’, declared with attribute 
> ‘warn_unused_result’ [-Wunused-result]
>   376 | res->Set(Nan::GetCurrentContext(), 
> Nan::New("confidence").ToLocalChecked(), Nan::New(confidence));
>   | 
> ^
> /usr/include/nodejs/deps/v8/include/v8-object.h:244:37: note: declared here
>   244 |   V8_WARN_UNUSED_RESULT Maybe Set(Local context,
>   | ^~~
> ../src/FaceRecognizer.cc:383:19: warning: ‘v8::Local 
> Nan::Callback::Call(int, v8::Local*) const’ is deprecated 
> [-Wdeprecated-declarations]
>   383 | callback->Call(1, argv);
>   | ~~^
> In file included from ../src/OpenCV.h:53:
> ../../../../usr/share/nodejs/nan/nan.h:1748:3: note: declared here
>  1748 |   Call(int argc, v8::Local argv[]) const {
>   |   ^~~~
>   CXX(target) Release/obj.target/opencv/src/Features2d.o
>   CXX(target) Release/obj.target/opencv/src/BackgroundSubtractor.o
> ../src/BackgroundSubtractor.cc:11:2: warning: #warning Building with 
> HAVE_OPENCV_BGSEGM [-Wcpp]
>11 | #warning Building with HAVE_OPENCV_BGSEGM
>   |  ^~~
> ../src/BackgroundSubtractor.cc: In static 

Bug#1066410: ncftp: FTBFS: /<>/config.h:174:22: error: two or more data type

2024-03-13 Thread Lucas Nussbaum
Source: ncftp
Version: 2:3.2.6-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>   gcc -D_REENTRANT -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-m
>   ap=/<>=. -fstack-protector-strong -fstack-clash-p
>   rotection -Wformat -Werror=format-security -fcf-protection -DNO_SSLv2 
> -D_FILE
>   _OFFSET_BITS=64 -g -Wall -Wno-format-y2k -DLINUX=61000 -DLINUX_LIBC=5 
> -DHAVE_
>   CONFIG_H -DLINUX=61000 -DLINUX_LIBC=5 -I/<> -I/bu
>   ild/ncftp-TqZz2H/ncftp-3.2.6/libncftp -I/<>/sio -
>   I/<>/Strn -Wdate-time -D_FORTIFY_SOURCE=2 DNSUtil
>   .c -c
>   In file included from syshdrs.h:75,
>from DNSUtil.c:1:
>   /<>/config.h:174:22: error: two or more data type
>   s in declaration specifiers
> 174 | #define sig_atomic_t int
> |  ^~~
> make[2]: *** [Makefile:117: DNSUtil.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/ncftp_3.2.6-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066409: r-cran-v8: FTBFS: ld: cannot find -lv8: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: r-cran-v8
Version: 4.4.1+dfsg-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>  debian/rules binary
> dh binary --buildsystem R
>dh_update_autotools_config -O--buildsystem=R
>dh_autoreconf -O--buildsystem=R
>dh_auto_configure -O--buildsystem=R
>dh_auto_build -O--buildsystem=R
>dh_auto_test -O--buildsystem=R
>create-stamp debian/debhelper-build-stamp
>dh_testroot -O--buildsystem=R
>dh_prep -O--buildsystem=R
>dh_auto_install --destdir=debian/r-cran-v8/ -O--buildsystem=R
> I: R packages needed for DEP8: testthat, knitr, rmarkdown
> I: R Package: V8 Version: 4.4.1
> I: Building using R version 4.3.3-2
> I: R API version: r-api-4.0
> I: Using built-time from d/changelog: Fri, 22 Dec 2023 10:12:23 +0100
>   mkdir -p 
> /<>/r-cran-v8-4.4.1\+dfsg/debian/r-cran-v8/usr/lib/R/site-library
>   R CMD INSTALL -l 
> /<>/r-cran-v8-4.4.1\+dfsg/debian/r-cran-v8/usr/lib/R/site-library 
> --clean . "--built-timestamp='Fri, 22 Dec 2023 10:12:23 +0100'"
> * installing *source* package ‘V8’ ...
> files ‘inst/doc/npm.html’, ‘inst/doc/v8_intro.html’, ‘inst/js/underscore.js’, 
> ‘inst/js/wasm-feature-detect.js’ are missing
> ** using staged installation
> Found C++17 compiler: g++
> Using CXXCPP=g++ -std=gnu++17 -E
> Using PKG_CFLAGS=-I/usr/include/v8 -I/usr/include/v8-3.14
> Using PKG_LIBS=-lv8 -lv8_libplatform
> Running feature test for pointer compression...
> /usr/bin/ld: cannot find -lv8: No such file or directory
> /usr/bin/ld: cannot find -lv8_libplatform: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/r-cran-v8_4.4.1+dfsg-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066408: ncl: FTBFS: ld: cannot find -lncarg_c: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: ncl
Version: 6.6.2.dfsg.1-4.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[4]: Entering directory '/<>/common/src/graphcap'
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check -c 
> capchg.f
> capchg.f:710:72:
> 
>   710 |   10  DFLNAM(II:II) = ' '
>   |   
>  1
> Warning: Fortran 2018 deleted feature: DO termination statement which is not 
> END DO or CONTINUE with label 10 at (1)
> capchg.f:773:72:
> 
>   773 |  60   DFLNAM(II:II) = ' '
>   |   
>  1
> Warning: Fortran 2018 deleted feature: DO termination statement which is not 
> END DO or CONTINUE with label 60 at (1)
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> binput.o binput.f
> binput.f:316:15:
> 
>   315 |   DO  II = 1,DUMSIZ
>   |   
>  2
>   316 | DUMSPC(II) = 0
>   |   1
> Warning: Array reference at (1) out of bounds (327 > 326) in loop beginning 
> at (2)
> binput.f:246:32:
> 
>   226 |   CALL BINWRI(UNIT, LENDEV, DGISTR, IOS, STATUS)
>   |2
> ..
>   246 |   CALL BINWRI(UNIT, LENLIN, PLAVBL, IOS, STATUS)
>   |1
> Warning: Type mismatch between actual argument at (1) and actual argument at 
> (2) (LOGICAL(4)/INTEGER(4)).
> binput.f:298:32:
> 
>   226 |   CALL BINWRI(UNIT, LENDEV, DGISTR, IOS, STATUS)
>   |2
> ..
>   298 |   CALL BINWRI(UNIT, LENBND, PLBTEC, IOS, STATUS)
>   |1
> Warning: Rank mismatch between actual argument at (1) and actual argument at 
> (2) (rank-1 and scalar)
> binput.f:316:72:
> 
>   316 | DUMSPC(II) = 0
>   |   
>  ^
> Warning: iteration 326 invokes undefined behavior 
> [-Waggressive-loop-optimizations]
> binput.f:315:18:
> 
>   315 |   DO  II = 1,DUMSIZ
>   |  ^
> note: within this loop
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> bndcls.o bndcls.f
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check -c 
> capast.f
> capast.f:96:16:
> 
>96 |  4 'Z','[','\\',']','^','_','`','a','b','c','d','e','f','g','h',
>   |1
> Warning: Initialization string at (1) was truncated to fit the variable (1/2)
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> capdat.o capdat.f
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> cappar.o cappar.f
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> dascls.o dascls.f
> f77 -g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection  -fallow-invalid-boz 
> -fallow-argument-mismatch  -fno-second-underscore -fno-range-check  -c -o 
> devcls.o devcls.f
> devcls.f:157:72:
> 
>   157 | DO 10 JJ = 1,4
>   |   
>  1
> Warning: Fortran 2018 deleted feature: Shared DO termination label 10 at (1)
> devcls.f:190:72:
> 
>   190 | DO 20 JJ = 1,4
>   |   
>  1
> Warning: Fortran 2018 deleted feature: Shared DO termination label 20 at (1)
> devcls.f:153:19:
> 
>   145 | CALL GTINT(DCDLLX, 1, DUMMY, IOS, STATUS)
>   |   2
> ..
>   153 | CALL GTINT(HOLDER, DCFTMX*4, DUMMY, IOS, STATUS)
>   |   1
> Warning: Rank mismatch between actual argument at (1) and actual argument at 
> (2) (scalar and 

Bug#1066406: deepin-terminal: FTBFS: ./obj-x86_64-linux-gnu/./src/views/termwidgetpage.cpp:658:(.text+0x1b0b): undefined reference to `QTermWidget::clearSelection()'

2024-03-13 Thread Lucas Nussbaum
Source: deepin-terminal
Version: 5.9.40+dfsg-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: CMakeFiles/deepin-terminal.dir/src/views/termwidgetpage.cpp.o: 
> in function `TermWidgetPage::handleUpdateSearchKeyword(QString const&)':
> ./obj-x86_64-linux-gnu/./src/views/termwidgetpage.cpp:658:(.text+0x1b0b): 
> undefined reference to `QTermWidget::clearSelection()'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/deepin-terminal_5.9.40+dfsg-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066405: node-modern-syslog: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-modern-syslog
Version: 1.2.0-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/core/core.o
> In file included from ../core.cc:1:
> /usr/include/nodejs/src/node.h:1014:7: warning: cast between incompatible 
> function types from ‘void (*)(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE)’ {aka 
> ‘void (*)(v8::Local)’} to ‘node::addon_register_func’ {aka ‘void 
> (*)(v8::Local, v8::Local, void*)’} 
> [-Wcast-function-type]
>  1014 |   (node::addon_register_func) (regfunc),  
> \
>   |   ^
> /usr/include/nodejs/src/node.h:1048:3: note: in expansion of macro 
> ‘NODE_MODULE_X’
>  1048 |   NODE_MODULE_X(modname, regfunc, NULL, 0)  // NOLINT 
> (readability/null_usage)
>   |   ^
> ../core.cc:190:1: note: in expansion of macro ‘NODE_MODULE’
>   190 | NODE_MODULE(core, Init);
>   | ^~~
>   SOLINK_MODULE(target) Release/obj.target/core.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-modern-syslog_1.2.0-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066404: proftpd-dfsg: FTBFS: ld: cannot find -lnsl: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: proftpd-dfsg
Version: 1.3.8.b+dfsg-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -DHAVE_CONFIG_H  -DLINUX  -I.. 
> -I../include -I../include -I/usr/include/mariadb/mysql -I/usr/include/mariadb 
> -I/usr/include/postgresql -I/usr/include/mariadb -I/usr/include/mariadb/mysql 
> -I/usr/include/postgresql -Wdate-time -D_FORTIFY_SOURCE=2 -g2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -fno-omit-frame-pointer 
> -fno-strict-aliasing -Werror=implicit-function-declaration -g -O2 
> -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>/src=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> filter.c
> libtool: link: gcc -shared  .libs/mod_wrap.o   -L/usr/lib/x86_64-linux-gnu/ 
> -L/usr/lib/x86_64-linux-gnu -lidn2 -lsodium -lwrap -lnsl  -Wl,-L../lib 
> -Wl,-L../lib -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,-z -Wl,now  
>  -Wl,-soname -Wl,mod_wrap.so -o .libs/mod_wrap.so
> /usr/bin/ld: cannot find -lnsl: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/proftpd-dfsg_1.3.8.b+dfsg-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066403: rjava: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: rjava
Version: 1.0-11-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -o libjri.so Rengine.o jri.o Rcallbacks.o Rinit.o globals.o rjava.o 
> rjstring.o -Wl,-z,relro -Wl,-z,relro -shared 
> -L/usr/lib/jvm/default-java/lib/server -ljvm -Wl,--export-dynamic -fopenmp 
> -Wl,-z,relro -L/usr/lib/R/lib -lR -lpcre2-8 -llzma -lbz2 -lz -ltirpc -lrt 
> -ldl -lm -licuuc -licui18n 
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rjava_1.0-11-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066402: node-re2: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-re2
Version: 1.19.2+~cs2.13.13-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CXX(target) Release/obj.target/re2/lib/addon.o
>   CXX(target) Release/obj.target/re2/lib/new.o
>   CXX(target) Release/obj.target/re2/lib/exec.o
>   CXX(target) Release/obj.target/re2/lib/test.o
>   CXX(target) Release/obj.target/re2/lib/match.o
>   CXX(target) Release/obj.target/re2/lib/replace.o
>   CXX(target) Release/obj.target/re2/lib/search.o
>   CXX(target) Release/obj.target/re2/lib/split.o
>   CXX(target) Release/obj.target/re2/lib/to_string.o
>   CXX(target) Release/obj.target/re2/lib/accessors.o
>   CXX(target) Release/obj.target/re2/lib/util.o
>   SOLINK_MODULE(target) Release/obj.target/re2.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-re2_1.19.2+~cs2.13.13-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066401: playmidi: FTBFS: io_gtk.c:19:10: fatal error: gtk/gtk.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: playmidi
Version: 2.4debian-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> make[2]: Entering directory '/<>'
> for i in *.c; do cc -E -M -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection
> -I/usr/X11R6/include -DNARROWPROTO -I/usr/local/include  $i; done >.depend
> io_gtk.c:19:10: fatal error: gtk/gtk.h: No such file or directory
>19 | #include 
>   |  ^~~
> compilation terminated.
> io_svgalib.c:17:10: fatal error: vga.h: No such file or directory
>17 | #include 
>   |  ^~~
> compilation terminated.
> rm -f *.o playmidi splaymidi xplaymidi a.out toy seq2mid beat
> make[2]: Leaving directory '/<>'
> 
> Successful.  Trying to make again
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o playmidi.o playmidi.c
> playmidi.c: In function ‘main’:
> playmidi.c:558:17: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   558 | fgets(temp, sizeof(temp), mfd); /* skip 1st line */
>   | ^~
> playmidi.c:559:17: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   559 | fgets(temp, sizeof(temp), mfd);
>   | ^~
> playmidi.c:578:9: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   578 | fread(filebuf, 1, info.st_size, mfd);
>   | ^~~~
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o readmidi.o readmidi.c
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o playevents.o playevents.c
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o patchload.o patchload.c
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o emumidi.o emumidi.c
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection   
> -c io_ncurses.c -o io_ncurses.o
> cc -Wl,-z,relro -o playmidi playmidi.o readmidi.o playevents.o patchload.o 
> emumidi.o io_ncurses.o -L/usr/lib -L/usr/lib64 -lncurses
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -I/usr/X11R6/include -DNARROWPROTO -c io_xaw.c -o io_xaw.o
> cc -Wl,-z,relro -o xplaymidi playmidi.o readmidi.o playevents.o patchload.o 
> emumidi.o io_xaw.o -L/usr/X11R6/lib -L/usr/X11R6/lib64 -lXaw -lXt -lX11
> make[1]: Leaving directory '/<>'
> touch build-stamp
>  fakeroot debian/rules binary
> dh_testdir
> dh_testroot
> dh_clean -k
> dh_clean: warning: Compatibility levels before 10 are deprecated (level 7 in 
> use)
> dh_clean: warning: dh_clean -k is deprecated; use dh_prep instead
> dh_clean: warning: This feature will be removed in compat 12.
> dh_installdirs etc/X11/app-defaults etc/playmidi usr/bin \
>  usr/lib/playmidi usr/share/doc/playmidi/examples \
>  
> dh_installdirs: warning: Compatibility levels before 10 are deprecated (level 
> 7 in use)
> install -m644 XPlaymidi.ad debian/playmidi/etc/X11/app-defaults/XPlaymidi
> install -m644 drums.* std.* debian/playmidi/etc/playmidi
> # compile xplaymidi wrapper
> sh debian/xplaymidi.sh
> debian/xplaymidi.c: In function ‘main’:
> debian/xplaymidi.c:22:3: error: implicit declaration of function ‘execv’ 
> [-Werror=implicit-function-declaration]
>22 |   execv ("/usr/lib/playmidi/xplaymidi", argv);
>   |   ^
> cc1: some warnings being treated as errors
> make: *** [debian/rules:40: install] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/playmidi_2.4debian-13_unstable.log

All bugs 

Bug#1066400: aplus-fsf: FTBFS: getmuser.c:10:10: fatal error: rpcsvc/ypclnt.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: aplus-fsf
Version: 4.22.1-12
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"aplus-fsf\" 
> -DVERSION=\"4.22\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
> -DLT_OBJDIR=\".libs/\" -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 
> -DHAVE_SYS_PARAM_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DRETSIGTYPE=void 
> -DHAVE_STRFTIME=1 -DHAVE_FORK=1 -DHAVE_VFORK=1 -DHAVE_WORKING_VFORK=1 
> -DHAVE_WORKING_FORK=1 -DHAVE_VPRINTF=1 -DHAVE_GETCWD=1 -DHAVE_GETHOSTNAME=1 
> -DHAVE_GETTIMEOFDAY=1 -DHAVE_GETWD=1 -DHAVE_MKTIME=1 -DHAVE_PUTENV=1 
> -DHAVE_REGCOMP=1 -DHAVE_SELECT=1 -DHAVE_SIGACTION=1 -DHAVE_SOCKET=1 
> -DHAVE_STRCSPN=1 -DHAVE_STRDUP=1 -DHAVE_STRERROR=1 -DHAVE_STRSTR=1 
> -DHAVE_STRTOD=1 -DHAVE_STRTOL=1 -DHAVE_STRTOUL=1 -DHAVE_DIRENT_H=1 
> -DSTDC_HEADERS=1 -DHAVE_SYS_WAIT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 
> -DHAVE_MALLOC_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_FILE_H=1 -DHAVE_SYS_IOCTL_H=1 
> -DHAVE_SYS_TIME_H=1 -DHAVE_SYSLOG_H=1 -DHAVE_UNISTD_H=1 -DHAVE_MATH_H=1 
> -DHAVE_FLOAT_H=1 -DHAVE_NEW=1 -DHAVE_IOSTREAM=1 -DHAVE_IOMANIP=1 
> -DHAVE_FSTREAM=1 -DHAVE_SSTREAM=1 -DHAVE_IOSFWD=1 -DHAVE_FPCLASSIFY=1 
> -DHAVE_FINITE=1 -DHAVE_ISINF=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 
> -DHAVE_ST_BLKSIZE=1 -DHAVE_STRUCT_STAT_ST_BLOCKS=1 -DHAVE_ST_BLOCKS=1 
> -DHAVE_STRUCT_STAT_ST_RDEV=1 -DHAVE_ST_RDEV=1 -DTIME_WITH_SYS_TIME=1 
> -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_SOCKLEN_T=1 -I. -I..-g 
> -pipe -std=gnu++98 -O2 -MT hashinsert.lo -MD -MP -MF .deps/hashinsert.Tpo -c 
> -o hashinsert.lo hashinsert.c
> libtool: compile:  gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" 
> -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" 
> -DPACKAGE_URL=\"\" -DPACKAGE=\"aplus-fsf\" -DVERSION=\"4.22\" 
> -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
> -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
> -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" 
> -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_GETPAGESIZE=1 
> -DHAVE_MMAP=1 -DRETSIGTYPE=void -DHAVE_STRFTIME=1 -DHAVE_FORK=1 
> -DHAVE_VFORK=1 -DHAVE_WORKING_VFORK=1 -DHAVE_WORKING_FORK=1 -DHAVE_VPRINTF=1 
> -DHAVE_GETCWD=1 -DHAVE_GETHOSTNAME=1 -DHAVE_GETTIMEOFDAY=1 -DHAVE_GETWD=1 
> -DHAVE_MKTIME=1 -DHAVE_PUTENV=1 -DHAVE_REGCOMP=1 -DHAVE_SELECT=1 
> -DHAVE_SIGACTION=1 -DHAVE_SOCKET=1 -DHAVE_STRCSPN=1 -DHAVE_STRDUP=1 
> -DHAVE_STRERROR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOD=1 -DHAVE_STRTOL=1 
> -DHAVE_STRTOUL=1 -DHAVE_DIRENT_H=1 -DSTDC_HEADERS=1 -DHAVE_SYS_WAIT_H=1 
> -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 -DHAVE_MALLOC_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_SYS_FILE_H=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_TIME_H=1 
> -DHAVE_SYSLOG_H=1 -DHAVE_UNISTD_H=1 -DHAVE_MATH_H=1 -DHAVE_FLOAT_H=1 
> -DHAVE_NEW=1 -DHAVE_IOSTREAM=1 -DHAVE_IOMANIP=1 -DHAVE_FSTREAM=1 
> -DHAVE_SSTREAM=1 -DHAVE_IOSFWD=1 -DHAVE_FPCLASSIFY=1 -DHAVE_FINITE=1 
> -DHAVE_ISINF=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 
> -DHAVE_STRUCT_STAT_ST_BLOCKS=1 -DHAVE_ST_BLOCKS=1 
> -DHAVE_STRUCT_STAT_ST_RDEV=1 -DHAVE_ST_RDEV=1 -DTIME_WITH_SYS_TIME=1 
> -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_SOCKLEN_T=1 -I. -I.. -g 
> -pipe -std=gnu++98 -O2 -MT fletchsum.lo -MD -MP -MF .deps/fletchsum.Tpo -c 
> fletchsum.c -o fletchsum.o >/dev/null 2>&1
> libtool: compile:  gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" 
> -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" 
> -DPACKAGE_URL=\"\" -DPACKAGE=\"aplus-fsf\" -DVERSION=\"4.22\" 
> -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
> -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
> -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" 
> -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_GETPAGESIZE=1 
> -DHAVE_MMAP=1 -DRETSIGTYPE=void -DHAVE_STRFTIME=1 -DHAVE_FORK=1 
> -DHAVE_VFORK=1 -DHAVE_WORKING_VFORK=1 -DHAVE_WORKING_FORK=1 -DHAVE_VPRINTF=1 
> -DHAVE_GETCWD=1 -DHAVE_GETHOSTNAME=1 -DHAVE_GETTIMEOFDAY=1 -DHAVE_GETWD=1 
> -DHAVE_MKTIME=1 -DHAVE_PUTENV=1 -DHAVE_REGCOMP=1 -DHAVE_SELECT=1 
> -DHAVE_SIGACTION=1 -DHAVE_SOCKET=1 -DHAVE_STRCSPN=1 -DHAVE_STRDUP=1 
> -DHAVE_STRERROR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOD=1 -DHAVE_STRTOL=1 
> -DHAVE_STRTOUL=1 -DHAVE_DIRENT_H=1 -DSTDC_HEADERS=1 -DHAVE_SYS_WAIT_H=1 
> -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 -DHAVE_MALLOC_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_SYS_FILE_H=1 

Bug#1066399: node-nan: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-nan
Version: 2.18.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
>   g++ -o Release/obj.target/addon.node -shared -pthread -rdynamic -m64 
> -Wl,-z,relro -Wl,-soname=addon.node -Wl,--start-group 
> Release/obj.target/addon/addon.o Release/obj.target/addon/pi_est.o 
> Release/obj.target/addon/sync.o Release/obj.target/addon/async.o 
> -Wl,--end-group -lnode
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-nan_2.18.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066398: xwayland: FTBFS: ./obj-x86_64-linux-gnu/meson-private/tmpz22kr2qg/./obj-x86_64-linux-gnu/meson-private/tmpz22kr2qg/testfile.c:17:(.text+0x9): undefined reference to `SHA1Init'

2024-03-13 Thread Lucas Nussbaum
Source: xwayland
Version: 2:23.2.4-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccL8lXZd.o: in function `main':
> ./obj-x86_64-linux-gnu/meson-private/tmpz22kr2qg/./obj-x86_64-linux-gnu/meson-private/tmpz22kr2qg/testfile.c:17:(.text+0x9):
>  undefined reference to `SHA1Init'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/xwayland_23.2.4-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066397: lgeneral: FTBFS: ../config.h:566:12: fatal error: direct.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: lgeneral
Version: 1.4.4-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -DDATADIR=\"/usr/share/games\" -DPREFIX=\"/usr\" -I. -I.. 
>   -I.. -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -std=gnu89 -O0 -g -c -o 
> portability.o portability.c
> In file included from localize.h:31,
>  from localize.c:27:
> ../config.h:566:12: fatal error: direct.h: No such file or directory
>   566 | #  include 
>   |^~
> In file included from portability.c:27:
> ../config.h:566:12: fatal error: direct.h: No such file or directory
>   566 | #  include 
>   |^~
> compilation terminated.
> compilation terminated.
> make[3]: *** [Makefile:418: portability.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/lgeneral_1.4.4-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066396: lftp: FTBFS: ./config.h:2540:11: fatal error: trio.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: lftp
Version: 4.9.2-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> /bin/bash ../libtool --silent  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H 
> -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -g -Wall -Wall -MT argmatch.lo -MD 
> -MP -MF $depbase.Tpo -c -o argmatch.lo argmatch.c &&\
> mv -f $depbase.Tpo $depbase.Plo
> In file included from argmatch.c:22:
> ./config.h:2540:11: fatal error: trio.h: No such file or directory
>  2540 | # include "trio.h"
>   |   ^~~~
> compilation terminated.
> make[5]: *** [Makefile:2321: argmatch.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/lftp_4.9.2-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066395: python-hdf4: FTBFS: ld: cannot find -lmfhdf: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: python-hdf4
Version: 0.11.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

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


Relevant part (hopefully):
> x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro 
> -Wl,-z,now -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 
> build/temp.linux-x86_64-cpython-312/pyhdf/hdfext_wrap.o -L -L/usr/lib 
> -L/usr/local/lib -L/lib -L/usr/lib/x86_64-linux-gnu -lmfhdf -ldf -ljpeg -lz 
> -o 
> build/lib.linux-x86_64-cpython-312/pyhdf/_hdfext.cpython-312-x86_64-linux-gnu.so
> /usr/bin/ld: cannot find -lmfhdf: No such file or directory
> /usr/bin/ld: cannot find -ldf: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/python-hdf4_0.11.3-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066393: gnome-shell-extension-manager: FTBFS: ../src/main.c:168:9: error: implicit declaration of function ‘waitpid’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: gnome-shell-extension-manager
Version: 0.4.3-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -Isrc/extension-manager.p -Isrc -I../src -I/usr/include/gtk-4.0 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/graphene-1.0 -I/usr/lib/x86_64-linux-gnu/graphene-1.0/include 
> -I/usr/include/libadwaita-1 -I/usr/include/appstream 
> -I/usr/include/gio-unix-2.0 -I/usr/include/json-glib-1.0 
> -I/usr/include/libsoup-3.0 -I/usr/include/sysprof-6 
> -I/usr/include/text-engine -I/<>/obj-x86_64-linux-gnu 
> -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra 
> -std=gnu11 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -mfpmath=sse -msse -msse2 
> -mfpmath=sse -msse -msse2 -MD -MQ src/extension-manager.p/main.c.o -MF 
> src/extension-manager.p/main.c.o.d -o src/extension-manager.p/main.c.o -c 
> ../src/main.c
> ../src/main.c: In function ‘main’:
> ../src/main.c:168:9: error: implicit declaration of function ‘waitpid’ 
> [-Werror=implicit-function-declaration]
>   168 | waitpid (pid, 0, 0);
>   | ^~~
> ../src/main.c: In function ‘handler’:
> ../src/main.c:48:9: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>48 | write (pipe_fd[1], backtrace, strlen (backtrace));
>   | ^
> cc1: some warnings being treated as errors
> [42/69] cc -Isrc/extension-manager.p -Isrc -I../src -I/usr/include/gtk-4.0 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/graphene-1.0 -I/usr/lib/x86_64-linux-gnu/graphene-1.0/include 
> -I/usr/include/libadwaita-1 -I/usr/include/appstream 
> -I/usr/include/gio-unix-2.0 -I/usr/include/json-glib-1.0 
> -I/usr/include/libsoup-3.0 -I/usr/include/sysprof-6 
> -I/usr/include/text-engine -I/<>/obj-x86_64-linux-gnu 
> -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra 
> -std=gnu11 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -pthread -mfpmath=sse -msse -msse2 
> -mfpmath=sse -msse -msse2 -MD -MQ src/extension-manager.p/exm-application.c.o 
> -MF src/extension-manager.p/exm-application.c.o.d -o 
> src/extension-manager.p/exm-application.c.o -c ../src/exm-application.c
> ../src/exm-application.c: In function ‘exm_application_finalize’:
> ../src/exm-application.c:48:21: warning: unused variable ‘self’ 
> [-Wunused-variable]
>48 | ExmApplication *self = (ExmApplication *)object;
>   | ^~~~
> ../src/exm-application.c: In function ‘exm_application_open’:
> ../src/exm-application.c:101:38: warning: unused parameter ‘hint’ 
> [-Wunused-parameter]
>   101 |   const gchar   *hint)
>   |   ~~~^~~~
> ../src/exm-application.c: In function ‘exm_application_show_about’:
> ../src/exm-application.c:157:44: warning: unused parameter ‘action’ 
> [-Wunused-parameter]
>   157 | exm_application_show_about (GSimpleAction *action,
>   | ~~~^~
> ../src/exm-application.c:158:44: warning: unused parameter ‘parameter’ 
> [-Wunused-parameter]
>   158 | GVariant  *parameter,
>   | ~~~^
> [43/69] cc -Isrc/extension-manager.p -Isrc -I../src -I/usr/include/gtk-4.0 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> 

Bug#1066392: gtk2-engines-murrine: FTBFS: ./src/murrine_style.c:133:30: error: implicit declaration of function ‘murrine_widget_is_ltr’; did you mean ‘murrine_widget_is_rgba’? [-Werror=implicit-functi

2024-03-13 Thread Lucas Nussbaum
Source: gtk2-engines-murrine
Version: 0.98.2-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I./src -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -I/usr/include/pixman-1   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o murrine_draw_rgba.lo `test -f 
> './src/murrine_draw_rgba.c' || echo './'`./src/murrine_draw_rgba.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I./src -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 
> -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi 
> -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread -I/usr/include/pixman-1 -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ./src/support.c  -fPIC -DPIC -o 
> .libs/support.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I./src -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 
> -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi 
> -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread -I/usr/include/pixman-1 -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ./src/murrine_rc_style.c  -fPIC 
> -DPIC -o .libs/murrine_rc_style.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I./src -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 
> -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi 
> -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread -I/usr/include/pixman-1 -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ./src/murrine_style.c  -fPIC -DPIC 
> -o .libs/murrine_style.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I./src -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 
> -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi 
> -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread -I/usr/include/pixman-1 -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ./src/murrine_draw_rgba.c  -fPIC 
> -DPIC -o .libs/murrine_draw_rgba.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I./src -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 

Bug#1066391: glide: FTBFS: linhwc.c:844:3: error: implicit declaration of function ‘_grImportFifo’; did you mean ‘_grDRIImportFifo’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: glide
Version: 2002.04.10ds1-21
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I/<>/glide3x/h3/minihwc -I../../swlibs/include  -DX11
> -I/<>/glide3x/cinit -I/<>/glide3x/h3/glide3/src 
> -I/<>/glide3x/h3/incsrc -I/<>/glide3x/h3/minihwc  
> -I. -I/<>/glide3x/swlibs/fxmemmap 
> -I/<>/glide3x/swlibs/fxmisc 
> -I/<>/glide3x/swlibs/newpci/pcilib 
> -I/<>/glide3x/swlibs/texus2/lib -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -fomit-frame-pointer -fexpensive-optimizations -ffast-math -DBIG_OPT 
> -MT linhwc.lo -MD -MP -MF .deps/linhwc.Tpo -c -o linhwc.lo linhwc.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. 
> -I/<>/glide3x/h3/minihwc -I../../swlibs/include -DX11 
> -I/<>/glide3x/cinit -I/<>/glide3x/h3/glide3/src 
> -I/<>/glide3x/h3/incsrc -I/<>/glide3x/h3/minihwc 
> -I. -I/<>/glide3x/swlibs/fxmemmap 
> -I/<>/glide3x/swlibs/fxmisc 
> -I/<>/glide3x/swlibs/newpci/pcilib 
> -I/<>/glide3x/swlibs/texus2/lib -Wdate-time -D_FORTIFY_SOURCE=2 
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -fomit-frame-pointer -fexpensive-optimizations -ffast-math -DBIG_OPT 
> -MT linhwc.lo -MD -MP -MF .deps/linhwc.Tpo -c linhwc.c  -fPIC -DPIC -o 
> .libs/linhwc.o
> linhwc.c: In function ‘hwcInitVideo’:
> linhwc.c:435:9: warning: variable ‘stride’ set but not used 
> [-Wunused-but-set-variable]
>   435 |   FxU32 stride, dramInit1, miscInit0;
>   | ^~
> linhwc.c: In function ‘grDRIImportFifo’:
> linhwc.c:844:3: error: implicit declaration of function ‘_grImportFifo’; did 
> you mean ‘_grDRIImportFifo’? [-Werror=implicit-function-declaration]
>   844 |   _grImportFifo(fifoPtr, fifoRead);
>   |   ^
>   |   _grDRIImportFifo
> linhwc.c: In function ‘grDRIInvalidateAll’:
> linhwc.c:848:3: error: implicit declaration of function ‘_grInvalidateAll’; 
> did you mean ‘_grDRIInvalidateAll’? [-Werror=implicit-function-declaration]
>   848 |   _grInvalidateAll();
>   |   ^~~~
>   |   _grDRIInvalidateAll
> linhwc.c: In function ‘grDRIResetSAREA’:
> linhwc.c:853:3: error: implicit declaration of function ‘_grExportFifo’; did 
> you mean ‘_grDRIExportFifo’? [-Werror=implicit-function-declaration]
>   853 |   _grExportFifo((FxU32*)driInfo.fifoPtr, (FxU32*)driInfo.fifoRead);
>   |   ^
>   |   _grDRIExportFifo
> linhwc.c: At top level:
> linhwc.c:588:1: warning: ‘calculateLfbStride’ defined but not used 
> [-Wunused-function]
>   588 | calculateLfbStride(FxU32 screenWidth)
>   | ^~
> linhwc.c:183:13: warning: ‘deleteEnvData’ defined but not used 
> [-Wunused-function]
>   183 | static void deleteEnvData() {
>   | ^
> linhwc.c:139:1: warning: ‘pow2Round’ defined but not used [-Wunused-function]
>   139 | pow2Round(FxU32 val, FxU32 pow2Const)
>   | ^
> cc1: some warnings being treated as errors
> make[4]: *** [makefile.autoconf:404: linhwc.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/glide_2002.04.10ds1-21_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066390: gravitywars: FTBFS: misc.c:6:9: error: implicit declaration of function ‘keyboard_update’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: gravitywars
Version: 1.102-35
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DUSE_SDL -DUSE_JOYSTICK `pkg-config sdl --cflags` -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o blocks.o blocks.c
> misc.c: In function ‘waitanykey’:
> misc.c:6:9: error: implicit declaration of function ‘keyboard_update’ 
> [-Werror=implicit-function-declaration]
> 6 |   while(keyboard_update())
>   | ^~~
> misc.c:7:5: error: implicit declaration of function ‘vga_waitretrace’ 
> [-Werror=implicit-function-declaration]
> 7 | vga_waitretrace();
>   | ^~~
> misc.c: In function ‘doPanic’:
> misc.c:18:3: error: implicit declaration of function ‘printf’ 
> [-Werror=implicit-function-declaration]
>18 |   printf("--\n"
>   |   ^~
> misc.c:1:1: note: include ‘’ or provide a declaration of ‘printf’
>   +++ |+#include 
> 1 | /* GravityWars 1.1,  (C) Sami Niemi -95 */
> misc.c:18:3: warning: incompatible implicit declaration of built-in function 
> ‘printf’ [-Wbuiltin-declaration-mismatch]
>18 |   printf("--\n"
>   |   ^~
> misc.c:18:3: note: include ‘’ or provide a declaration of ‘printf’
> misc.c:21:3: error: implicit declaration of function ‘keyboard_close’ 
> [-Werror=implicit-function-declaration]
>21 |   keyboard_close();
>   |   ^~
> misc.c:22:3: error: implicit declaration of function ‘mouse_close’ 
> [-Werror=implicit-function-declaration]
>22 |   mouse_close();
>   |   ^~~
> misc.c:23:3: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>23 |   exit(1);
>   |   ^~~~
> misc.c:1:1: note: include ‘’ or provide a declaration of ‘exit’
>   +++ |+#include 
> 1 | /* GravityWars 1.1,  (C) Sami Niemi -95 */
> misc.c:23:3: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>23 |   exit(1);
>   |   ^~~~
> misc.c:23:3: note: include ‘’ or provide a declaration of ‘exit’
> hole.c: In function ‘OLDmakehole’:
> hole.c:30:3: error: implicit declaration of function ‘vga_setpage’ 
> [-Werror=implicit-function-declaration]
>30 |   vga_setpage(page);
>   |   ^~~
> hole.c: In function ‘makehole’:
> hole.c:68:3: error: implicit declaration of function ‘getbox’ 
> [-Werror=implicit-function-declaration]
>68 |   getbox(x,y,tmpmix);
>   |   ^~
> hole.c:80:3: error: implicit declaration of function ‘changeblocks’ 
> [-Werror=implicit-function-declaration]
>80 |   changeblocks(x,y,tmpmix);
>   |   ^~~~
> pixel.c: In function ‘setpixel’:
> pixel.c:11:3: error: implicit declaration of function ‘vga_setpage’ 
> [-Werror=implicit-function-declaration]
>11 |   vga_setpage(adr >> 16);
>   |   ^~~
> bullet.c: In function ‘setbullet’:
> bullet.c:17:3: error: implicit declaration of function ‘vga_setpage’ 
> [-Werror=implicit-function-declaration]
>17 |   vga_setpage(page);
>   |   ^~~
> cc1: some warnings being treated as errors
> make[2]: *** [: misc.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/gravitywars_1.102-35_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066388: dvbstream: FTBFS: mpegtools/ringbuffy.c:62:17: error: implicit declaration of function ‘memcpy’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dvbstream
Version: 0.6+cvs20090621-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -I ../DVB/include -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -Wall -O2 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -o ts_filter 
> ts_filter.c
> mpegtools/ringbuffy.c: In function ‘ring_write’:
> mpegtools/ringbuffy.c:62:17: error: implicit declaration of function ‘memcpy’ 
> [-Werror=implicit-function-declaration]
>62 | memcpy (rbuf->buffy+pos, data, rest);
>   | ^~
> mpegtools/ringbuffy.c:22:1: note: include ‘’ or provide a 
> declaration of ‘memcpy’
>21 | #include "ringbuffy.h"
>   +++ |+#include 
>22 | 
> mpegtools/ringbuffy.c:62:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>62 | memcpy (rbuf->buffy+pos, data, rest);
>   | ^~
> mpegtools/ringbuffy.c:62:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c:67:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>67 | memcpy (rbuf->buffy+pos, data, count);
>   | ^~
> mpegtools/ringbuffy.c:67:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c: In function ‘ring_peek’:
> mpegtools/ringbuffy.c:92:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>92 | memcpy(data, rbuf->buffy+pos, count);
>   | ^~
> mpegtools/ringbuffy.c:92:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c:94:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>94 | memcpy(data, rbuf->buffy+pos, rest);
>   | ^~
> mpegtools/ringbuffy.c:94:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c: In function ‘ring_read’:
> mpegtools/ringbuffy.c:117:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>   117 | memcpy(data, rbuf->buffy+pos, count);
>   | ^~
> mpegtools/ringbuffy.c:117:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c:120:17: warning: incompatible implicit declaration of 
> built-in function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
>   120 | memcpy(data, rbuf->buffy+pos, rest);
>   | ^~
> mpegtools/ringbuffy.c:120:17: note: include ‘’ or provide a 
> declaration of ‘memcpy’
> mpegtools/ringbuffy.c: In function ‘ring_rest’:
> mpegtools/ringbuffy.c:193:30: warning: variable ‘rest’ set but not used 
> [-Wunused-but-set-variable]
>   193 | int diff, free, pos, rest;
>   |  ^~~~
> ts_filter.c: In function ‘main’:
> ts_filter.c:37:7: warning: statement with no effect [-Wunused-value]
>37 |   exit;
>   |   ^~~~
> ts_filter.c:52:9: warning: statement with no effect [-Wunused-value]
>52 | exit;
>   | ^~~~
> mpegtools/remux.c: In function ‘write_video_pes’:
> mpegtools/remux.c:748:18: warning: variable ‘dts’ set but not used 
> [-Wunused-but-set-variable]
>   748 | uint32_t dts = 0;
>   |  ^~~
> In file included from tune.h:7,
>  from tune.c:36:
> dvb_defaults.h:98:2: warning: #warning No DVB-T country defined in 
> dvb_defaults.h [-Wcpp]
>98 | #warning No DVB-T country defined in dvb_defaults.h
>   |  ^~~
> dvb_defaults.h:99:2: warning: #warning defaulting to UK [-Wcpp]
>99 | #warning defaulting to UK
>   |  ^~~
> dvb_defaults.h:100:2: warning: #warning Ignore this if using Satellite or 
> Cable [-Wcpp]
>   100 | #warning Ignore this if using Satellite or Cable
>   |  ^~~
> tune.c: In function ‘tune_it’:
> tune.c:253:96: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 8 has type ‘long unsigned int’ [-Wformat=]
>   253 |   fprintf(stderr,"tuning DVB-S to Freq: %u, Pol:%c Srate=%d, 
> 22kHz tone=%s, LNB: %d, SLOF %d, LOF1: %d, LOF2: %d\n",
>   | 

Bug#1066389: db1-compat: FTBFS: db_dump185/db_dump185.c:190:22: error: implicit declaration of function ‘getopt’; did you mean ‘getsubopt’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: db1-compat
Version: 2.1.3-24
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wl,-z,relro \
>   -o db_dump185/db_dump185 db_dump185/db_dump185.c libdb1.so.2
> db_dump185/db_dump185.c: In function ‘main’:
> db_dump185/db_dump185.c:190:22: error: implicit declaration of function 
> ‘getopt’; did you mean ‘getsubopt’? [-Werror=implicit-function-declaration]
>   190 | while ((ch = getopt(argc, argv, "f:p")) != EOF)
>   |  ^~
>   |  getsubopt
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:40: db_dump185/db_dump185] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/db1-compat_2.1.3-24_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066387: gkermit: FTBFS: gkermit.c:350:7: error: implicit declaration of function ‘sleep’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: gkermit
Version: 2.01-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -c gproto.c
> gkermit.c: In function ‘errpkt’:
> gkermit.c:350:7: error: implicit declaration of function ‘sleep’ 
> [-Werror=implicit-function-declaration]
>   350 |   sleep(1); /* Time to soak up incoming 
> junk. */
>   |   ^
> gunixio.c: In function ‘sysinit’:
> gunixio.c:256:19: warning: passing argument 2 of ‘signal’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   256 | signal(SIGHUP,doexit);  /* Go here on hangup */
>   |   ^~
>   |   |
>   |   int (*)(int)
> In file included from gunixio.c:83:
> /usr/include/signal.h:88:57: note: expected ‘__sighandler_t’ {aka ‘void 
> (*)(int)’} but argument is of type ‘int (*)(int)’
>88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
>   |  ~~~^
> gunixio.c: In function ‘ttopen’:
> gunixio.c:358:23: warning: passing argument 2 of ‘signal’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   358 | signal(SIGINT,doexit);
>   |   ^~
>   |   |
>   |   int (*)(int)
> /usr/include/signal.h:88:57: note: expected ‘__sighandler_t’ {aka ‘void 
> (*)(int)’} but argument is of type ‘int (*)(int)’
>88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
>   |  ~~~^
> gunixio.c:361:24: warning: passing argument 2 of ‘signal’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   361 | signal(SIGTSTP,doexit);
>   |^~
>   ||
>   |int (*)(int)
> /usr/include/signal.h:88:57: note: expected ‘__sighandler_t’ {aka ‘void 
> (*)(int)’} but argument is of type ‘int (*)(int)’
>88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
>   |  ~~~^
> gunixio.c:364:24: warning: passing argument 2 of ‘signal’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   364 | signal(SIGQUIT,doexit);
>   |^~
>   ||
>   |int (*)(int)
> /usr/include/signal.h:88:57: note: expected ‘__sighandler_t’ {aka ‘void 
> (*)(int)’} but argument is of type ‘int (*)(int)’
>88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
>   |  ~~~^
> gunixio.c:395:26: error: implicit declaration of function ‘dup2’ 
> [-Werror=implicit-function-declaration]
>   395 | else if (dup2(ofd, 1) == -1)
>   |  ^~~~
> gunixio.c:398:19: error: implicit declaration of function ‘close’; did you 
> mean ‘pclose’? [-Werror=implicit-function-declaration]
>   398 |   close(ofd);
>   |   ^
>   |   pclose
> gunixio.c: In function ‘ttres’:
> gunixio.c:543:19: error: implicit declaration of function ‘write’; did you 
> mean ‘fwrite’? [-Werror=implicit-function-declaration]
>   543 | dummy = (int) write(1,"\015\012",2);
>   |   ^
>   |   fwrite
> gunixio.c: In function ‘ttchk’:
> gunixio.c:553:13: error: implicit declaration of function ‘read’; did you 
> mean ‘fread’? [-Werror=implicit-function-declaration]
>   553 | x = read(0,[tlast],TINBUFSIZ-tlast);
>   | ^~~~
>   | fread
> gunixio.c: In function ‘ttinl’:
> gunixio.c:634:24: warning: passing argument 2 of ‘signal’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   634 | signal(SIGALRM,timerh); /* Enable timer interrupt */
>   |^~
>   ||
>   |int (*)()
> /usr/include/signal.h:88:57: note: expected ‘__sighandler_t’ {aka ‘void 
> (*)(int)’} but argument is of type ‘int (*)()’
>88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler)
>   |

Bug#1066384: bluefish: FTBFS: bookmark.c:1162:16: error: implicit declaration of function ‘bmark_margin_get_initial_bookmark’; did you mean ‘bmark_margin_get_next_bookmark’? [-Werror=implicit-function

2024-03-13 Thread Lucas Nussbaum
Source: bluefish
Version: 2.2.14-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" 
> -DPKGDATADIR=\"/usr/share/bluefish\" 
> -DPKGLIBDIR=\"/usr/lib/x86_64-linux-gnu/bluefish\"  -I.   -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -g -Wall -pipe -I/usr/include/python3.11 -I/usr/include/python3.11 
> -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders 
> -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 
> -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 
> -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/libxml2 
> -I/usr/include/enchant-2 -pthread   -c -o compatibility.o compatibility.c
> bftextview2_scanner.c: In function ‘bftextview2_run_scanner’:
> bftextview2_scanner.c:2162:50: warning: ‘context’ may be used uninitialized 
> [-Wmaybe-uninitialized]
>  2162 | scanning.context = found_match(btv, 
> , );
>   | 
> ~^
> bftextview2_scanner.c:1713:30: note: ‘context’ was declared here
>  1713 | gint context;
>   |  ^~~
> bookmark.c: In function ‘bmark_add_rename_dialog’:
> bookmark.c:563:73: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   563 |   
>   GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
>   |   
>   ^~~~
> bookmark.c:564:9: warning: ‘gtk_button_new_from_stock’ is deprecated: Use 
> 'gtk_button_new_with_label' instead [-Wdeprecated-declarations]
>   564 | button = gtk_button_new_from_stock(GTK_STOCK_OK);
>   | ^~
> In file included from /usr/include/gtk-3.0/gtk/gtk.h:54,
>  from bookmark.c:25:
> /usr/include/gtk-3.0/gtk/gtkbutton.h:103:16: note: declared here
>   103 | GtkWidget* gtk_button_new_from_stock(const gchar
> *stock_id);
>   |^
> bookmark.c:564:9: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   564 | button = gtk_button_new_from_stock(GTK_STOCK_OK);
>   | ^~
> bookmark.c:569:9: warning: ‘gtk_alignment_new’ is deprecated 
> [-Wdeprecated-declarations]
>   569 | align = gtk_alignment_new(0, 0, 1, 1);
>   | ^
> In file included from /usr/include/gtk-3.0/gtk/gtk.h:255:
> /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h:79:12: note: declared here
>79 | GtkWidget* gtk_alignment_new(gfloat xalign,
>   |^
> bookmark.c:570:9: warning: ‘gtk_alignment_set_padding’ is deprecated 
> [-Wdeprecated-declarations]
>   570 | gtk_alignment_set_padding(GTK_ALIGNMENT(align), 12, 12, 6, 6);
>   | ^
> /usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h:91:12: note: declared here
>91 | void   gtk_alignment_set_padding (GtkAlignment  *alignment,
>   |^
> bookmark.c: In function ‘popup_menu_default_permanent’:
> bookmark.c:768:9: warning: ‘gtk_toggle_action_get_active’ is deprecated 
> [-Wdeprecated-declarations]
>   768 | main_v->globses.bookmarks_default_store = 
> gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(action));
>   | ^~
> In file included from /usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h:36,
>  from /usr/include/gtk-3.0/gtk/gtk.h:272:
> /usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h:85:18: note: declared 
> here
>85 | gboolean gtk_toggle_action_get_active(GtkToggleAction 
> *action);
>   |  ^~~~
> bookmark.c: In function ‘popup_menu_delete’:
> bookmark.c:778:9: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   778 | const gchar 

Bug#1066386: examl: FTBFS: quartets.c:393:31: error: implicit declaration of function ‘basename’; did you mean ‘rename’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: examl
Version: 3.0.22-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[2]: Entering directory '/<>/examl'
> rm -f *.o examl-avx2
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o axml.o axml.c
> In function ‘initializePartitions’,
> inlined from ‘initializeTree’ at axml.c:2217:3,
> inlined from ‘main’ at axml.c:2631:5:
> axml.c:2121:40: warning: argument 1 range [18446744071562067968, 
> 18446744073709551615] exceeds maximum object size 9223372036854775807 
> [-Walloc-size-larger-than=]
>  2121 |   *modelWeights = (unsigned long*) calloc(tr->NumberOfModels, 
> sizeof(unsigned long));
>   |
> ^
> In file included from axml.c:44:
> /usr/include/stdlib.h: In function ‘main’:
> /usr/include/stdlib.h:556:14: note: in a call to allocation function ‘calloc’ 
> declared here
>   556 | extern void *calloc (size_t __nmemb, size_t __size)
>   |  ^~
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o optimizeModel.o optimizeModel.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o trash.o trash.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o searchAlgo.o searchAlgo.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o topologies.o topologies.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o treeIO.o treeIO.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -D_OPTIMIZED_FUNCTIONS 
> -D_GNU_SOURCE -fomit-frame-pointer -funroll-loops -D_USE_ALLREDUCE  -O1 
> -Wdate-time -D_FORTIFY_SOURCE=2 -c -o models.o models.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o evaluatePartialGenericSpecial.o 
> evaluatePartialGenericSpecial.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o evaluateGenericSpecial.o evaluateGenericSpecial.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o newviewGenericSpecial.o newviewGenericSpecial.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fopenmp-simd -O3 -DSIMDE_ENABLE_OPENMP -mavx2 -Wdate-time 
> -D_FORTIFY_SOURCE=2  -c -o makenewzGenericSpecial.o makenewzGenericSpecial.c
> mpicc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat 

Bug#1066385: file-kanji: FTBFS: file2.c:52:9: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: file-kanji
Version: 1.1-20
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o file2.o file2.c
> file2.c:44:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>44 | main(argc,argv)
>   | ^~~~
> file2.c: In function ‘main’:
> file2.c:52:9: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>52 | exit(1);
>   | ^~~~
> file2.c:17:1: note: include ‘’ or provide a declaration of ‘exit’
>16 | #include 
>   +++ |+#include 
>17 | 
> file2.c:52:9: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>52 | exit(1);
>   | ^~~~
> file2.c:52:9: note: include ‘’ or provide a declaration of ‘exit’
> file2.c:55:15: error: implicit declaration of function ‘check’ 
> [-Werror=implicit-function-declaration]
>55 | (void)check(argv[i]);
>   |   ^
> file2.c: In function ‘check’:
> file2.c:85:16: error: implicit declaration of function ‘check_detail’ 
> [-Werror=implicit-function-declaration]
>85 | kind = check_detail(buff, n);
>   |^~~~
> file2.c:94:13: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>94 | strcpy(work, "JIS text");
>   | ^~
> file2.c:17:1: note: include ‘’ or provide a declaration of ‘strcpy’
>16 | #include 
>   +++ |+#include 
>17 | 
> file2.c:94:13: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>94 | strcpy(work, "JIS text");
>   | ^~
> file2.c:94:13: note: include ‘’ or provide a declaration of ‘strcpy’
> file2.c:96:17: error: implicit declaration of function ‘strcat’ 
> [-Werror=implicit-function-declaration]
>96 | strcat(work, " (KI=ESC-$-B");
>   | ^~
> file2.c:96:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:96:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
> file2.c:96:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:98:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>98 | strcat(work, " (KI=ESC-$-@");
>   | ^~
> file2.c:98:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:100:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>   100 | strcat(work, ",KO=ESC-(-B)");
>   | ^~
> file2.c:100:17: note: include ‘’ or provide a declaration of 
> ‘strcat’
> file2.c:102:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>   102 | strcat(work, ",KO=ESC-(-J)");
>   | ^~
> file2.c:102:17: note: include ‘’ or provide a declaration of 
> ‘strcat’
> file2.c:112:27: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>   112 | if ( (pid=fork()) < 0 ) {
>   |   ^~~~
> file2.c:117:21: error: implicit declaration of function ‘execl’ 
> [-Werror=implicit-function-declaration]
>   117 | execl("/usr/bin/file", "file", filename, NULL);
>   | ^
> file2.c:117:21: warning: incompatible implicit declaration of built-in 
> function ‘execl’ [-Wbuiltin-declaration-mismatch]
> file2.c:118:21: error: implicit declaration of function ‘_exit’ 
> [-Werror=implicit-function-declaration]
>   118 | _exit(0);
>   | ^
> file2.c:118:21: warning: incompatible implicit declaration of built-in 
> function ‘_exit’ [-Wbuiltin-declaration-mismatch]
> file2.c:121:17: error: implicit declaration of function ‘wait’ 
> [-Werror=implicit-function-declaration]
>   121 | wait();
>   | ^~~~
> file2.c:131:38: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   131 | printf("%s:%s\t%s\n", filename, (strlen(filename)+1)<=7?"\t":"", 
> f);
>   |  

Bug#1066382: xserver-xorg-video-nouveau: FTBFS: ../../src/nv_driver.c:1451:23: error: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Werror=implicit-function-declarat

2024-03-13 Thread Lucas Nussbaum
Source: xserver-xorg-video-nouveau
Version: 1:1.0.17-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../src -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/xorg 
> -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/X11/dri 
> -I/usr/include/libdrm   -I/usr/include/libdrm -I/usr/include/libdrm/nouveau  
> -I/usr/include/libdrm  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm  -c -o 
> nv04_xv_ovl.lo ../../src/nv04_xv_ovl.c
> ../../src/nv_driver.c: In function ‘NVScreenInit’:
> ../../src/nv_driver.c:1451:23: error: implicit declaration of function 
> ‘wfbScreenInit’; did you mean ‘fbScreenInit’? 
> [-Werror=implicit-function-declaration]
>  1451 | ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX,
>   |   ^
>   |   fbScreenInit
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../src -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm 
> -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/libdrm -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm -c 
> ../../src/nv04_exa.c  -fPIC -DPIC -o .libs/nv04_exa.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../src -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm 
> -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/libdrm -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm -c 
> ../../src/nv04_xv_ovl.c  -fPIC -DPIC -o .libs/nv04_xv_ovl.o
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../src -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/xorg 
> -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/X11/dri 
> -I/usr/include/libdrm   -I/usr/include/libdrm -I/usr/include/libdrm/nouveau  
> -I/usr/include/libdrm  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm  -c -o 
> nv04_xv_blit.lo ../../src/nv04_xv_blit.c
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../src -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/xorg 
> -fvisibility=hidden -I/usr/include/pixman-1 -I/usr/include/X11/dri 
> -I/usr/include/libdrm   -I/usr/include/libdrm -I/usr/include/libdrm/nouveau  
> -I/usr/include/libdrm  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm  -c -o 
> nv10_exa.lo ../../src/nv10_exa.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../src -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm 
> -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/libdrm -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -minline-all-stringops -I/usr/include/xorg -fvisibility=hidden 
> -I/usr/include/pixman-1 -I/usr/include/X11/dri -I/usr/include/libdrm -c 
> ../../src/nv04_xv_blit.c  -fPIC -DPIC -o 

Bug#1066383: virtualjaguar: FTBFS: ./inlines.h:82:20: error: implicit declaration of function ‘m68k_read_memory_32’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: virtualjaguar
Version: 2.1.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -MMD -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -I. 
> -I./obj `sdl-config --cflags` -c obj/cpustbl.c -o obj/cpustbl.o
> In file included from obj/cpustbl.c:3:
> ./inlines.h: In function ‘m68k_do_rts’:
> ./inlines.h:82:20: error: implicit declaration of function 
> ‘m68k_read_memory_32’ [-Werror=implicit-function-declaration]
>82 | m68k_setpc(m68k_read_memory_32(m68k_areg(regs, 7)));
>   |^~~
> ./inlines.h: In function ‘m68k_do_bsr’:
> ./inlines.h:89:9: error: implicit declaration of function 
> ‘m68k_write_memory_32’ [-Werror=implicit-function-declaration]
>89 | m68k_write_memory_32(m68k_areg(regs, 7), oldpc);
>   | ^~~~
> ./inlines.h: In function ‘get_ibyte_prefetch’:
> ./inlines.h:111:25: error: implicit declaration of function 
> ‘m68k_read_memory_8’ [-Werror=implicit-function-declaration]
>   111 | #define get_ibyte(o)m68k_read_memory_8(regs.pc + (o) + 1)
>   | ^~
> ./inlines.h:158:16: note: in expansion of macro ‘get_ibyte’
>   158 | return get_ibyte(o);
>   |^
> ./inlines.h: In function ‘get_iword_prefetch’:
> ./inlines.h:112:25: error: implicit declaration of function 
> ‘m68k_read_memory_16’ [-Werror=implicit-function-declaration]
>   112 | #define get_iword(o)m68k_read_memory_16(regs.pc + (o))
>   | ^~~
> ./inlines.h:183:16: note: in expansion of macro ‘get_iword’
>   183 | return get_iword(o);
>   |^
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:58: obj/cpustbl.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/virtualjaguar_2.1.3-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066381: obconf: FTBFS: src/appearance.c:155:19: error: implicit declaration of function ‘toupper’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: obconf
Version: 1:2.0.4+git20150213-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DPACKAGE_NAME=\"obconf\" -DPACKAGE_TARNAME=\"obconf\" 
> -DPACKAGE_VERSION=\"2.0.4\" -DPACKAGE_STRING=\"obconf\ 2.0.4\" 
> -DPACKAGE_BUGREPORT=\"http://bugzilla.icculus.org\; -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"obconf\" -DVERSION=\"2.0.4\" -DENABLE_NLS=1 -DHAVE_GETTEXT=1 
> -DHAVE_DCGETTEXT=1 -I.  -I/usr/include/openbox/3.6 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libxml2 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/pango-1.0 
> -I/usr/include/harfbuzz -I/usr/include/libmount -I/usr/include/blkid 
> -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 
> -I/usr/include/librsvg-2.0 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -pthread  
> -I/usr/include/startup-notification-1.0  -I/usr/include/gtk-3.0 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders 
> -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 
> -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 
> -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -pthread  
> -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libpng16 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -pthread 
> -I/usr/include/libmount -I/usr/include/blkid   
> -DLOCALEDIR=\"/usr/share/locale\" -DPIXMAPDIR=\"/usr/share/pixmaps\" 
> -DRESOURCEDIR=\"/usr/share/obconf\" -DTHEMEDIR=\"/usr/share/openbox/themes\" 
> -DG_LOG_DOMAIN=\"Obconf\" -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o src/obconf-tree.o `test -f 
> 'src/tree.c' || echo './'`src/tree.c
> src/appearance.c: In function ‘on_title_layout_changed’:
> src/appearance.c:155:19: error: implicit declaration of function ‘toupper’ 
> [-Werror=implicit-function-declaration]
>   155 | *it = toupper(*it);
>   |   ^~~
> src/appearance.c:23:1: note: include ‘’ or provide a declaration of 
> ‘toupper’
>22 | #include "preview_update.h"
>   +++ |+#include 
>23 | 
> src/appearance.c: In function ‘read_font’:
> src/appearance.c:261:5: warning: ‘gtk_font_button_set_font_name’ is 
> deprecated [-Wdeprecated-declarations]
>   261 | gtk_font_button_set_font_name(w, fontstring);
>   | ^
> In file included from /usr/include/gtk-3.0/gtk/gtk.h:109,
>  from src/main.h:27,
>  from src/appearance.c:20:
> /usr/include/gtk-3.0/gtk/gtkfontbutton.h:98:23: note: declared here
>98 | gboolean  gtk_font_button_set_font_name  (GtkFontButton 
> *font_button,
>   |   ^
> src/appearance.c: In function ‘write_font’:
> src/appearance.c:292:5: warning: ‘gtk_font_button_get_font_name’ is 
> deprecated [-Wdeprecated-declarations]
>   292 | font = g_strdup(gtk_font_button_get_font_name(w));
>   | ^~~~
> /usr/include/gtk-3.0/gtk/gtkfontbutton.h:96:23: note: declared here
>96 | const gchar * gtk_font_button_get_font_name  (GtkFontButton 
> *font_button);
>   |   ^
> src/theme.c: In function ‘on_install_theme_clicked’:
> src/theme.c:112:37: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   112 | GTK_STOCK_OK, GTK_RESPONSE_OK,
>   | ^~~~
> src/theme.c:113:37: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   113 | GTK_STOCK_CANCEL, 
> GTK_RESPONSE_NONE,
>   | ^~~~
> src/theme.c: In function ‘on_theme_archive_clicked’:
> src/theme.c:144:37: warning: ‘GtkStock’ is deprecated 
> [-Wdeprecated-declarations]
>   144 | GTK_STOCK_OK, GTK_RESPONSE_OK,
>   | ^~~~
> 

Bug#1066379: loqui: FTBFS: loqui-core-gtk.gob:256:25: error: implicit declaration of function ‘account_list_dialog_open_for_connect’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: loqui
Version: 0.7.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I.. -I/usr/include -I../libloqui -I../libloqui -I.. 
> -I.. -DG_LOG_DOMAIN=\"Loqui\"  -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders 
> -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 
> -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 
> -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -pthread   -g 
> -DDATADIR=\""/usr/share"\"  -Wall -Wredundant-decls -Wmissing-declarations 
> -Wmissing-prototypes -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o loqui-channel-entry-action-group-ui.o loqui-channel-entry-action-group-ui.c
> loqui-core-gtk.gob:256:25: error: implicit declaration of function 
> ‘account_list_dialog_open_for_connect’ [-Werror=implicit-function-declaration]
>   256 | 
> account_list_dialog_open_for_connect(GTK_WINDOW(self->app), 
> loqui_app_get_account_manager(self->app));
>   | ^~~~
> loqui-core-gtk.gob:260:17: warning: ‘gdk_threads_leave’ is deprecated 
> [-Wdeprecated-declarations]
>   260 | gdk_threads_leave();
>   | ^
> /usr/include/gtk-3.0/gdk/gdkthreads.h:48:10: note: declared here
>48 | void gdk_threads_leave(void);
>   |  ^
> In file included from ../libloqui/loqui-gobject-utils.h:24,
>  from ../libloqui/loqui-protocol.h:41,
>  from ../libloqui/loqui_protocol_manager.h:26,
>  from loqui-protocol-selection-dialog.h:37,
>  from loqui-protocol-selection-dialog.c:36:
> ../libloqui/loqui-utils.h:66:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>66 | G_CONST_RETURN gchar *loqui_utils_remove_return_code(gchar *str);
>   | ^
> ../libloqui/loqui-utils.h:95:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>95 | G_CONST_RETURN gchar* loqui_utils_remove_ipv6_prefix_(const gchar 
> *str);
>   | ^
> In file included from ../libloqui/loqui_channel_entry.h:25,
>  from ../libloqui/loqui_account.h:40,
>  from ../libloqui/loqui-protocol.h:42:
> ../libloqui/loqui_user.h:114:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   114 | G_CONST_RETURN gchar *loqui_user_get_nick(LoquiUser *user);
>   | ^~~  
> ../libloqui/loqui_user.h:119:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   119 | LOQUI_DEFINE_ACCESSOR_CONST_STRING_PROTOTYPE(LoquiUser, loqui_user, 
> username);
>   | ^
> ../libloqui/loqui_user.h:120:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   120 | LOQUI_DEFINE_ACCESSOR_CONST_STRING_PROTOTYPE(LoquiUser, loqui_user, 
> hostname);
>   | ^
> ../libloqui/loqui_user.h:121:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   121 | LOQUI_DEFINE_ACCESSOR_CONST_STRING_PROTOTYPE(LoquiUser, loqui_user, 
> realname);
>   | ^
> ../libloqui/loqui_user.h:122:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   122 | LOQUI_DEFINE_ACCESSOR_CONST_STRING_PROTOTYPE(LoquiUser, loqui_user, 
> servername);
>   | ^
> ../libloqui/loqui_user.h:123:13: warning: Deprecated pre-processor symbol: 
> replace with "const"
>   123 | LOQUI_DEFINE_ACCESSOR_CONST_STRING_PROTOTYPE(LoquiUser, loqui_user, 
> away_message);
>   | 

Bug#1066380: caja-extensions: FTBFS: upnp.c:151:9: error: implicit declaration of function ‘gupnp_service_info_get_introspection_async’; did you mean ‘gupnp_service_info_introspect_async’? [-Werror=im

2024-03-13 Thread Lucas Nussbaum
Source: caja-extensions
Version: 1.26.1-1.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../..  -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED 
> -DMATELOCALEDIR=\""/usr/share/locale"\" -I../../.. -I../../../sendto  
> -DDATADIR=\"/usr/share\" -DICONDIR=\"\"  -Wdate-time -D_FORTIFY_SOURCE=2 
> -Wall -Wmissing-prototypes -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtk-3.0 
> -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/freetype2 
> -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid 
> -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 
> -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/x86_64-linux-gnu 
> -I/usr/include/webp -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders 
> -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 
> -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 
> -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -pthread   
> -I/usr/include/gupnp-1.6 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/gssdp-1.6 -I/usr/include/libsoup-3.0 
> -I/usr/include/sysprof-6 -I/usr/include/libxml2 -pthread   -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o libnstupnp_la-upnp.lo `test -f 
> 'upnp.c' || echo './'`upnp.c
> git.mk: Generating .gitignore
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../.. -DG_DISABLE_DEPRECATED 
> -DGDK_PIXBUF_DISABLE_DEPRECATED -DMATELOCALEDIR=\"/usr/share/locale\" 
> -I../../.. -I../../../sendto -DDATADIR=\"/usr/share\" -DICONDIR=\"\" 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wall -Wmissing-prototypes 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp 
> -I/usr/include/gio-unix-2.0 -I/usr/include/cloudproviders 
> -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 
> -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 
> -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -pthread 
> -I/usr/include/gupnp-1.6 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/gssdp-1.6 -I/usr/include/libsoup-3.0 
> -I/usr/include/sysprof-6 -I/usr/include/libxml2 -pthread -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c upnp.c  -fPIC -DPIC -o 
> .libs/libnstupnp_la-upnp.o
> upnp.c: In function ‘device_proxy_available_cb’:
> upnp.c:151:9: error: implicit declaration of function 
> ‘gupnp_service_info_get_introspection_async’; did you mean 
> ‘gupnp_service_info_introspect_async’? [-Werror=implicit-function-declaration]
>   151 | gupnp_service_info_get_introspection_async (info,
>   | ^~
>   | gupnp_service_info_introspect_async
> cc1: some warnings being treated as errors
> make[5]: *** [Makefile:532: libnstupnp_la-upnp.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/caja-extensions_1.26.1-1.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



Bug#1066378: pike8.0: FTBFS: zlibmod.c:1235:5: error: implicit declaration of function ‘pop_n_elems’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pike8.0
Version: 8.0.1738-1.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

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

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -I. -I/<>/src/modules/Gz 
> -I/<>/build/linux-6.1.0-13-cloud-amd64-x86_64 
> -I/<>/src -Wdate-time -D_FORTIFY_SOURCE=2 -DDEBIAN 
> -I/usr/local/include -DHAVE_CONFIG_H -Werror=implicit-function-declaration 
> -Wformat -Werror=format-security -ggdb -m64 -mrdrnd -O2 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -fcf-protection -fvisibility=hidden -pipe 
> -fvar-tracking-assignments -funswitch-loops -W -Wall -Wno-unused -Wcomment 
> -Wformat -Wformat-security -Wimplicit-function-declaration -Wmultichar 
> -Wunused-function -Wswitch -Wuninitialized -Wpointer-arith -Wchar-subscripts 
> -Wno-long-long -Wdeclaration-after-statement -fPIC -DDYNAMIC_MODULE -c 
> /<>/src/modules/Gz/zlibmod.c -o zlibmod.o -g -g
> /<>/src/modules/Gz/zlibmod.c: In function ‘gz_deflate_size’:
> /<>/src/modules/Gz/zlibmod.c:1235:5: error: implicit declaration 
> of function ‘pop_n_elems’ [-Werror=implicit-function-declaration]
>  1235 | pop_n_elems(args);
>   | ^~~
> /<>/src/modules/Gz/zlibmod.c:1239:5: error: implicit declaration 
> of function ‘push_int’ [-Werror=implicit-function-declaration]
>  1239 | push_int(
>   | ^~~~
> /<>/src/modules/Gz/zlibmod.c: At top level:
> /<>/src/modules/Gz/zlibmod.c:1247:13: warning: ‘gz_inflate_size’ 
> defined but not used [-Wunused-function]
>  1247 | static void gz_inflate_size( INT32 args )
>   | ^~~
> /<>/src/modules/Gz/zlibmod.c:1230:13: warning: ‘gz_deflate_size’ 
> defined but not used [-Wunused-function]
>  1230 | static void gz_deflate_size( INT32 args )
>   | ^~~
> cc1: some warnings being treated as errors
> Compilation command was:
> /<>/bin/smartlink gcc -I. -I/<>/src/modules/Gz 
> -I/<>/build/linux-6.1.0-13-cloud-amd64-x86_64 
> -I/<>/src   -Wdate-time -D_FORTIFY_SOURCE=2 -DDEBIAN 
> -I/usr/local/include -DHAVE_CONFIG_H  -g -g 
> -Werror=implicit-function-declaration -Wformat -Werror=format-security -ggdb 
> -m64  -mrdrnd -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -fcf-protection 
> -fvisibility=hidden -pipe -fvar-tracking-assignments -funswitch-loops -W 
> -Wall -Wno-unused -Wcomment -Wformat -Wformat-security 
> -Wimplicit-function-declaration -Wmultichar -Wunused-function -Wswitch 
> -Wuninitialized -Wpointer-arith -Wchar-subscripts -Wno-long-long 
> -Wdeclaration-after-statement  -fPIC -DDYNAMIC_MODULE -c 
> /<>/src/modules/Gz/zlibmod.c -o zlibmod.o
> make[7]: *** [Makefile:168: zlibmod.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pike8.0_8.0.1738-1.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=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.



<    6   7   8   9   10   11   12   13   14   15   >