[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#957033: marked as done (bbrun: ftbfs with GCC-10)



Your message dated Mon, 27 Apr 2020 21:33:27 +0000
with message-id <E1jTBNX-0004oQ-Tu@fasolo.debian.org>
and subject line Bug#957033: fixed in bbrun 1.6-8
has caused the Debian Bug report #957033,
regarding bbrun: 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 owner@bugs.debian.org
immediately.)


-- 
957033: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957033
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:bbrun
Version: 1.6-7
Severity: normal
Tags: sid bullseye
User: debian-gcc@lists.debian.org
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/bbrun_1.6-7_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

[...]
gcc -g -c -O2 -std=gnu89 -Wall bbrun.c -o bbrun.o `pkg-config --cflags gtk+-2.0`
In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
                 from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
                 from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
                 from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
                 from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
                 from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
                 from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
                 from /usr/include/gtk-2.0/gtk/gtk.h:33,
                 from bbrun.c:8:
/usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: ‘GTypeDebugFlags’ is deprecated [-Wdeprecated-declarations]
  236 | void            gtk_type_init   (GTypeDebugFlags    debug_flags);
      | ^~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
                 from /usr/include/glib-2.0/gobject/gbinding.h:29,
                 from /usr/include/glib-2.0/glib-object.h:23,
                 from /usr/include/glib-2.0/gio/gioenums.h:28,
                 from /usr/include/glib-2.0/gio/giotypes.h:28,
                 from /usr/include/glib-2.0/gio/gio.h:26,
                 from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
                 from /usr/include/gtk-2.0/gdk/gdk.h:32,
                 from /usr/include/gtk-2.0/gtk/gtk.h:32,
                 from bbrun.c:8:
/usr/include/glib-2.0/gobject/gtype.h:679:1: note: declared here
  679 | {
      | ^
In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
                 from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
                 from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
                 from /usr/include/gtk-2.0/gtk/gtk.h:126,
                 from bbrun.c:8:
/usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: ‘GTimeVal’ is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
   73 |   GTimeVal last_popdown;
      |   ^~~~~~~~
In file included from /usr/include/glib-2.0/glib/galloca.h:32,
                 from /usr/include/glib-2.0/glib.h:30,
                 from /usr/include/glib-2.0/gobject/gbinding.h:28,
                 from /usr/include/glib-2.0/glib-object.h:23,
                 from /usr/include/glib-2.0/gio/gioenums.h:28,
                 from /usr/include/glib-2.0/gio/giotypes.h:28,
                 from /usr/include/glib-2.0/gio/gio.h:26,
                 from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
                 from /usr/include/gtk-2.0/gdk/gdk.h:32,
                 from /usr/include/gtk-2.0/gtk/gtk.h:32,
                 from bbrun.c:8:
/usr/include/glib-2.0/glib/gtypes.h:551:8: note: declared here
  551 | struct _GTimeVal
      |        ^~~~~~~~~
bbrun.c: In function ‘parseArguments’:
bbrun.c:157:5: warning: ‘strncat’ specified bound 15 equals source length [-Wstringop-overflow=]
  157 |     strncat(historyFilename, DEFAULT_HIST_FILENAME, strlen(DEFAULT_HIST_FILENAME));
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bbrun.c: In function ‘readHistory’:
bbrun.c:198:7: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=]
  198 |       strncpy(item, buf, strlen(buf));
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bbrun.c: In function ‘updateHistory’:
bbrun.c:283:5: warning: ‘strncpy’ specified bound 257 equals destination size [-Wstringop-truncation]
  283 |     strncpy(item, newHistoryItem, MAXCMDLEN + 1);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -g -c -O2 -std=gnu89 -Wall ../wmgeneral/wmgeneral.c -o ../wmgeneral/wmgeneral.o `pkg-config --cflags gtk+-2.0`
gcc -g -c -O2 -std=gnu89 -Wall ../wmgeneral/misc.c -o ../wmgeneral/misc.o `pkg-config --cflags gtk+-2.0`
gcc -g -c -O2 -std=gnu89 -Wall ../wmgeneral/list.c -o ../wmgeneral/list.o `pkg-config --cflags gtk+-2.0`
gcc -Wall -g -o bbrun bbrun.o ../wmgeneral/wmgeneral.o ../wmgeneral/misc.o ../wmgeneral/list.o -L/usr/lib -L/usr/X11R6/lib -lXpm -lX11 -lXext `pkg-config --libs gtk+-2.0`
/usr/bin/ld: ../wmgeneral/wmgeneral.o:/<<PKGBUILDDIR>>/bbrun/../wmgeneral/wmgeneral.h:39: multiple definition of `display'; bbrun.o:/<<PKGBUILDDIR>>/bbrun/../wmgeneral/wmgeneral.h:39: first defined here
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:17: bbrun] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>/bbrun'
make: *** [debian/rules:22: build-stamp] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: bbrun
Source-Version: 1.6-8
Done: Sudip Mukherjee <sudipm.mukherjee@gmail.com>

We believe that the bug you reported is fixed in the latest version of
bbrun, 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 957033@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sudip Mukherjee <sudipm.mukherjee@gmail.com> (supplier of updated bbrun 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 21 Apr 2020 18:37:05 +0100
Source: bbrun
Architecture: source
Version: 1.6-8
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <packages@qa.debian.org>
Changed-By: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Closes: 957033
Changes:
 bbrun (1.6-8) unstable; urgency=medium
 .
   * QA upload.
   * Fix FTBFS with GCC-10. (Closes: #957033)
   * Update Standards-Version to 4.5.0
   * Use debhelper-compat.
     - Update compat level to 12.
   * Simplify debian/rules.
     - Add debian/mapages file.
   * Mark Vcs link to salsa.
Checksums-Sha1:
 7ccd1cd38a9993f252858009245bde07363232e3 1799 bbrun_1.6-8.dsc
 a833e8280a754f20fa9c241473549b9006b02dc5 7360 bbrun_1.6-8.debian.tar.xz
 a4cca1a1d9b08a3eba6b8a7684d1c2e9b8c5b7c6 10316 bbrun_1.6-8_source.buildinfo
Checksums-Sha256:
 f11aad809e40b0f33284c44ee5b53f9cb9b8710f1e128d0ec33f460ff46f33d3 1799 bbrun_1.6-8.dsc
 e8d06f52d4555b5789c699a44dee5bb56bf7e709c97e76cced0f442195eb7ece 7360 bbrun_1.6-8.debian.tar.xz
 28a7ad4720b1d55c90e0d52bf738e0c6c2daf37f2d3f8f619630bf94de3bb6d9 10316 bbrun_1.6-8_source.buildinfo
Files:
 7ee95807a6fc500d76ccc2571d0c054f 1799 x11 optional bbrun_1.6-8.dsc
 3fba7341e56050badcd71c3b9897744a 7360 x11 optional bbrun_1.6-8.debian.tar.xz
 99c549d39254cfb54b46d687d913aa41 10316 x11 optional bbrun_1.6-8_source.buildinfo

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

iQIzBAEBCgAdFiEEkjZVexcMh/iCHArDweDZLphvfH4FAl6nTR4ACgkQweDZLphv
fH4mLRAAxbJIc9XEtznfSxBIvy6eoJwppDOJxUHviSCkhD+SWvAYWLswNePAHuoM
piylqD1JiO8mkx5CTPeldJc+g8tz0JVV28Y1nEzKZWQEIFG7Xpyhy31xlKaBvTvl
0OIYmq8kH9DuYAHULmJr4gKzKXVj8iomIPbvbhRGpHOQE7GcceNzPXOfU5l2kvpw
YneQ3iAjCy5tzEnlOwWktQfxdLeCRInX2pCreVTeXfFu6mFslwPF6TabkEnkSUww
8uCAFY7S1LvoOqGILS7buL6P4NkrRH++KnzvtXoeelaTg9/ME9BApKXwkftGjziX
JJqG9+Zlig6Cr6PbIBNLvwNn/SLY7pUYKtTcsv4hlrUMhcM0fQNqesuekL9gEc0L
IjGJEpJEDDcKuWJDdh7C2tmpnNDc3MvfDZHkV+z1ufbi7//qq8QPsOHPHFK7rEkr
AzDNkD0o+42E6dYX+b1Vzxw0czqbaa4LbBFOxQ5Yshsey/O4FkO1J7veT5wgID3A
Yh4Jm+y0yZCtREP0asouj+8biB1JZKV86pLYn0Wc+6HcObNJr4Gg1nd5a2P3yixM
qAGrS6b/9z6bpXmQ5fS01zePleuLr4WDwW1fsJ42KNrG6LFKuMEqwPzwKt1zCtm0
3gDPryqK655PuDjw33+ZYmKrg8agl/0BOKTBy+egH1IP1Wyfh9k=
=J//8
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: