Your message dated Sat, 07 Sep 2024 13:50:18 +0000
with message-id <[email protected]>
and subject line Bug#1075412: fixed in python-datrie 0.8.2-5
has caused the Debian Bug report #1075412,
regarding python-datrie: 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.)
--
1075412: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075412
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-datrie
Version: 0.8.2-4
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/python-datrie_0.8.2-4_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
[...]
!!
dist.fetch_build_eggs(dist.setup_requires)
WARNING: The wheel package is not available.
running build
running build_ext
building 'datrie' extension
creating build/temp.linux-x86_64-cpython-312
creating build/temp.linux-x86_64-cpython-312/src
x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall
-g -O2 -Werror=implicit-function-declaration
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection
-Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.12 -c src/datrie.c
-o build/temp.linux-x86_64-cpython-312/src/datrie.o
src/datrie.c: In function ‘__pyx_pf_6datrie_8BaseTrie___init__’:
src/datrie.c:5673:53: error: passing argument 1 of ‘trie_new’ from incompatible
pointer type [-Wincompatible-pointer-types]
5673 | __pyx_v_self->_c_trie = trie_new(__pyx_v_alpha_map->_c_alpha_map);
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
| |
| struct AlphaMap *
In file included from src/datrie.c:1228:
/usr/include/datrie/trie.h:120:35: note: expected ‘const AlphaMap *’ {aka
‘const struct _AlphaMap *’} but argument is of type ‘struct AlphaMap *’
120 | Trie * trie_new (const AlphaMap *alpha_map);
| ~~~~~~~~~~~~~~~~^~~~~~~~~
src/datrie.c: In function ‘__pyx_pf_6datrie_8BaseTrie_6clear’:
src/datrie.c:6351:47: error: passing argument 1 of ‘trie_new’ from incompatible
pointer type [-Wincompatible-pointer-types]
6351 | __pyx_v__c_trie = trie_new(__pyx_v_alpha_map->_c_alpha_map);
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
| |
| struct AlphaMap *
/usr/include/datrie/trie.h:120:35: note: expected ‘const AlphaMap *’ {aka
‘const struct _AlphaMap *’} but argument is of type ‘struct AlphaMap *’
120 | Trie * trie_new (const AlphaMap *alpha_map);
| ~~~~~~~~~~~~~~~~^~~~~~~~~
src/datrie.c: In function ‘__pyx_pf_6datrie_8AlphaMap___cinit__’:
src/datrie.c:27428:30: error: assignment to ‘struct AlphaMap *’ from
incompatible pointer type ‘AlphaMap *’ {aka ‘struct _AlphaMap *’}
[-Wincompatible-pointer-types]
27428 | __pyx_v_self->_c_alpha_map = alpha_map_new();
| ^
src/datrie.c: In function ‘__pyx_pf_6datrie_8AlphaMap_2__dealloc__’:
src/datrie.c:27484:32: error: passing argument 1 of ‘alpha_map_free’ from
incompatible pointer type [-Wincompatible-pointer-types]
27484 | alpha_map_free(__pyx_v_self->_c_alpha_map);
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
| |
| struct AlphaMap *
In file included from src/datrie.c:1227:
/usr/include/datrie/alpha-map.h:71:39: note: expected ‘AlphaMap *’ {aka ‘struct
_AlphaMap *’} but argument is of type ‘struct AlphaMap *’
71 | void alpha_map_free (AlphaMap *alpha_map);
| ~~~~~~~~~~^~~~~~~~~
src/datrie.c: In function ‘__pyx_f_6datrie_8AlphaMap_copy’:
src/datrie.c:27899:61: error: passing argument 1 of ‘alpha_map_clone’ from
incompatible pointer type [-Wincompatible-pointer-types]
27899 | __pyx_v_clone->_c_alpha_map =
alpha_map_clone(__pyx_v_self->_c_alpha_map);
|
~~~~~~~~~~~~^~~~~~~~~~~~~~
| |
| struct
AlphaMap *
/usr/include/datrie/alpha-map.h:69:46: note: expected ‘const AlphaMap *’ {aka
‘const struct _AlphaMap *’} but argument is of type ‘struct AlphaMap *’
69 | AlphaMap * alpha_map_clone (const AlphaMap *a_map);
| ~~~~~~~~~~~~~~~~^~~~~
src/datrie.c:27899:31: error: assignment to ‘struct AlphaMap *’ from
incompatible pointer type ‘AlphaMap *’ {aka ‘struct _AlphaMap *’}
[-Wincompatible-pointer-types]
27899 | __pyx_v_clone->_c_alpha_map =
alpha_map_clone(__pyx_v_self->_c_alpha_map);
| ^
src/datrie.c: In function ‘__pyx_f_6datrie_8AlphaMap__add_range’:
src/datrie.c:28590:50: error: passing argument 1 of ‘alpha_map_add_range’ from
incompatible pointer type [-Wincompatible-pointer-types]
28590 | __pyx_v_code = alpha_map_add_range(__pyx_v_self->_c_alpha_map,
__pyx_v_begin, __pyx_v_end);
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
| |
| struct AlphaMap *
/usr/include/datrie/alpha-map.h:73:45: note: expected ‘AlphaMap *’ {aka ‘struct
_AlphaMap *’} but argument is of type ‘struct AlphaMap *’
73 | int alpha_map_add_range (AlphaMap *alpha_map,
| ~~~~~~~~~~~^~~~~~~~~
error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
E: pybuild pybuild:389: build: plugin distutils failed with: exit code=1:
/usr/bin/python3 setup.py build
dh_auto_build: error: pybuild --build -i python{version} -p "3.11 3.12"
returned exit code 13
make[1]: *** [debian/rules:11: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:7: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: python-datrie
Source-Version: 0.8.2-5
Done: Michael R. Crusoe <[email protected]>
We believe that the bug you reported is fixed in the latest version of
python-datrie, 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.
Michael R. Crusoe <[email protected]> (supplier of updated python-datrie
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, 07 Sep 2024 15:21:36 +0200
Source: python-datrie
Architecture: source
Version: 0.8.2-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Michael R. Crusoe <[email protected]>
Closes: 1047783 1075412
Changes:
python-datrie (0.8.2-5) unstable; urgency=medium
.
* Team upload.
* d/rules: add -Wno-error=incompatible-pointer-types to the cflags as
a workaround for https://bugs.debian.org/1077205 ; Closes: #1075412
* d/watch: upgrade to version 4
* d/control: upgrade autopkgtest to pybuild
* Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
* d/control: upgrade to PEP-517 building
* d/clean: add more files. Closes: #1047783
Checksums-Sha1:
95098a8e58d80fb4760ff0f235b71911d56372b2 2168 python-datrie_0.8.2-5.dsc
cfc37b94b0558548fc2e739dbc61617d25b06ef0 4912
python-datrie_0.8.2-5.debian.tar.xz
3690ca92871c453310e79b5a5e108304f0e3a372 7555
python-datrie_0.8.2-5_source.buildinfo
Checksums-Sha256:
2640efc0997fe17308e49f01da3d6c760e51120c8088495eb67214b57438f8d8 2168
python-datrie_0.8.2-5.dsc
a42e895eed469500c757d51b91f826d7be22ce935158e0b96623d8d26a39c38f 4912
python-datrie_0.8.2-5.debian.tar.xz
7344181afd3374625a148f99f1daa12b4c24a8580ba0a744e0c9b1cedb887c13 7555
python-datrie_0.8.2-5_source.buildinfo
Files:
c054067a046973708a2a71964ef03ea2 2168 python optional python-datrie_0.8.2-5.dsc
2dc880120aaec64043bd1f468eb67120 4912 python optional
python-datrie_0.8.2-5.debian.tar.xz
91202192d2bfa997d994800342a66ba8 7555 python optional
python-datrie_0.8.2-5_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEck1gkzcRPHEFUNdHPCZ2P2xn5uIFAmbcVNQACgkQPCZ2P2xn
5uKy6A//YLoqHBqb6wMXxZSMh7RbFAw5InEta8CdcDt8JPzmgzIzD1359MNcAPBD
cyiSObAmUejNXpgpXt2sPexZipHnpPT2PCoXu9Hj08DZ9AWr9S8MHUPaPcGxXG0g
n8kMyIhSzfvCnqHSpR2tA5qzEfVrqCGhkMZ56vty3z7RnvXgwwBqQwWak+Y/3PPV
i03MPZgyfQJIAxzlk2+uic8M6bh1u8sExn5OOegQMuxnOZKMlwqRGmlzHp9PJzd+
jq2Frs2+nsMBGGQNLV6KPODc4umwf+HdCh3zMbz3crmjCFjWzJM9pXOsjdfKrR4A
yYLbZfihriNcnjzQiB7jRuccS+AcmOX5QVXqwC16oqyLBE7f1i/Zjegd3RENT5ZT
eeg/jC9h0KkzYDCtEaMoY54mxprNOpMigOCpx6hBJmHwQ8pzopzApKDuoh6lpDfc
2rqBHi7MtVpcAin/xs/tpmasEdwodxD1LAf76ecWJxFEbmns1qVFpA/BhWhUy1E6
r376EC767EjkpyYhwJnzyyldiP2TEOFWFUtDOV2K4LyxFHZLzZSt35kw+Bnvr9QZ
bOwscJlYnsatlUnYSLnCJs1cxZB3ztP3GF861IjJrQDB5AdBNe/au+SjDT6B1jTL
YHNC2gEESbZDzWpoymJyKSotwDBl/FLgKMdeT4h6/XK2lfPBTlQ=
=34pP
-----END PGP SIGNATURE-----
pgp22sZEwRE_9.pgp
Description: PGP signature
--- End Message ---