Your message dated Tue, 10 Jan 2023 13:24:40 +0000
with message-id <e1pfeck-000dzz...@fasolo.debian.org>
and subject line Bug#1026576: fixed in spaln 2.4.13e+dfsg-1
has caused the Debian Bug report #1026576,
regarding spaln: FTBFS: dbs.cc:568:54: error: cannot convert ‘gzFile’ {aka 
‘gzFile_s*’} to ‘FILE*’
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1026576: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026576
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: spaln
Version: 2.4.9a+dfsg-3
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20221220 ftbfs-bookworm

Hi,

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


Relevant part (hopefully):
> x86_64-linux-gnu-g++ -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. -flto=auto 
> -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security 
> -pedantic -O3 -Wall -DM_THREAD=1 -DUSE_ZLIB=1 -c gsinfo.cc 
> dbs.cc: In constructor ‘DbsDt::DbsDt(const char*)’:
> dbs.cc:568:54: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   568 |                 if (fread(dbsseq, sizeof(CHAR), rss, gzfd) <= 0)
>       |                                                      ^~~~
>       |                                                      |
>       |                                                      gzFile {aka 
> gzFile_s*}
> In file included from stdtype.h:25,
>                  from cmn.h:25,
>                  from seq.h:25,
>                  from dbs.cc:22:
> /usr/include/stdio.h:676:51: note:   initializing argument 4 of ‘size_t 
> fread(void*, size_t, size_t, FILE*)’
>   676 |                      size_t __n, FILE *__restrict __stream) __wur;
>       |                                  ~~~~~~~~~~~~~~~~~^~~~~~~~
> dbs.cc:570:24: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   570 |                 fclose(gzfd);
>       |                        ^~~~
>       |                        |
>       |                        gzFile {aka gzFile_s*}
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> In file included from seq.h:60:
> dbs.h: In instantiation of ‘DbsRec* DbsDt::readidx(file_t, const char*) [with 
> file_t = gzFile_s*]’:
> dbs.cc:529:34:   required from here
> dbs.h:235:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   235 |         rewind(fidx);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:723:27: note:   initializing argument 1 of ‘void 
> rewind(FILE*)’
>   723 | extern void rewind (FILE *__stream);
>       |                     ~~~~~~^~~~~~~~
> dbs.h:236:51: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   236 |         if (fread(recidx, sizeof(DbsRec), numidx, fidx) != numidx)
>       |                                                   ^~~~
>       |                                                   |
>       |                                                   gzFile_s*
> /usr/include/stdio.h:676:51: note:   initializing argument 4 of ‘size_t 
> fread(void*, size_t, size_t, FILE*)’
>   676 |                      size_t __n, FILE *__restrict __stream) __wur;
>       |                                  ~~~~~~~~~~~~~~~~~^~~~~~~~
> dbs.h:238:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   238 |         fclose(fidx);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> dbs.h: In instantiation of ‘void DbsDt::readentry(file_t, const char*) [with 
> file_t = gzFile_s*]’:
> dbs.cc:542:25:   required from here
> dbs.h:199:19: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   199 |             fseek(fent, 0L, SEEK_END);
>       |                   ^~~~
>       |                   |
>       |                   gzFile_s*
> /usr/include/stdio.h:713:25: note:   initializing argument 1 of ‘int 
> fseek(FILE*, long int, int)’
>   713 | extern int fseek (FILE *__stream, long int __off, int __whence);
>       |                   ~~~~~~^~~~~~~~
> dbs.h:200:37: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   200 |             ent_space = (INT) ftell(fent);
>       |                                     ^~~~
>       |                                     |
>       |                                     gzFile_s*
> /usr/include/stdio.h:718:30: note:   initializing argument 1 of ‘long int 
> ftell(FILE*)’
>   718 | extern long int ftell (FILE *__stream) __wur;
>       |                        ~~~~~~^~~~~~~~
> dbs.h:204:31: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   204 |             while ((c = fgetc(fent)) != EOF) ++ent_space;
>       |                               ^~~~
>       |                               |
>       |                               gzFile_s*
> /usr/include/stdio.h:513:25: note:   initializing argument 1 of ‘int 
> fgetc(FILE*)’
>   513 | extern int fgetc (FILE *__stream);
>       |                   ~~~~~~^~~~~~~~
> dbs.h:206:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   206 |         rewind(fent);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:723:27: note:   initializing argument 1 of ‘void 
> rewind(FILE*)’
>   723 | extern void rewind (FILE *__stream);
>       |                     ~~~~~~^~~~~~~~
> dbs.h:208:51: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   208 |         if (fread(entry, sizeof(char), ent_space, fent) != ent_space)
>       |                                                   ^~~~
>       |                                                   |
>       |                                                   gzFile_s*
> /usr/include/stdio.h:676:51: note:   initializing argument 4 of ‘size_t 
> fread(void*, size_t, size_t, FILE*)’
>   676 |                      size_t __n, FILE *__restrict __stream) __wur;
>       |                                  ~~~~~~~~~~~~~~~~~^~~~~~~~
> dbs.h:210:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   210 |         fclose(fent);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> dbs.h: In instantiation of ‘void DbsDt::readodr(file_t, const char*) [with 
> file_t = gzFile_s*]’:
> dbs.cc:551:20:   required from here
> dbs.h:221:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   221 |         rewind(fodr);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:723:27: note:   initializing argument 1 of ‘void 
> rewind(FILE*)’
>   723 | extern void rewind (FILE *__stream);
>       |                     ~~~~~~^~~~~~~~
> dbs.h:222:48: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   222 |         if (fread(recodr, sizeof(INT), numidx, fodr) != numidx)
>       |                                                ^~~~
>       |                                                |
>       |                                                gzFile_s*
> /usr/include/stdio.h:676:51: note:   initializing argument 4 of ‘size_t 
> fread(void*, size_t, size_t, FILE*)’
>   676 |                      size_t __n, FILE *__restrict __stream) __wur;
>       |                                  ~~~~~~~~~~~~~~~~~^~~~~~~~
> dbs.h:224:16: error: cannot convert ‘gzFile_s*’ to ‘FILE*’
>   224 |         fclose(fodr);
>       |                ^~~~
>       |                |
>       |                gzFile_s*
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> In file included from blksrc.cc:24:
> blksrc.h: In member function ‘void MakeDbs::putsq(int)’:
> blksrc.h:111:42: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   111 |                 if (gzseq)      fputc(c, gzseq);
>       |                                          ^~~~~
>       |                                          |
>       |                                          gzFile {aka gzFile_s*}
> In file included from stdtype.h:25,
>                  from cmn.h:25,
>                  from seq.h:25,
>                  from aln.h:26,
>                  from blksrc.cc:22:
> /usr/include/stdio.h:549:34: note:   initializing argument 2 of ‘int 
> fputc(int, FILE*)’
>   549 | extern int fputc (int __c, FILE *__stream);
>       |                            ~~~~~~^~~~~~~~
> blksrc.h: In destructor ‘MakeDbs::~MakeDbs()’:
> blksrc.h:122:35: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   122 |                 if (gzseq) fclose(gzseq);
>       |                                   ^~~~~
>       |                                   |
>       |                                   gzFile {aka gzFile_s*}
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> blksrc.h:123:35: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   123 |                 if (gzidx) fclose(gzidx);
>       |                                   ^~~~~
>       |                                   |
>       |                                   gzFile {aka gzFile_s*}
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> blksrc.h:124:35: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   124 |                 if (gzent) fclose(gzent);
>       |                                   ^~~~~
>       |                                   |
>       |                                   gzFile {aka gzFile_s*}
> /usr/include/stdio.h:178:26: note:   initializing argument 1 of ‘int 
> fclose(FILE*)’
>   178 | extern int fclose (FILE *__stream);
>       |                    ~~~~~~^~~~~~~~
> blksrc.h: In member function ‘void MakeDbs::wrtgrp(const char*)’:
> blksrc.h:151:46: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   151 |                 if (gzseq)      fpos = ftell(gzseq);
>       |                                              ^~~~~
>       |                                              |
>       |                                              gzFile {aka gzFile_s*}
> /usr/include/stdio.h:718:30: note:   initializing argument 1 of ‘long int 
> ftell(FILE*)’
>   718 | extern long int ftell (FILE *__stream) __wur;
>       |                        ~~~~~~^~~~~~~~
> blksrc.h:154:46: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   154 |                 if (gzent)      epos = ftell(gzent);
>       |                                              ^~~~~
>       |                                              |
>       |                                              gzFile {aka gzFile_s*}
> /usr/include/stdio.h:718:30: note:   initializing argument 1 of ‘long int 
> ftell(FILE*)’
>   718 | extern long int ftell (FILE *__stream) __wur;
>       |                        ~~~~~~^~~~~~~~
> blksrc.h: In member function ‘void MakeDbs::stamp21()’:
> blksrc.h:162:59: error: cannot convert ‘gzFile’ {aka ‘gzFile_s*’} to ‘FILE*’
>   162 |                 else    fwrite(&rec21, sizeof(DbsRec), 1, gzidx);
>       |                                                           ^~~~~
>       |                                                           |
>       |                                                           gzFile {aka 
> gzFile_s*}
> /usr/include/stdio.h:682:52: note:   initializing argument 4 of ‘size_t 
> fwrite(const void*, size_t, size_t, FILE*)’
>   682 |                       size_t __n, FILE *__restrict __s);
>       |                                   ~~~~~~~~~~~~~~~~~^~~
> make[2]: *** [Makefile:30: dbs.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2022/12/20/spaln_2.4.9a+dfsg-3_unstable.log

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

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

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

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

--- End Message ---
--- Begin Message ---
Source: spaln
Source-Version: 2.4.13e+dfsg-1
Done: Andreas Tille <ti...@debian.org>

We believe that the bug you reported is fixed in the latest version of
spaln, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1026...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Tille <ti...@debian.org> (supplier of updated spaln package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


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

Format: 1.8
Date: Tue, 10 Jan 2023 13:50:42 +0100
Source: spaln
Architecture: source
Version: 2.4.13e+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<debian-med-packag...@lists.alioth.debian.org>
Changed-By: Andreas Tille <ti...@debian.org>
Closes: 1026576
Changes:
 spaln (2.4.13e+dfsg-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream version
     Closes: #1026576
   * Fix watch file
   * Standards-Version: 4.6.2 (routine-update)
Checksums-Sha1:
 4bba581d2e63490d14224f1baa85fda0b19fe221 2209 spaln_2.4.13e+dfsg-1.dsc
 a7cd07d8f12f4b8a42685952191e2bcf80be7c74 19687332 
spaln_2.4.13e+dfsg.orig.tar.xz
 4e179d70d0496bd78d49afef1453f5b3db42f63b 13532 
spaln_2.4.13e+dfsg-1.debian.tar.xz
 ec57033a1d41d46572ead5cf05792a4fd8303a66 17063 
spaln_2.4.13e+dfsg-1_source.buildinfo
Checksums-Sha256:
 29937025d00a313883809faf9f91bda2f9260eb297d714037c82237f27340501 2209 
spaln_2.4.13e+dfsg-1.dsc
 c242d4bbf4195352526bf2c15f73197ad5b0f68625c2be0aa74dcab05d29688b 19687332 
spaln_2.4.13e+dfsg.orig.tar.xz
 5dfd41b8fb54810f9c241b881f7c61d3bd3bad48f9b9369a4cbb46133618a4c4 13532 
spaln_2.4.13e+dfsg-1.debian.tar.xz
 2056a4ada05f29a9abfb80512b3ef878cf3d89c837d4899f87f88733eb2de596 17063 
spaln_2.4.13e+dfsg-1_source.buildinfo
Files:
 267a33a05a6a8451e53edafb088a497b 2209 science optional spaln_2.4.13e+dfsg-1.dsc
 6791bf11be0a3b244856f587940e2da8 19687332 science optional 
spaln_2.4.13e+dfsg.orig.tar.xz
 5cace7bc160c0ab51282b740fab40d6c 13532 science optional 
spaln_2.4.13e+dfsg-1.debian.tar.xz
 1f15660bfd5c196e6e292db6246c7912 17063 science optional 
spaln_2.4.13e+dfsg-1_source.buildinfo

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

iQJCBAEBCgAsFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAmO9Y0EOHHRpbGxlYUBy
a2kuZGUACgkQV4oElNHGRtEUqA/+M8T2klrEcKpDyVqtSWsPvVHfIkqJ+N48scpD
a6PQppy4lt1YJGKq6rUW0F3fzK/soUlFbPoufLnnZeFk8WejGdBUBfaB0OxZIDER
wf8UTLN/1KAPLUIN1ZkoZV0BGZG2iecPNIks9RRKUouWYaKkWbDlWNkg6tKg0PnL
G6eoFrU5ojoTj7SNOkPrh6hZM6s4KJ9sEOjFPZsVMrbdm5NhXX1zFVzWHfu8MB8X
EmrSDMup3JY98nZksol01C+4jdEsoAhU3PQV6+2GvYceHKZM59t9UqxkG5BC7gpP
CN4oZUqwOIC4+rTWRjKpEpZ93joCrH+5FbHdoFbRmb2m3P+Rvti/UE8py/VKjVZn
vwNS/hSxb6AFZwig6zaxpTcfuA9hluHe5WEWfNqj1VFw8AgrDCqyA8gsKn8qyl3f
qz3nN4i+/jq9feKCZzWYYP7ArdJcTWNpXRYP/48VTj8XOMS3qXQrCcpK7qYTqSI3
4iF/X61aW4eq9TaerNlV8mr4uVAV5f61449YhSVpifuzM/PuEduDqaCGXfVvqOi/
vDZpckCLbzkc6ogWvQ6nhuBnA5R7CVsQriJSO3AauR3whZnPsgNP8cFfHBn0EIbh
pvgs4t3DwI5NsVCLZHUdXsEHeVmcqXl8SEGpm68sdz86lUginn8JPY870n5jcuNf
URYqfTw=
=b4xv
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to