Your message dated Sun, 26 Oct 2025 22:22:11 +0000
with message-id <[email protected]>
and subject line Bug#1097878: fixed in shogivar 1.55b-3.1
has caused the Debian Bug report #1097878,
regarding shogivar: ftbfs with GCC-15
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 [email protected]
immediately.)


-- 
1097878: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097878
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:shogivar
Version: 1.55b-3
Severity: important
Tags: sid forky
User: [email protected]
Usertags: ftbfs-gcc-15

[This bug is NOT targeted to the upcoming trixie release]

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

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

The full build log can be found at:
http://qa-logs.debian.net/2025/02/16/amd64exp/shogivar_1.55b-3_unstable_gccexp.log.gz
The last lines of the build log are at the end of this report.

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

  apt-get -t=experimental install g++ 

GCC 15 now defaults to the C23/C++23 standards, exposing many FTBFS.
Other Common build failures are new warnings resulting in build failures
with -Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-15/porting_to.html

[...]
 4897 |              if(!fscanf(f2, " \"%[^\"]\",", Score[W].Caption)) 
fscanf(f2, "\","), Score[W].Caption[0] = '\0'; // scanf chokes on empty string!
      |                                                                
^~~~~~~~~~~~~~~~~
backend.c:4898:14: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4898 |              fscanf(f2, "%d,%d,%d,%d", &Score[W].IDStart, 
&Score[W].IDEnd, &Score[W].PosStart, &Score[W].PosEnd);
      |              
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4899:14: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4899 |              fscanf(f2, "%d", &Captures[W].number);
      |              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4901:18: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4901 |                  fscanf(f2, "%d", &Captures[W].Positions[V]);
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4902:18: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4902 |                  fscanf(f2, "%d", &Captures[W].PieceNum[V]);
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4935:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4935 |         fscanf(f1, "%d,%[^,]", &Pieces[I].number, Pieces[I].Name);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4936:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4936 |         fscanf(f1, ",%[^,],%d", Pieces[I].sname, &Pieces[I].Value);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4937:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4937 |         fscanf(f1, ",%d,%d,%d", &Pieces[I].PrValue, 
&Pieces[I].Promotes, &Pieces[I].Graphic);
      |         
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4938:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4938 |         fscanf(f1, ",%d", &Pieces[I].PrGraphic);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4940:13: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4940 |             fscanf(f1, ",%d", &Pieces[I].Moves[J]);
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4942:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4942 |         fscanf(f1, ",%c", &Pieces[I].special);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4943:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4943 |         fscanf(f1, ",%d", &Pieces[I].Mask);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4944:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4944 |         fscanf(f1, ",%d", &Pieces[I].Range); // WARNING: original .dat 
files leave this out if 0
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4952:13: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4952 |             fscanf(f1, "%d,", &Squares[I][J]);
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4953:31: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4953 |             if(Loading == 1 ) fscanf(f2, "%d", &Squares[I][J]);
      |                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4979:6: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4979 |      fscanf(f1, "%d,", &Capture);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:4985:9: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 4985 |         fscanf(f1, "%d,", &CapRef[I]);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:5000:27: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 5000 |         if(Loading == 1 ) fscanf(f2, "%d", &InHand[I]);
      |                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:5040:3: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 5040 |   fscanf(f1, "%d", &PieceSizes);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:5043:11: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 5043 |           fscanf(f1, "%d,", &PieceMask[J][K]);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘SetRules’:
backend.c:5106:5: warning: ignoring return value of ‘fread’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 5106 |     fread(text, 1, 20000, f);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [Makefile:1093: backend.o] Error 1
make[2]: Leaving directory '/build/reproducible-path/shogivar-1.55b'
make[1]: *** [Makefile:961: all] Error 2
make[1]: Leaving directory '/build/reproducible-path/shogivar-1.55b'
dh_auto_build: error: make -j1 returned exit code 2
make: *** [debian/rules:22: binary] Error 255
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: shogivar
Source-Version: 1.55b-3.1
Done: Adrian Bunk <[email protected]>

We believe that the bug you reported is fixed in the latest version of
shogivar, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Adrian Bunk <[email protected]> (supplier of updated shogivar 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 [email protected])


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

Format: 1.8
Date: Fri, 24 Oct 2025 19:56:44 +0300
Source: shogivar
Architecture: source
Version: 1.55b-3.1
Distribution: unstable
Urgency: medium
Maintainer: Yann Dirson <[email protected]>
Changed-By: Adrian Bunk <[email protected]>
Closes: 1097878
Changes:
 shogivar (1.55b-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 15. (Closes: #1097878)
Checksums-Sha1:
 e3178c3d64520b0d7cf2a1fda3040f657a644cce 2021 shogivar_1.55b-3.1.dsc
 8d8bc431b565f782d036500dde59d540858eab53 4148 shogivar_1.55b-3.1.debian.tar.xz
Checksums-Sha256:
 b028849d6c0f98d003f574cb5f8b2003e5abd63b44d7158221dae2c22afe330c 2021 
shogivar_1.55b-3.1.dsc
 10958e2ce89dec12ece7f76f866974df54d08529925ac7c5c38d5f2773a2bf59 4148 
shogivar_1.55b-3.1.debian.tar.xz
Files:
 988581638292bf3d0b82e786f93d685a 2021 games optional shogivar_1.55b-3.1.dsc
 b1a2e094143bf0e1fb1afe2ea3e4f50b 4148 games optional 
shogivar_1.55b-3.1.debian.tar.xz

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

iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmj8BJ4ACgkQiNJCh6LY
mLFj7g//QgVt27VpkkrVpb/54CzsdRH2XNjI+FB+pyBBQyUHkV2s+Sqyo2K1Hw3S
fRCvvqVvhmUvX1lXAdQn05utNsfySBiP/KF5JgzpAcG0zf5eqcLDjZ990uU9VQNm
JwzzMImDiI1UvM4PDg/IMo0BZLlf6mrNE7DMVIkKIUbdxVGmj/+87HA+AWiLgZIz
TokdwxaBqoCtFEF9Ot4OlRAOC7v0mqXmYc25vsQeyIUztkpfxo57rlGEHsL36g0d
NSmWmnNABwyKXgGx8FgXk3/a5dS7plPsXVH+TPa1lHv6XzpoG9HM7OA2Y3CjzwjE
0L9tLclQ5eE+PniZpP9L7ut4qBbDqx3j/qDnzOWrVzbu7CLtOe1Nj/RjKQgyC3Bl
2S8akKJn65oeaOZNgAIpsaX+elsHFo7qB1TfW06CFhY8Hc5BceUrURB0i3oTzcOU
XajDBr0gyxmLs53u8wmIhah9k/Hp069AIQJAXYADlxKOERO7YJgNJia/84+lHYsk
RTkDXSKVMt3SpPJWHxTy9ACcrbW8mn5U9ihDDCJLDpJzG+A1D9ywNk6QJskTnb5g
0IdEuvs5t305u3ySTWAxnzzWht2HFzWKKf4yLyFuS1ZEtOqdaqIN84vQOJj2UoVu
FNSnVodtMThUVke9GI7h2UjEV/vTtGdlJ5Xgr1nQKVB5GXLdvHk=
=0PVx
-----END PGP SIGNATURE-----

Attachment: pgprVegvAdXsA.pgp
Description: PGP signature


--- End Message ---

Reply via email to