Your message dated Sat, 06 Sep 2025 22:09:24 +0000
with message-id <[email protected]>
and subject line Bug#1114346: fixed in rhvoice 1.14.0-3
has caused the Debian Bug report #1114346,
regarding rhvoice: FTBFS: src/audio/playback_stream_impl.hpp:32:25: error: 
'uint32_t' has not been declared
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.)


-- 
1114346: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1114346
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:rhvoice
Version: 1.14.0-2
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build.

Below you will find how the build ends (probably the most relevant part,
but not necessarily). If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/202509/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:rhvoice, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_clean
scons -c
scons: Reading SConscript files ...
Mkdir("build/linux")
Georgian language is skipped because of non-free license
Checking whether the C compiler works... yes
Checking whether the C++ compiler works... yes
Checking for pkg-config... yes
Checking for libpulse-simple... yes
Checking for ao... yes
Checking for portaudio-2.0... yes
Checking Speech Dispatcher version ... 0.12.1
Checking for giomm-2.4... yes
Checking for sonicCreateStream(0, 0) in C library sonic... yes
Configuring  /<<PKGBUILDDIR>>/src/core/config.h.in into 
/<<PKGBUILDDIR>>/src/core/config.h ...
Configuring  /<<PKGBUILDDIR>>/src/include/core/config.h.in into 
/<<PKGBUILDDIR>>/src/include/core/config.h ...
scons: done reading SConscript files.
scons: Cleaning targets ...
scons: done cleaning targets.
rm -fr /<<PKGBUILDDIR>>/build
py3clean .
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_clean
 debian/rules binary
dh binary
   dh_update_autotools_config
   dh_autoreconf
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/<<PKGBUILDDIR>>'
:
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
scons prefix="/usr" sysconfdir="/etc" libdir="/usr/lib/x86_64-linux-gnu" \
        CPPFLAGS="-Wdate-time -D_FORTIFY_SOURCE=2" \
        CC="cc" \
        CFLAGS="-g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection" \
        CXX="g++" \
        CXXFLAGS="-g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>=. 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection" \
        LINKFLAGS="-Wl,-z,relro" \
        enable_sonic=True
scons: Reading SConscript files ...
Mkdir("build/linux")
Georgian language is skipped because of non-free license
Checking whether the C compiler works... yes
Checking whether the C++ compiler works... yes
Checking for pkg-config... yes
Checking for libpulse-simple... yes
Checking for ao... yes
Checking for portaudio-2.0... yes
Checking Speech Dispatcher version ... 0.12.1
Checking for giomm-2.4... yes
Checking for sonicCreateStream(0, 0) in C library sonic... yes
Configuring  /<<PKGBUILDDIR>>/src/core/config.h.in into 
/<<PKGBUILDDIR>>/src/core/config.h ...
Configuring  /<<PKGBUILDDIR>>/src/include/core/config.h.in into 
/<<PKGBUILDDIR>>/src/include/core/config.h ...
scons: done reading SConscript files.
scons: Building targets ...
g++ -o build/linux/audio/audio.os -c -g -O2 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
-std=c++11 -O2 -pthread -fPIC -Wdate-time -D_FORTIFY_SOURCE=2 -DRHVOICE=1 
-DPACKAGE=\"RHVoice\" -DWITH_LIBAO=1 -DWITH_PULSE=1 -D_REENTRANT 
-DWITH_PORTAUDIO=1 -Ibuild/linux/include -Isrc/include -Ibuild/linux/audio 
-Isrc/audio -Isrc/include -Iusr/include/boost src/audio/audio.cpp
In file included from src/audio/audio.cpp:19:
src/audio/playback_stream_impl.hpp:32:25: error: 'uint32_t' has not been 
declared
   32 |       virtual void open(uint32_t sample_rate) =0;
      |                         ^~~~~~~~
src/audio/playback_stream_impl.hpp:1:1: note: 'uint32_t' is defined in header 
'<cstdint>'; this is probably fixable by adding '#include <cstdint>'
  +++ |+#include <cstdint>
    1 | /* Copyright (C) 2012  Olga Yakovleva <[email protected]> */
In file included from src/audio/audio.cpp:30:
src/audio/file_playback_stream_impl.hpp:32:17: error: 'uint32_t' has not been 
declared
   32 |       void open(uint32_t sample_rate);
      |                 ^~~~~~~~
src/audio/file_playback_stream_impl.hpp:21:1: note: 'uint32_t' is defined in 
header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
   20 | #include <fstream>
  +++ |+#include <cstdint>
   21 | #include "playback_stream_impl.hpp"
scons: *** [build/linux/audio/audio.os] Error 1
scons: building terminated because of errors.
make[1]: *** [debian/rules:14: override_dh_auto_build] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:8: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: rhvoice
Source-Version: 1.14.0-3
Done: Samuel Thibault <[email protected]>

We believe that the bug you reported is fixed in the latest version of
rhvoice, 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.
Samuel Thibault <[email protected]> (supplier of updated rhvoice 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, 06 Sep 2025 23:53:37 +0200
Source: rhvoice
Architecture: source
Version: 1.14.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian TTS Team <[email protected]>
Changed-By: Samuel Thibault <[email protected]>
Closes: 1114346
Changes:
 rhvoice (1.14.0-3) unstable; urgency=low
 .
   * debian/copyright: use spaces rather than tabs to start continuation lines.
   * Update standards version to 4.6.2, no changes needed.
   * Remove field Section on binary packages rhvoice-albanian,
     rhvoice-brazilian-portuguese, rhvoice-czech, rhvoice-english,
     rhvoice-esperanto, rhvoice-kyrgyz, rhvoice-macedonian, rhvoice-polish,
     rhvoice-russian, rhvoice-slovak, rhvoice-tatar, rhvoice-ukrainian,
     rhvoice-uzbek that duplicates source.
   * patches/uint32_t: Fix build against gcc-15 (Closes: Bug#1114346)
Checksums-Sha1:
 d119baf19449cbba318b3c4d7c7c5236310ce9e6 3420 rhvoice_1.14.0-3.dsc
 6b0b9e598dc45b21ad8ccae03ccae862a09312c1 34248 rhvoice_1.14.0-3.debian.tar.xz
 b9197c6e8912c4be966f58b607b19bb66e38a3dd 14999 rhvoice_1.14.0-3_amd64.buildinfo
Checksums-Sha256:
 b03c4e26fee7287f43ef25a7b62f18df223ab637989f5902de7523aeb4687068 3420 
rhvoice_1.14.0-3.dsc
 d66eb48fd4b290f216d15078591dbc4a2d9f8f3578ab55fe61a64bea915a13c4 34248 
rhvoice_1.14.0-3.debian.tar.xz
 b9dab23bec4fc5d3001dc9effc10cffa7f364026f9f675f28599195f73b6c35f 14999 
rhvoice_1.14.0-3_amd64.buildinfo
Files:
 0131d16a4a2858628dcf15c29c60e36b 3420 non-free/sound optional 
rhvoice_1.14.0-3.dsc
 a7808e839a88c5a5c310384bd4b671c6 34248 non-free/sound optional 
rhvoice_1.14.0-3.debian.tar.xz
 63104fe35ccf40adb3dac295a9d41935 14999 non-free/sound optional 
rhvoice_1.14.0-3_amd64.buildinfo

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

iQIzBAEBCgAdFiEEqpLrvfAUiqYaQ7iu5IlMrEVBS7AFAmi8ryMACgkQ5IlMrEVB
S7DiNQ/6AnqaOZkc5eMrJLX1LB+ImokWOmUmbO/wT2GjBuulMe59dQaUaDI48rZV
nWOK6g+Px2fDTr3ePbkNwHEb25rg6ENyo2igUz27WKydfNpIUsA9+TAKmhdCv/as
+sHInLe6OgUHqRii7KJk84gMxmeOQthw3gARtdwqn8Q8e9PNB7TOn+F8x9zo2SjN
A57j47+x2lFyiBD35heTQU2zjdV8RZmj3O9Ylh9u/tdM2r5x72EU1dAaQ9D/Mhq/
xgEPZUWRFb8deLMq/ldWXu3ScwGyuo2HII3Pa1YSSasxYky98BQqUgmh4qHYGfA0
V/qI1bv+wFWJLe1ULK/xXxCDRiYnpCi+9QZrk3j1W9DFjE53lOszslXnd2hEGZJ6
pLhirWHQKuE0lD0dFqfdetZuGNYkM2AnD6OwK9/eVqFAKMZI4K3BZUP3Yy5XLLLb
VWwZQVbgeNTDVCdSscns7iNA8aOwGU0hzw9FYCU1CTwIKeVagOfUCZnFxdi0Y/3a
ynPSnf+w2AAXC/WkTuvkddj/sgHqSCcLQnuPdToaGrtSunNX+dLSUMkmYqov+SrT
QhgPz0CqzcaR2K4M30rKrPxNNf4Ze4h9qONIWC1joO35FwjMSSMniDS/5KQOjYhv
TjUxu/UAj0vgAHh1ho+YvkThQhgwj6ni7J8Cy0CDqxRDw8WqUwM=
=yz4N
-----END PGP SIGNATURE-----

Attachment: pgpYCBy5jl__U.pgp
Description: PGP signature


--- End Message ---

Reply via email to