Your message dated Thu, 20 Aug 2020 20:39:06 +0000
with message-id <[email protected]>
and subject line Bug#957012: fixed in asmon 0.71-8.1
has caused the Debian Bug report #957012,
regarding asmon: ftbfs with GCC-10
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.)


-- 
957012: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957012
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:asmon
Version: 0.71-8
Severity: normal
Tags: sid bullseye
User: [email protected]
Usertags: ftbfs-gcc-10

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-10/g++-10, but succeeds to build with gcc-9/g++-9. 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/gcc10-20200225/asmon_0.71-8_unstable_gcc10.log
The last lines of the build log are at the end of this report.

To build with GCC 10, either set CC=gcc-10 CXX=g++-10 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-10/porting_to.html

[...]
        rm -f $i;\
done
rm -f asmon
make[1]: Leaving directory '/<<PKGBUILDDIR>>/asmon'
   dh_autoreconf_clean -O--sourcedirectory=asmon
   dh_clean -O--sourcedirectory=asmon
 debian/rules build
dh build --sourcedirectory=asmon
   dh_update_autotools_config -O--sourcedirectory=asmon
   dh_autoreconf -O--sourcedirectory=asmon
   dh_auto_configure -O--sourcedirectory=asmon
   dh_auto_build -O--sourcedirectory=asmon
        cd asmon && make -j4 "INSTALL=install --strip-program=true"
make[1]: Entering directory '/<<PKGBUILDDIR>>/asmon'
cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>/asmon=. -fstack-protector-strong -Wformat 
-Werror=format-security -std=gnu89 -c  asmon.c -o asmon.o
cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>/asmon=. -fstack-protector-strong -Wformat 
-Werror=format-security -std=gnu89 -c  ../wmgeneral/wmgeneral.c -o 
../wmgeneral/wmgeneral.o
cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>/asmon=. -fstack-protector-strong -Wformat 
-Werror=format-security -std=gnu89 -c  ../wmgeneral/misc.c -o 
../wmgeneral/misc.o
cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>/asmon=. -fstack-protector-strong -Wformat 
-Werror=format-security -std=gnu89 -c  ../wmgeneral/list.c -o 
../wmgeneral/list.o
asmon.c: In function ‘main’:
asmon.c:141:7: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  141 |       fscanf(fp, " %d", &Xpid);
      |       ^~~~~~~~~~~~~~~~~~~~~~~~
asmon.c:146:11: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  146 |           fscanf(fp, " %d", &Xpid);
      |           ^~~~~~~~~~~~~~~~~~~~~~~~
asmon.c: In function ‘asmon_routine’:
asmon.c:250:23: warning: ignoring return value of ‘system’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  250 |     if (Command[ 0 ]) system(Command);
      |                       ^~~~~~~~~~~~~~~
asmon.c: In function ‘DrawCPU’:
asmon.c:357:10: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  357 |          fscanf(fp, "cpu %lf %lf %lf %lf %lf %lf %lf", info, info+1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  358 |     info+2, info+3, info+4, info+5, info+6);
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
asmon.c:383:10: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  383 |          fscanf(fp, "cpu %lf %lf %lf %lf", info, info+1, info+2,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  384 |     info+3);
      |     ~~~~~~~
asmon.c: In function ‘DrawLoad’:
asmon.c:486:2: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  486 |  fscanf(fp, "%f", &ftmp);
      |  ^~~~~~~~~~~~~~~~~~~~~~~
asmon.c: In function ‘DrawMemSwap’:
asmon.c:624:3: warning: ignoring return value of ‘fgets’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  624 |   fgets(junk, 120, fp);
      |   ^~~~~~~~~~~~~~~~~~~~
asmon.c:659:6: warning: ignoring return value of ‘fgets’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  659 |      fgets(junk, 80, fp);
      |      ^~~~~~~~~~~~~~~~~~~
asmon.c:660:6: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  660 |      fscanf(fp, "Mem: %f %f %f %f %f %f\nSwap: %f %f %f",  &total,
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  661 |        &used, &freeM, &shared, &buffers, &cached,
      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  662 |        &swaptotal, &swapused, &swapfreeM);
      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
asmon.c: In function ‘DrawUptime’:
asmon.c:808:3: warning: ignoring return value of ‘fscanf’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  808 |   fscanf(fp, "%d",&upt);
      |   ^~~~~~~~~~~~~~~~~~~~~
cc -Wl,-z,relro -o asmon asmon.o  ../wmgeneral/wmgeneral.o ../wmgeneral/misc.o 
../wmgeneral/list.o -L/usr/X11R6/lib -lXpm -lXext -lX11 
/usr/bin/ld: ../wmgeneral/wmgeneral.o:./../wmgeneral/wmgeneral.h:31: multiple 
definition of `display'; asmon.o:./../wmgeneral/wmgeneral.h:31: first defined 
here
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:23: asmon] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>/asmon'
dh_auto_build: error: cd asmon && make -j4 "INSTALL=install 
--strip-program=true" returned exit code 2
make: *** [debian/rules:4: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: asmon
Source-Version: 0.71-8.1
Done: Sudip Mukherjee <[email protected]>

We believe that the bug you reported is fixed in the latest version of
asmon, 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.
Sudip Mukherjee <[email protected]> (supplier of updated asmon 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: Tue, 18 Aug 2020 20:26:34 +0100
Source: asmon
Architecture: source
Version: 0.71-8.1
Distribution: unstable
Urgency: medium
Maintainer: Eric Evans <[email protected]>
Changed-By: Sudip Mukherjee <[email protected]>
Closes: 957012
Changes:
 asmon (0.71-8.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix ftbfs with GCC-10. (Closes: #957012)
Checksums-Sha1:
 89e8053c9bb8cf30f122c2a9f4fa388fdbe2e338 1805 asmon_0.71-8.1.dsc
 7f1edc1d858da9d0c53287d5c4cee92c9cc05e44 5404 asmon_0.71-8.1.debian.tar.xz
 312a47daa8f13b0f050269720aa1ef37627ee80f 6201 asmon_0.71-8.1_amd64.buildinfo
Checksums-Sha256:
 19f62ebdbd0b2e9843496b3c0999c69cd04ed24fb7219b142789f8a4f772a5f1 1805 
asmon_0.71-8.1.dsc
 af6ded8f501664de3ac5b0a55f992393c142899a3761dee7aed72739a2285835 5404 
asmon_0.71-8.1.debian.tar.xz
 ebfe96130042e05643c9ca3f96dc8c343326c82ecb552f7c046c961ecd781d7d 6201 
asmon_0.71-8.1_amd64.buildinfo
Files:
 471afeab736744f066fccd2d2f187b4c 1805 x11 optional asmon_0.71-8.1.dsc
 ad48ce7478bd50d96742d9044f539abf 5404 x11 optional asmon_0.71-8.1.debian.tar.xz
 13c976e9f421dae34736b00ef77ed4d9 6201 x11 optional 
asmon_0.71-8.1_amd64.buildinfo

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

iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAl88LEsACgkQR5mjUUbR
KzVi1RAAkKJ9XvQDuYpeEMrhx3/uWYpyfVKGbx3XMsG5+Aw8TTi5HXqTbqlLSsXT
EMOewOnzWJ9w1NkGBTjgBmIaylzuxqDiq1nJHUuCNWrzOIUIJ9hzstoChboL6C8v
I+TtwOy5PCbBFa57JWiKAeLJa6IFJKcCNet5RbMK03j2H/LlF8mBwON+cfcdCXY6
fY19w8hH6fhWjIAnfeqn9SxTbudIfk5YyUINyxW40Fgx32jHTdj9arDI870WRtQu
dxxkArGoxhDo2SmcJYGhXb23k7VqZtizVjIBhIf5u2PIH+i++rEpCvLD/5I3MQNc
4SmqxWjzLA0Ll53s5XVCleMiCJJmmg2fq/upBobyTTTfGWbeyKEvtHyQwlIWwfLF
Ir5aFzJ1lCVr8MGZ7/XS0B0g56PjjDDKhEXCsrUStG+Ke6tFWWKgeQQIX20D6IqZ
a1YM+TxGSqNErqzayxjBXw3w+aPz/sgULVuFkLCU8hmjGoGDmSY7uETYZrqA+JK1
2tZspgQdHkPW85V1lAKu5KpYRdKZNhQvQorFK/niSb0UnkfWCDuMWwoNzSE9YlRT
j8E1HwFH0D2RTnwTNmBjFFAms+Rl61OH+Xb4GQfAxO2gBQlYl6uXF1D/LOPOZI/y
Tqugoidu0vi+LfRZ5/ND3wuj6pM66CVH7KqFz0UAUNi51vmt1Fg=
=Kq0N
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to