Your message dated Mon, 21 Sep 2020 15:33:33 +0000
with message-id <[email protected]>
and subject line Bug#957057: fixed in brightd 0.4.1-4
has caused the Debian Bug report #957057,
regarding brightd: 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.)


-- 
957057: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957057
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:brightd
Version: 0.4.1-3
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/brightd_0.4.1-3_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

[...]
   dh_auto_clean
        make -j4 clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
rm -f brightd brightd.1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_clean
 debian/rules build
dh build
   dh_update_autotools_config
   dh_autoreconf
   dh_auto_configure
   debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_build -- CFLAGS="-g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wl,-z,relro"
        make -j4 "INSTALL=install --strip-program=true" "CFLAGS=-g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro"
make[2]: Entering directory '/<<PKGBUILDDIR>>'
cc brightd.c -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wl,-z,relro -lX11 -lXss -DX11 -o brightd
sed -re 's/^\.nr no_x11 [01]/.nr no_x11 0/' brightd.1.tpl > brightd.1
brightd.c: In function ‘getBrightness’:
brightd.c:141:2: warning: ignoring return value of ‘fgets’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  141 |  fgets(line, 255, brightness);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c: In function ‘main’:
brightd.c:626:3: warning: ignoring return value of ‘daemon’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  626 |   daemon(0, 0);
      |   ^~~~~~~~~~~~
brightd.c:654:6: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  654 |      read(inotifyFdX11, buf, sizeof(struct inotify_event) * 2);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:688:2: warning: ignoring return value of ‘setegid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  688 |  setegid(userStruct->pw_gid);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:689:2: warning: ignoring return value of ‘setgid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  689 |  setgid(userStruct->pw_gid);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:690:2: warning: ignoring return value of ‘seteuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  690 |  seteuid(userStruct->pw_uid);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:691:2: warning: ignoring return value of ‘setuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  691 |  setuid(userStruct->pw_uid);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:778:4: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  778 |    read(inotifyFdEvents, buf, sizeof(struct inotify_event) + 50);
      |    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
brightd.c:781:39: warning: ‘%s’ directive writing up to 238 bytes into a region 
of size 236 [-Wformat-overflow=]
  781 |     sprintf(buf2, "/dev/input/by-path/%s", inotifyEvent->name);
      |                                       ^~
In file included from /usr/include/stdio.h:867,
                 from brightd.c:39:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: 
‘__builtin___sprintf_chk’ output between 20 and 258 bytes into a destination of 
size 255
   36 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   37 |       __bos (__s), __fmt, __va_arg_pack ());
      |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/bin/ld: /tmp/ccEadpmn.o: in function `signalHandlerQuit':
./brightd.c:204: undefined reference to `info'
/usr/bin/ld: ./brightd.c:212: undefined reference to `info'
/usr/bin/ld: /tmp/ccEadpmn.o: in function `main':
./brightd.c:598: undefined reference to `info'
/usr/bin/ld: ./brightd.c:647: undefined reference to `info'
/usr/bin/ld: ./brightd.c:676: undefined reference to `info'
/usr/bin/ld: /tmp/ccEadpmn.o:./brightd.c:681: more undefined references to 
`info' follow
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:18: brightd] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j4 "INSTALL=install --strip-program=true" 
"CFLAGS=-g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro" 
returned exit code 2
make[1]: *** [debian/rules:11: override_dh_auto_build] Error 25
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:8: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: brightd
Source-Version: 0.4.1-4
Done: Andrej Shadura <[email protected]>

We believe that the bug you reported is fixed in the latest version of
brightd, 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.
Andrej Shadura <[email protected]> (supplier of updated brightd 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: SHA256

Format: 1.8
Date: Mon, 21 Sep 2020 17:18:47 +0200
Source: brightd
Architecture: source
Version: 0.4.1-4
Distribution: unstable
Urgency: medium
Maintainer: Andrej Shadura <[email protected]>
Changed-By: Andrej Shadura <[email protected]>
Closes: 957057
Changes:
 brightd (0.4.1-4) unstable; urgency=medium
 .
   * Add DEP-3 headers, rename the FTCBFS patch.
   * Stop inlining functions used multiple times (Closes: #957057).
Checksums-Sha1:
 774f98e41d66f7b076cd2383109af1fe522119b9 1640 brightd_0.4.1-4.dsc
 959e9fc5ea64bc495c0665f89703e0adef2d5c62 5744 brightd_0.4.1-4.debian.tar.xz
Checksums-Sha256:
 6ff04bdbd570ee1d3594c5efc8729f87983de0a5dd8c87dca9f7d3c38b6aa0e3 1640 
brightd_0.4.1-4.dsc
 d90ed151ac10c3120d8f93b7d90fc7964691a16248b7411ce17dc937b412003a 5744 
brightd_0.4.1-4.debian.tar.xz
Files:
 ab90074b040eee258f85c9d388433e38 1640 utils optional brightd_0.4.1-4.dsc
 1074323a8bab03ef332aefeaa483ba95 5744 utils optional 
brightd_0.4.1-4.debian.tar.xz

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

iQEzBAEBCAAdFiEEeuS9ZL8A0js0NGiOXkCM2RzYOdIFAl9oxKkACgkQXkCM2RzY
OdJisAf9Eh8iR4omSqTUyS5ClOG+AONY7iaXYVb0e8GlVBmQfXwK0FTbltJr9e/q
d8aJ07krZLlgLTRiGVU/fxMRV2McGI8akaI5yx64g7gjbzM358kClW6C1UxfuUgG
JkEJTOLVykcKTKiJAqj9aYO66kccAL1U2ZayyMfB09WMjNORtUiePpxSblOhX24U
YRMfTyBUo94Tl3vXZ77MvlSHBQ4gdbZXYkeogAUnLH+zA+UppwT/ZESfsWX43uHO
NRIQHiz6rkQC9mKTkYIf7p0wtq5u/7+6iLuUJKlQJLDtjUu/a+V5ulzHS38Oc1hl
iHLwRL5UV9c8X/JRSYCpSDT6vdV/Rg==
=mQDx
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to