Your message dated Sun, 27 Nov 2016 10:49:52 +0000
with message-id <[email protected]>
and subject line Bug#811868: fixed in linuxdcpp 1.1.0-2
has caused the Debian Bug report #811868,
regarding linuxdcpp: FTBFS with GCC 6: no matching function for call to
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.)


-- 
811868: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811868
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: linuxdcpp
Version: 1.1.0-1
Severity: important
User: [email protected]
Usertags: ftbfs-gcc-6 gcc-6-no-match

This package fails to build with GCC 6.  GCC 6 has not been released
yet, but it's expected that GCC 6 will become the default compiler for
stretch.

Note that only the first error is reported; there might be more.  You
can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
you can set CC=gcc-6 CXX=g++-6 explicitly.

You may be able to find out more about this issue at
https://gcc.gnu.org/gcc-6/changes.html

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> g++ -o build/release/libdcpp/BufferedSocket.o -c -O3 -fomit-frame-pointer 
> -pthread -DHAVE_IFADDRS_H -DHAVE_LIBNOTIFY -DHAVE_LIBNOTIFY_0_7 -D_GNU_SOURCE 
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DNDEBUG 
> -D_DATADIR='"/usr/share"' -DBUILDING_DCPP -I. dcpp/BufferedSocket.cpp
> In file included from dcpp/BufferedSocket.cpp:22:0:
> dcpp/BufferedSocket.h:135:7: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<UnZFilter> filterIn;
>        ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> In file included from dcpp/BufferedSocket.cpp:22:0:
> dcpp/BufferedSocket.h:143:7: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<Socket> sock;
>        ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> In file included from dcpp/BufferedSocket.cpp:22:0:
> dcpp/BufferedSocket.h:161:22: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>   void setSocket(std::auto_ptr<Socket> s);
>                       ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> dcpp/BufferedSocket.cpp: In member function 'void 
> dcpp::BufferedSocket::setMode(dcpp::BufferedSocket::Modes, size_t)':
> dcpp/BufferedSocket.cpp:63:20: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>     filterIn = std::auto_ptr<UnZFilter>(new UnZFilter);
>                     ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> dcpp/BufferedSocket.cpp: At global scope:
> dcpp/BufferedSocket.cpp:71:37: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>  void BufferedSocket::setSocket(std::auto_ptr<Socket> s) {
>                                      ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> dcpp/BufferedSocket.cpp: In member function 'void 
> dcpp::BufferedSocket::accept(const dcpp::Socket&, bool, bool)':
> dcpp/BufferedSocket.cpp:86:7: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<Socket> s(secure ? 
> CryptoManager::getInstance()->getServerSocket(allowUntrusted) : new Socket);
>        ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> dcpp/BufferedSocket.cpp: In member function 'void 
> dcpp::BufferedSocket::connect(const string&, uint16_t, bool, bool, bool)':
> dcpp/BufferedSocket.cpp:98:7: warning: 'template<class> class std::auto_ptr' 
> is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<Socket> s(secure ? 
> CryptoManager::getInstance()->getClientSocket(allowUntrusted) : new Socket);
>        ^~~~~~~~
> 
> In file included from /usr/include/c++/6/memory:81:0,
>                  from dcpp/stdinc.h:117,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> 
> dcpp/BufferedSocket.cpp: In member function 'void 
> dcpp::BufferedSocket::addTask(dcpp::BufferedSocket::Tasks, 
> dcpp::BufferedSocket::TaskData*)':
> dcpp/BufferedSocket.cpp:481:39: error: no matching function for call to 
> 'std::deque<std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> > 
> >::push_back(std::pair<dcpp::BufferedSocket::Tasks, 
> dcpp::BufferedSocket::TaskData*>)'
>   tasks.push_back(make_pair(task, data)); taskSem.signal();
>                                        ^
> 
> In file included from /usr/include/c++/6/deque:64:0,
>                  from dcpp/stdinc.h:113,
>                  from dcpp/BufferedSocket.cpp:19:
> /usr/include/c++/6/bits/stl_deque.h:1517:7: note: candidate: void 
> std::deque<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = 
> std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >; _Alloc = 
> std::allocator<std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> > >; std::deque<_Tp, 
> _Alloc>::value_type = std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >]
>        push_back(const value_type& __x)
>        ^~~~~~~~~
> 
> /usr/include/c++/6/bits/stl_deque.h:1517:7: note:   no known conversion for 
> argument 1 from 'std::pair<dcpp::BufferedSocket::Tasks, 
> dcpp::BufferedSocket::TaskData*>' to 'const value_type& {aka const 
> std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >&}'
> /usr/include/c++/6/bits/stl_deque.h:1532:7: note: candidate: void 
> std::deque<_Tp, _Alloc>::push_back(std::deque<_Tp, _Alloc>::value_type&&) 
> [with _Tp = std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >; _Alloc = 
> std::allocator<std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> > >; std::deque<_Tp, 
> _Alloc>::value_type = std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >]
>        push_back(value_type&& __x)
>        ^~~~~~~~~
> 
> /usr/include/c++/6/bits/stl_deque.h:1532:7: note:   no known conversion for 
> argument 1 from 'std::pair<dcpp::BufferedSocket::Tasks, 
> dcpp::BufferedSocket::TaskData*>' to 
> 'std::deque<std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> > >::value_type&& {aka 
> std::pair<dcpp::BufferedSocket::Tasks, 
> boost::shared_ptr<dcpp::BufferedSocket::TaskData> >&&}'
> scons: *** [build/release/libdcpp/BufferedSocket.o] Error 1
> scons: building terminated because of errors.
> /usr/share/cdbs/1/class/scons.mk:36: recipe for target 
> 'debian/stamp-scons-build' failed

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise

--- End Message ---
--- Begin Message ---
Source: linuxdcpp
Source-Version: 1.1.0-2

We believe that the bug you reported is fixed in the latest version of
linuxdcpp, 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.
Andrey Rahmatullin <[email protected]> (supplier of updated linuxdcpp 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: Sun, 27 Nov 2016 14:50:35 +0500
Source: linuxdcpp
Binary: linuxdcpp
Architecture: source
Version: 1.1.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <[email protected]>
Changed-By: Andrey Rahmatullin <[email protected]>
Description:
 linuxdcpp  - Port of the Windows file-sharing program, DC++
Closes: 624570 811868 828423
Changes:
 linuxdcpp (1.1.0-2) unstable; urgency=medium
 .
   * QA upload.
   * Fix FTBFS with GCC 6, patch from Adrian Bunk (Closes: #811868).
   * Explicitly build with OpenSSL 1.0 (Closes: #828423).
   * Drop the menu file.
   * Drop debian/icons/ (Closes: #624570).
Checksums-Sha1:
 767fdf51c7b1287f6cd67ee3eb6e785dd73c2713 1895 linuxdcpp_1.1.0-2.dsc
 46adc1f12d965080be5969d00951b39150abd8d7 4540 linuxdcpp_1.1.0-2.debian.tar.xz
Checksums-Sha256:
 f13641494809d5950d47ff061339329fc595d101aa876cd42c8d29f21c513bb1 1895 
linuxdcpp_1.1.0-2.dsc
 890b83346190c8022d85d97e62001b547495059dd0207cf5ff4d4b499ef0de6f 4540 
linuxdcpp_1.1.0-2.debian.tar.xz
Files:
 fbb689c1754f2930cd0c2d298d1215ab 1895 net optional linuxdcpp_1.1.0-2.dsc
 2b12d33cc6db31cf10e4656f234594cf 4540 net optional 
linuxdcpp_1.1.0-2.debian.tar.xz

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

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAlg6t2wACgkQM2L3AxpJ
kuFXOg//Z5zs8FqW06ODgUp+Q+SyAieTJRgv7jcTSSQYwVzlrVpsF6JCVziUPT/5
Fg2q8S0etvfVGRILGEwUFyjqFO2mjnKxUHoES4TIqgLnh3Sl7TJhPBzDkpu4JnLX
F2ZRRCrRsbyHkFPlJ+5PWiQVIwPmnN12Oe3PZGsErjLXpKSEYoFQ2Pm9jVVc4vfd
CGEe/F8cfLzFrYLgCz+4wT+NMBpO841XZXLc0xWQll6suStxomyPy1kEK1JFLFzH
lTioKSXyi03f38Tdbnl6pJdqR7tkC8fkBjTaS1EKMM655ueUnw7DKhO1zF1o2R+m
1ZScoS29WATpfv/shpfj9dkZ9luHaIxBIOfx07gE+XCXHkBabU3808eJ2qtwka6V
SIicfzWlM89FdspVdxb+WnJTaLD9zv9H8wg5lqoRnLNn+QSzCxbrrOTxnvLt0uvi
ca/oG15lJxE6Ya5+gqXlUL0YiDLqJnrknrGI+7Yd35dhbRERi+k0NlH9VI8/8iho
oE2PeTtYFEfo+0fGF3vhMxkqzJjDDku2ITNM81QVOzN9Hco6HLWonIeG0tN4DcBb
fBiC/TnWZhCvzXjs9AivHY88lzMQvUw9c33p2itq5ldWuPCL3vbK2CIaagr7ULZL
Arfgvxpvl3J9WOyY53tt7g66nETXYB6UDhO4fnYXpgdlbsmBWQo=
=T5Qv
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to