Your message dated Mon, 08 Sep 2025 18:25:09 +0000
with message-id <[email protected]>
and subject line Bug#1113971: Removed package(s) from unstable
has caused the Debian Bug report #1097170,
regarding libcitygml: 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.)
--
1097170: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097170
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:libcitygml
Version: 2.5.2-1
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/libcitygml_2.5.2-1_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
[...]
| ^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/enum_type_bitmask.h:50:33:
note: in definition of macro ‘ENUM_CLASS_BITWISE_OPERATORS_DEFS’
50 | /*constexpr*/ LIBCITYGML_EXPORT type_name operator|(type_name l,
type_name r); \
| ^~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/cityobject.h:144:56:
error: ‘CityObjectsType’ in ‘class citygml::CityObject’ does not name a type
144 | ENUM_CLASS_BITWISE_OPERATORS_DEFS(citygml::CityObject::CityObjectsType);
| ^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/enum_type_bitmask.h:51:33:
note: in definition of macro ‘ENUM_CLASS_BITWISE_OPERATORS_DEFS’
51 | /*constexpr*/ LIBCITYGML_EXPORT type_name operator&(type_name l,
type_name r); \
| ^~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/cityobject.h:144:56:
error: ‘CityObjectsType’ in ‘class citygml::CityObject’ does not name a type
144 | ENUM_CLASS_BITWISE_OPERATORS_DEFS(citygml::CityObject::CityObjectsType);
| ^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/enum_type_bitmask.h:52:33:
note: in definition of macro ‘ENUM_CLASS_BITWISE_OPERATORS_DEFS’
52 | /*constexpr*/ LIBCITYGML_EXPORT type_name operator^(type_name l,
type_name r);\
| ^~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/cityobject.h:144:56:
error: ‘CityObjectsType’ in ‘class citygml::CityObject’ does not name a type
144 | ENUM_CLASS_BITWISE_OPERATORS_DEFS(citygml::CityObject::CityObjectsType);
| ^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/enum_type_bitmask.h:53:33:
note: in definition of macro ‘ENUM_CLASS_BITWISE_OPERATORS_DEFS’
53 | /*constexpr*/ LIBCITYGML_EXPORT type_name operator~(type_name l);
| ^~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:23:35:
error: ‘CityObjectsType’ is not a member of ‘citygml::CityObject’
23 | typedef std::map< CityObject::CityObjectsType, std::vector<const
CityObject*> > CityObjectsMap;
| ^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:23:35:
error: ‘CityObjectsType’ is not a member of ‘citygml::CityObject’
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:23:83:
error: template argument 1 is invalid
23 | typedef std::map< CityObject::CityObjectsType, std::vector<const
CityObject*> > CityObjectsMap;
|
^
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:23:83:
error: template argument 3 is invalid
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:23:83:
error: template argument 4 is invalid
/build/reproducible-path/libcitygml-2.5.2/sources/include/citygml/citymodel.h:40:69:
error: ‘citygml::CityObject::CityObjectsType’ has not been declared
40 | const ConstCityObjects getAllCityObjectsOfType(
CityObject::CityObjectsType type ) const;
|
^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp: In
member function ‘void citygml::CityModel::addToCityObjectsMapRecursive(const
citygml::CityObject*)’:
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:48:34:
error: qualified-id in declaration before ‘it’
48 | CityObjectsMap::iterator it =
m_cityObjectsMap.find(cityObj->getType());
| ^~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:50:13:
error: ‘it’ was not declared in this scope; did you mean ‘int’?
50 | if (it == m_cityObjectsMap.end()) {
| ^~
| int
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:50:36:
error: request for member ‘end’ in
‘((citygml::CityModel*)this)->citygml::CityModel::m_cityObjectsMap’, which is
of non-class type ‘citygml::CityObjectsMap’ {aka ‘int’}
50 | if (it == m_cityObjectsMap.end()) {
| ^~~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:53:39:
error: ‘const class citygml::CityObject’ has no member named ‘getType’
53 | m_cityObjectsMap[cityObj->getType()] = std::vector<const
CityObject*>(tmp);
| ^~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp: At
global scope:
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:77:28:
error: ‘const citygml::ConstCityObjects
citygml::CityModel::getAllCityObjectsOfType’ is not a static data member of
‘class citygml::CityModel’
77 | const ConstCityObjects CityModel::getAllCityObjectsOfType(
CityObject::CityObjectsType type ) const
| ^~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:77:76:
error: ‘CityObjectsType’ is not a member of ‘citygml::CityObject’
77 | const ConstCityObjects CityModel::getAllCityObjectsOfType(
CityObject::CityObjectsType type ) const
|
^~~~~~~~~~~~~~~
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/citymodel.cpp:77:99:
error: expected ‘,’ or ‘;’ before ‘const’
77 | const ConstCityObjects CityModel::getAllCityObjectsOfType(
CityObject::CityObjectsType type ) const
|
^~~~~
[ 15%] Building CXX object
sources/CMakeFiles/citygml.dir/src/citygml/georeferencedtexture.cpp.o
cd /build/reproducible-path/libcitygml-2.5.2/obj-x86_64-linux-gnu/sources &&
/usr/bin/c++ -DCITYGML_LIBRARY -DLIBCITYGML_BUILD -DLIBCITYGML_DYNAMIC
-DUSE_GDAL -DXERCES_STATIC_LIBRARY -Dcitygml_EXPORTS
-I/build/reproducible-path/libcitygml-2.5.2/sources/include -I/usr/include/gdal
-g -O2 -ffile-prefix-map=/build/reproducible-path/libcitygml-2.5.2=.
-fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2
-Wdate-time -D_FORTIFY_SOURCE=2 -std=c++11 -fPIC -fPIC -MD -MT
sources/CMakeFiles/citygml.dir/src/citygml/georeferencedtexture.cpp.o -MF
CMakeFiles/citygml.dir/src/citygml/georeferencedtexture.cpp.o.d -o
CMakeFiles/citygml.dir/src/citygml/georeferencedtexture.cpp.o -c
/build/reproducible-path/libcitygml-2.5.2/sources/src/citygml/georeferencedtexture.cpp
make[3]: *** [sources/CMakeFiles/citygml.dir/build.make:96:
sources/CMakeFiles/citygml.dir/src/citygml/citymodel.cpp.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory
'/build/reproducible-path/libcitygml-2.5.2/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:132: sources/CMakeFiles/citygml.dir/all]
Error 2
make[2]: Leaving directory
'/build/reproducible-path/libcitygml-2.5.2/obj-x86_64-linux-gnu'
make[1]: *** [Makefile:169: all] Error 2
make[1]: Leaving directory
'/build/reproducible-path/libcitygml-2.5.2/obj-x86_64-linux-gnu'
dh_auto_build: error: cd obj-x86_64-linux-gnu && make -j8 "INSTALL=install
--strip-program=true" VERBOSE=1 returned exit code 2
make: *** [debian/rules:18: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Version: 2.5.2-1+rm
Dear submitter,
as the package libcitygml has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1113971
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Paul Tagliamonte (the ftpmaster behind the curtain)
--- End Message ---
_______________________________________________
Pkg-grass-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel