Your message dated Sat, 11 Oct 2025 18:40:54 +0000
with message-id <[email protected]>
and subject line Bug#1097854: fixed in scilab 2024.1.0+dfsg-8
has caused the Debian Bug report #1097854,
regarding scilab: 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.)


-- 
1097854: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097854
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:scilab
Version: 2024.1.0+dfsg-6
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/scilab_2024.1.0+dfsg-6_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

[...]
src/c/qsort.h:29:6: note: in definition of macro 'med3'
   29 |     (cmp(a, c, xa, xc) < 0 ? (res=c,tabres=xc) : (res=a,tabres=xa) ))   
\
      |      ^~~
src/c/qsort.c:104:54: error: too many arguments to function 'cmp'; expected 0, 
have 4
  104 |         med3(pm, tabm, pl, pm, pn, tabl, tabm, tabn, cmp);
      |                            ~~                        ^~~
src/c/qsort.h:30:5: note: in definition of macro 'med3'
   30 |   :(cmp(b, c, xb, xc) > 0 ? (res=b,tabres=xb) : (cmp(a, c, xa, xc) < 0 
? (res=a,tabres=xa) : (res=c,tabres=xc) ))
      |     ^~~
src/c/qsort.c:104:54: error: too many arguments to function 'cmp'; expected 0, 
have 4
  104 |         med3(pm, tabm, pl, pm, pn, tabl, tabm, tabn, cmp);
      |                        ~~                            ^~~
src/c/qsort.h:30:50: note: in definition of macro 'med3'
   30 |   :(cmp(b, c, xb, xc) > 0 ? (res=b,tabres=xb) : (cmp(a, c, xa, xc) < 0 
? (res=a,tabres=xa) : (res=c,tabres=xc) ))
      |                                                  ^~~
src/c/qsort.c:109:9: error: too many arguments to function 'cmp'; expected 0, 
have 5
  109 |     if (cmp(pn, a, tabn, tab, flag))
      |         ^~~ ~~
src/c/qsort.h:23:20: error: too many arguments to function 'swapcode'; expected 
0, have 4
   23 | #define swap(a, b) swapcode(a, b, 1,es)
      |                    ^~~~~~~~
src/c/qsort.c:112:9: note: in expansion of macro 'swap'
  112 |         swap(a, pn);
      |         ^~~~
src/c/qsort.c:131:33: error: too many arguments to function 'cmp'; expected 0, 
have 5
  131 |         while (pb <= pc && (r = cmp(pb, a, tabb, tab, flag)) <= 0)
      |                                 ^~~ ~~
src/c/qsort.h:23:20: error: too many arguments to function 'swapcode'; expected 
0, have 4
   23 | #define swap(a, b) swapcode(a, b, 1,es)
      |                    ^~~~~~~~
src/c/qsort.c:138:17: note: in expansion of macro 'swap'
  138 |                 swap(pa, pb);
      |                 ^~~~
src/c/qsort.c:147:33: error: too many arguments to function 'cmp'; expected 0, 
have 5
  147 |         while (pb <= pc && (r = cmp(pc, a, tabc, tab, flag)) >= 0)
      |                                 ^~~ ~~
src/c/qsort.h:23:20: error: too many arguments to function 'swapcode'; expected 
0, have 4
   23 | #define swap(a, b) swapcode(a, b, 1,es)
      |                    ^~~~~~~~
src/c/qsort.c:154:17: note: in expansion of macro 'swap'
  154 |                 swap(pc, pd);
      |                 ^~~~
src/c/qsort.h:23:20: error: too many arguments to function 'swapcode'; expected 
0, have 4
   23 | #define swap(a, b) swapcode(a, b, 1,es)
      |                    ^~~~~~~~
src/c/qsort.c:179:9: note: in expansion of macro 'swap'
  179 |         swap(pb, pc);
      |         ^~~~
src/c/qsort.h:25:39: error: too many arguments to function 'swapcode'; expected 
0, have 4
   25 | #define vecswap(a, b, n) if ((n) > 0) swapcode(a, b, n/es,es)
      |                                       ^~~~~~~~
src/c/qsort.c:192:5: note: in expansion of macro 'vecswap'
  192 |     vecswap(a, pb - r, r);
      |     ^~~~~~~
src/c/qsort.h:25:39: error: too many arguments to function 'swapcode'; expected 
0, have 4
   25 | #define vecswap(a, b, n) if ((n) > 0) swapcode(a, b, n/es,es)
      |                                       ^~~~~~~~
src/c/qsort.c:199:5: note: in expansion of macro 'vecswap'
  199 |     vecswap(pb, pn - r, r);
      |     ^~~~~~~
make[4]: *** [Makefile:2521: src/c/libscielementary_functions_algo_la-qsort.lo] 
Error 1
make[4]: Leaving directory 
'/build/reproducible-path/scilab-2024.1.0+dfsg/scilab/modules/elementary_functions'
make[3]: *** [Makefile:873: all-recursive] Error 1
make[3]: Leaving directory 
'/build/reproducible-path/scilab-2024.1.0+dfsg/scilab/modules'
make[2]: *** [Makefile:1666: all-recursive] Error 1
make[2]: Leaving directory 
'/build/reproducible-path/scilab-2024.1.0+dfsg/scilab'
make[1]: *** [debian/rules:53: override_dh_auto_build] Error 2
make[1]: Leaving directory '/build/reproducible-path/scilab-2024.1.0+dfsg'
make: *** [debian/rules:38: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: scilab
Source-Version: 2024.1.0+dfsg-8
Done: Pierre Gruet <[email protected]>

We believe that the bug you reported is fixed in the latest version of
scilab, 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.
Pierre Gruet <[email protected]> (supplier of updated scilab 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: Sat, 11 Oct 2025 20:16:39 +0200
Source: scilab
Architecture: source
Version: 2024.1.0+dfsg-8
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
<[email protected]>
Changed-By: Pierre Gruet <[email protected]>
Closes: 1097854
Changes:
 scilab (2024.1.0+dfsg-8) unstable; urgency=medium
 .
   * Fixing build with gcc-15 by cherry-picking upstream commit
     (Closes: #1097854)
Checksums-Sha1:
 43138a24866486227a32c9e6124e405e152075d9 3585 scilab_2024.1.0+dfsg-8.dsc
 19cfeaece4d6a140c53e1e6a1a4d8ba4612372a4 96672 
scilab_2024.1.0+dfsg-8.debian.tar.xz
 3831b3951025b783f42f7050acf495da5d18baf7 17065 
scilab_2024.1.0+dfsg-8_source.buildinfo
Checksums-Sha256:
 a813f7e392d3c3a9e9b6062269270cd547c39a411a1ceda5efd86ded376726cd 3585 
scilab_2024.1.0+dfsg-8.dsc
 8b0c568453a83a66631a8542027e0caab16f610d0b9cc945e408e608e5f1134b 96672 
scilab_2024.1.0+dfsg-8.debian.tar.xz
 f1939bd316b191529046f473767497be10dfe43a5b9f7d5127556af131ba621a 17065 
scilab_2024.1.0+dfsg-8_source.buildinfo
Files:
 cdb9f9b4a2edc1ce358137fe2731d521 3585 math optional scilab_2024.1.0+dfsg-8.dsc
 a8797ebeb102353b64448029536e9c31 96672 math optional 
scilab_2024.1.0+dfsg-8.debian.tar.xz
 2fa55e1f5d6bcaabe45e731a4fcc07a3 17065 math optional 
scilab_2024.1.0+dfsg-8_source.buildinfo

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

iQIzBAEBCgAdFiEEM8soQxPpC9J9y0UjYAMWptwndHYFAmjqoAgACgkQYAMWptwn
dHaFQQ//YgHgJ7a7824YBebKUPXdXFwqlYb2IvZOotE8ys6GOVkYPAtJTCiMH0Vu
wXykTWsO4MNfVDZGrR7cK6TyaAt7WgkbyuxmrtRxgKP0+0KtzK5FN+WwOiAWZ8Q2
CVE1C66C7dePh0MV+BNlnccDJbiBKHg9NSKgov6NoMqdNvEpsoRYYOJUYdytMdH6
kRqRqnUoapQTicNPhOOI0PLtNI0NpQrcewS8gQHWbyigiMO1exMCjjBREJiY68aO
WyEfa6z4bntqttC3jTxB31YboEKSF6Q7HlIpjsUOz+gyYdG7nQgMV48+NqjYX+lj
rstCw4slmtqQbJD6IOnK8nACAGFjc70Ud2oHZNVFHfnJWnWVHCWMgzD68kHrdJgS
eSv4nCMavlhcXoR8FF+psMB08itfdVNVaDWdZcdRNz1F3UKBCaddIS+qgFra+5CJ
IubguDW+3NNO5b2nJvawKfGFXo3KdGZJW4E44vQCsCddRtNfqEpK3rHJcQS672Uy
soztR+4bAjr11UtpordXsM7cKZVT/sovf8FSFQfe+1RvyWW12wFe9hvawU5vX69Z
H8rPTz5X4eyRic7qgQ51R4M+CnRMohwzoRmiNYQCl5VyzxcS31Aamswhz872Uutz
ksaB2QK+dcvt8sYNp5dEp/uBrWUcmVxa3le2SONbdfQ3sxMq9cs=
=bFY6
-----END PGP SIGNATURE-----

Attachment: pgp1oGThn7REp.pgp
Description: PGP signature


--- End Message ---
-- 
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers

Reply via email to