Your message dated Sun, 05 Jan 2020 07:22:56 +0000
with message-id <e1io0fu-0004bf...@fasolo.debian.org>
and subject line Bug#932208: Removed package(s) from unstable
has caused the Debian Bug report #925707,
regarding grib-api: ftbfs with GCC-9
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 ow...@bugs.debian.org
immediately.)
--
925707: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925707
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:grib-api
Version: 1.28.0-2
Severity: normal
Tags: sid bullseye
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-9
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-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.
The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/grib-api_1.28.0-2_unstable_gcc9.log
The last lines of the build log are at the end of this report.
To build with GCC 9, either set CC=gcc-9 CXX=g++-9 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-9/porting_to.html
GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.
[...]
| fdopen
/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19:
note: each undeclared identifier is reported only once for each function it
appears in
make[3]: *** [CMakeFiles/cmTC_f56bb.dir/build.make:66:
CMakeFiles/cmTC_f56bb.dir/CheckSymbolExists.c.o] Error 1
make[3]: Leaving directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
make[2]: *** [Makefile:121: cmTC_f56bb/fast] Error 2
make[2]: Leaving directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
File
/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdio.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef funopen
return ((int*)(&funopen))[argc];
#else
(void)argc;
return 0;
#endif
}
Performing C SOURCE FILE Test IEEE_BE failed with the following compile output:
Change Dir: /<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_0cb99/fast"
make[2]: Entering directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_0cb99.dir/build.make
CMakeFiles/cmTC_0cb99.dir/build
make[3]: Entering directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0cb99.dir/src.c.o
/usr/bin/cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time
-D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -DIEEE_BE -fPIE -o
CMakeFiles/cmTC_0cb99.dir/src.c.o -c
/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_0cb99
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0cb99.dir/link.txt
--verbose=1
/usr/bin/cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=.
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time
-D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -DIEEE_BE
-Wl,-z,defs -Wl,--as-needed -Wl,-z,relro -rdynamic
CMakeFiles/cmTC_0cb99.dir/src.c.o -o cmTC_0cb99
make[3]: Leaving directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
make[2]: Leaving directory
'/<<PKGBUILDDIR>>/debian/build-python3.7/CMakeFiles/CMakeTmp'
...and run output:
Return value: 1
Source file was:
int compare(unsigned char* a,unsigned char* b) {
while(*a != 0) if (*(b++)!=*(a++)) return 1;
return 0;
}
int main(int argc,char** argv) {
unsigned char dc[]={0x30,0x61,0xDE,0x80,0x93,0x67,0xCC,0xD9,0};
double da=1.23456789e-75;
unsigned char* ca;
unsigned char fc[]={0x05,0x83,0x48,0x22,0};
float fa=1.23456789e-35;
if (sizeof(double)!=8) return 1;
ca=(unsigned char*)&da;
if (compare(dc,ca)) return 1;
if (sizeof(float)!=4) return 1;
ca=(unsigned char*)&fa;
if (compare(fc,ca)) return 1;
return 0;
}
dh_auto_configure: cd debian/build-python3.7 && cmake
-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var
-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON
-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON "-GUnix Makefiles"
-DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu
-DPYTHON_EXECUTABLE=/usr/bin/python3.7 -DCMAKE_BUILD_TYPE=Release
-DDISABLE_OS_CHECK=ON -DENABLE_PNG=ON -DENABLE_PYTHON=ON -DENABLE_AEC=ON
-DENABLE_RPATHS=OFF -DENABLE_RELATIVE_RPATHS=OFF -DHAVE_BIT_REPRODUCIBLE=ON
"-DCFLAGS=-g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,defs
-Wl,--as-needed -Wl,-z,relro" -DENABLE_ALIGN_MEMORY=ON -DENABLE_GRIB_TIMER=ON
-DENABLE_GRIB_OMP_THREADS=ON ../.. returned exit code 1
make[1]: *** [debian/rules:50: override_dh_auto_configure] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:47: build-arch] Error 2
dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit
status 2
--- End Message ---
--- Begin Message ---
Version: 1.28.0-2+rm
Dear submitter,
as the package grib-api 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/932208
The version of this package that was in Debian prior to this removal
can still be found using http://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
ftpmas...@ftp-master.debian.org.
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---