Your message dated Sat, 27 Jul 2024 13:53:02 +0000
with message-id <[email protected]>
and subject line Bug#1075536: fixed in sprng 2.0a-14
has caused the Debian Bug report #1075536,
regarding sprng: ftbfs with GCC-14
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.)


-- 
1075536: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075536
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:sprng
Version: 2.0a-13
Severity: important
Tags: sid trixie
User: [email protected]
Usertags: ftbfs-gcc-14

[This bug is 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-14/g++-14, but succeeds to build with gcc-13/g++-13. The
severity of this report will be raised before the trixie release.

The full build log can be found at:
http://qa-logs.debian.net/2024/07/01/sprng_2.0a-13_unstable_gccexp.log
The last lines of the build log are at the end of this report.

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

  apt-get -t=experimental install g++ 

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-14/porting_to.html

[...]
rm -f *.o sprng seed checkpoint invalid_ID sprng-simple simple-simple 
seed-simple checkpoint-simple spawn sprngf seedf checkpointf invalid_IDf spawnf 
sprngf-simple simplef-simple seedf-simple checkpointf-simple pi-simple  
pif-simple  sprng_mpi fsprng_mpi 2streams_mpi seed_mpi message_mpi 
sprng-simple_mpi fsprng-simple_mpi seed-simple_mpi message-simple_mpi 
sprngf_mpi fsprngf_mpi seedf_mpi messagef_mpi 2streamsf_mpi sprngf-simple_mpi 
fsprngf-simple_mpi seedf-simple_mpi messagef-simple_mpi pi-simple_mpi *~ *.i 
core a.out 
make[2]: Leaving directory '/<<PKGBUILDDIR>>/EXAMPLES'
make[2]: Entering directory '/<<PKGBUILDDIR>>/TESTS'
rm -f *~ core a.out
make[2]: Leaving directory '/<<PKGBUILDDIR>>/TESTS'
make[2]: Entering directory '/<<PKGBUILDDIR>>/lib'
rm -f lib*
make[2]: Leaving directory '/<<PKGBUILDDIR>>/lib'
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
rm -rvf EXAMPLES/sprngD SRC/check_gen_simple SRC/check_gen_ptr
removed 'EXAMPLES/sprngD'
removed 'SRC/check_gen_simple'
removed 'SRC/check_gen_ptr'
dh_clean
 debian/rules build
dh_testdir
dh_auto_build -- src
        make -j8 src
make[1]: Entering directory '/<<PKGBUILDDIR>>'
make -C SRC
make[2]: Entering directory '/<<PKGBUILDDIR>>/SRC'
(cd sprng; make )
make[3]: Entering directory '/<<PKGBUILDDIR>>/SRC/sprng'
(cd ..; make sprng_common)
make[4]: Entering directory '/<<PKGBUILDDIR>>/SRC'
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT primes_32.c 
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT primes_64.c 
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT -DAdd_ fwrap_mpi.c
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT -DAdd_ cputime.c
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT makeseed.c
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT store.c
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT simple_mpi.c
gcc -c -O -fpic -DUSE_PMLCG   -O2 -D_REENTRANT memory.c
primes_32.c: In function ‘getprime_32’:
primes_32.c:74:5: error: implicit declaration of function ‘memcpy’ 
[-Wimplicit-function-declaration]
   74 |     memcpy(prime_array,prime_list_32+offset,need*sizeof(int));
      |     ^~~~~~
primes_32.c:5:1: note: include ‘<string.h>’ or provide a declaration of ‘memcpy’
    4 | #include "primelist_32.h"
  +++ |+#include <string.h>
    5 | 
primes_32.c:74:5: warning: incompatible implicit declaration of built-in 
function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
   74 |     memcpy(prime_array,prime_list_32+offset,need*sizeof(int));
      |     ^~~~~~
primes_32.c:74:5: note: include ‘<string.h>’ or provide a declaration of 
‘memcpy’
make[4]: *** [Makefile:50: primes_32.o] Error 1
make[4]: *** Waiting for unfinished jobs....
primes_64.c: In function ‘getprime_64’:
primes_64.c:75:5: error: implicit declaration of function ‘memcpy’ 
[-Wimplicit-function-declaration]
   75 |     memcpy(prime_array,prime_list_64+offset,need*sizeof(unsigned int));
      |     ^~~~~~
primes_64.c:5:1: note: include ‘<string.h>’ or provide a declaration of ‘memcpy’
    4 | #include "primelist_64.h"
  +++ |+#include <string.h>
    5 | 
primes_64.c:75:5: warning: incompatible implicit declaration of built-in 
function ‘memcpy’ [-Wbuiltin-declaration-mismatch]
   75 |     memcpy(prime_array,prime_list_64+offset,need*sizeof(unsigned int));
      |     ^~~~~~
primes_64.c:75:5: note: include ‘<string.h>’ or provide a declaration of 
‘memcpy’
make[4]: *** [Makefile:53: primes_64.o] Error 1
make[4]: Leaving directory '/<<PKGBUILDDIR>>/SRC'
make[3]: *** [Makefile:37: sprng] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/SRC/sprng'
make[2]: *** [Makefile:32: all] Error 2
make[2]: Leaving directory '/<<PKGBUILDDIR>>/SRC'
make[1]: *** [Makefile:36: src] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 src returned exit code 2
make: *** [debian/rules:37: build-stamp] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: sprng
Source-Version: 2.0a-14
Done: Dirk Eddelbuettel <[email protected]>

We believe that the bug you reported is fixed in the latest version of
sprng, 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.
Dirk Eddelbuettel <[email protected]> (supplier of updated sprng 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: SHA256

Format: 1.8
Date: Sat, 27 Jul 2024 08:17:09 -0500
Source: sprng
Architecture: source
Version: 2.0a-14
Distribution: unstable
Urgency: medium
Maintainer: Dirk Eddelbuettel <[email protected]>
Changed-By: Dirk Eddelbuettel <[email protected]>
Closes: 1075536
Changes:
 sprng (2.0a-14) unstable; urgency=medium
 .
   * Added includes to satisfy gcc-14                   (Closes: 1075536)
Checksums-Sha1:
 f58bc25ee36c20d49bd9a14713e528b6f643355e 1860 sprng_2.0a-14.dsc
 309bbd63c374506d8889e47e73ce3a1314b29781 10184 sprng_2.0a-14.debian.tar.xz
 96a40d7a0bf3ffe0ac190478fa00d4c94772073c 6976 sprng_2.0a-14_amd64.buildinfo
Checksums-Sha256:
 86fa26c87636bb74ee7845462f29609137456042fc3cdfb454067851ee6d1f87 1860 
sprng_2.0a-14.dsc
 ac2c3ed53f18a64c21b4bc40639650a47ab6086590c46020f9747dfd43a8877b 10184 
sprng_2.0a-14.debian.tar.xz
 9eb56fdf38955e492cebbdfa80899209daead38d316817c0e17057fa603f8c0e 6976 
sprng_2.0a-14_amd64.buildinfo
Files:
 17bbe083e39bf9a396873bfb14b90726 1860 math optional sprng_2.0a-14.dsc
 f7fa0fcbf02c3907f73c2de7c1bff2e5 10184 math optional 
sprng_2.0a-14.debian.tar.xz
 c437e4cf8b6cb3ff740f14a37f3c34af 6976 math optional 
sprng_2.0a-14_amd64.buildinfo

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

iQIVAwUBZqT1g6FIn+KrmaIaAQgQyg//bdDAdQNqCREZ+5neeLJqSPocflBoUImS
XTsj14yxUdKHEiWPIcRzajn0QlIyPzEc4C8Tuhjr/rWs/YTutD74q6iN1YRb7DD1
E4eDLdDpui7vlTxhYkE4HCIsZtAnX3/CkFMknMysmC3Kf885tn0IQ6Ro4W7jd5gk
8DEUCe+FaFuGctOWioJJBu8A8LI7fCalsjfcjmSYHpK0koB1o+SYDJMZmZ6hILlv
HPhNEh9u+v02IXfrddjGIVVpkRWbAHqKBpx2EwMaOwTYqgs3QMBS/6DgRJ7+aV8Q
gvjlYpY91r+HQ7IkhGIIANchvVn+F65qLhCCZPowi3QD6PYCYT8HSS2mquRyC0gW
vyGyMqHn46MFi5Pms7bYCBWcTcNS9RBEhK0WeCsoDdzGG+quDuNliy7JlALmX/VP
/ouC7g3HXdu+p+NcT5ShJ5TYcpqB2FpjwRQ2Lo2EFsneGJrx/qDBFTOeI51SvQuA
TQKQDYTJiRlGnvpn+NE7d/k/1oO7HHgcN4LDEtjj50qsrGwVMgbJFNTpweTNpW9D
mGDSqA+vXJ8sWr88m9axkJW0adMfVhfBAipx7H5aoRiEFU1TLdzLsVr7NY05t+J1
YG3mYdwXS3JhYNrjlOYZwJAaIsQIOtgZ/+PInKbzRVg9ppXOJ2CIk0xdD9h8W9ta
P9KaWloqhEc=
=bZvk
-----END PGP SIGNATURE-----

Attachment: pgpeZHacnz3Od.pgp
Description: PGP signature


--- End Message ---

Reply via email to