Your message dated Thu, 30 Jun 2016 16:44:56 +0000
with message-id <e1bif5e-0007ic...@franck.debian.org>
and subject line Bug#816571: fixed in libwx-scintilla-perl 0.39-3
has caused the Debian Bug report #816571,
regarding libwx-scintilla-perl: FTBFS with GCC 6: call overloaded is ambiguous
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.)


-- 
816571: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=816571
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libwx-scintilla-perl
Version: 0.39-2
Severity: normal
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-6 gcc-6-overloaded-ambiguous

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.

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.68.0 (15 Jan 2016) on dl580gen9-02.hlinux
...
> g++ -c -I/usr/lib/x86_64-linux-gnu/wx/include/gtk2-unicode-3.0 
> -I/usr/include/wx-3.0 -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__ 
> -pthread -pthread  -g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 
> -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__  -DWXBUILDING -DSCI_LEXER 
> -DLINK_LEXERS -DWXUSINGDLL -DWXMAKINGDLL_STC -D__WX__ -c -fPIC -o 
> wx-scintilla/src/scintilla/src/scintilladll_Editor.o -O2 -Wall 
> -Wno-missing-braces -Wno-char-subscripts 
> -MTwx-scintilla/src/scintilla/src/scintilladll_Editor.o 
> -MFwx-scintilla/src/scintilla/src/scintilladll_Editor.o.d -MD -MP 
> -Iwx-scintilla/include -Iwx-scintilla/src/scintilla/include 
> -Iwx-scintilla/src/scintilla/src -Iwx-scintilla/src 
> -I/usr/lib/x86_64-linux-gnu/wx/include/gtk2-unicode-3.0 -I/usr/include/wx-3.0 
>  wx-scintilla/src/scintilla/src/Editor.cxx
> wx-scintilla/src/scintilla/src/Editor.cxx: In member function 'long int 
> Editor::FindText(uptr_t, sptr_t)':
> wx-scintilla/src/scintilla/src/Editor.cxx:5748:7: warning: 'template<class> 
> class std::auto_ptr' is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<CaseFolder> pcf(CaseFolderForEncoding());
>        ^~~~~~~~
> In file included from /usr/include/c++/6/memory:81:0,
>                  from wx-scintilla/src/scintilla/src/Editor.cxx:18:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> wx-scintilla/src/scintilla/src/Editor.cxx: In member function 'long int 
> Editor::SearchText(unsigned int, uptr_t, sptr_t)':
> wx-scintilla/src/scintilla/src/Editor.cxx:5793:7: warning: 'template<class> 
> class std::auto_ptr' is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<CaseFolder> pcf(CaseFolderForEncoding());
>        ^~~~~~~~
> In file included from /usr/include/c++/6/memory:81:0,
>                  from wx-scintilla/src/scintilla/src/Editor.cxx:18:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> wx-scintilla/src/scintilla/src/Editor.cxx: In member function 'long int 
> Editor::SearchInTarget(const char*, int)':
> wx-scintilla/src/scintilla/src/Editor.cxx:5844:7: warning: 'template<class> 
> class std::auto_ptr' is deprecated [-Wdeprecated-declarations]
>   std::auto_ptr<CaseFolder> pcf(CaseFolderForEncoding());
>        ^~~~~~~~
> In file included from /usr/include/c++/6/memory:81:0,
>                  from wx-scintilla/src/scintilla/src/Editor.cxx:18:
> /usr/include/c++/6/bits/unique_ptr.h:49:28: note: declared here
>    template<typename> class auto_ptr;
>                             ^~~~~~~~
> wx-scintilla/src/scintilla/src/Editor.cxx: In function 'bool Close(Point, 
> Point)':
> wx-scintilla/src/scintilla/src/Editor.cxx:5871:23: error: call of overloaded 
> 'abs(XYPOSITION)' is ambiguous
>   if (abs(pt1.x - pt2.x) > 3)
>                        ^
> In file included from /usr/include/c++/6/cstdlib:75:0,
>                  from /usr/include/c++/6/stdlib.h:36,
>                  from wx-scintilla/src/scintilla/src/Editor.cxx:8:
> /usr/include/stdlib.h:774:12: note: candidate: int abs(int)
>  extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur;
>             ^~~
> In file included from /usr/include/c++/6/stdlib.h:36:0,
>                  from wx-scintilla/src/scintilla/src/Editor.cxx:8:
> /usr/include/c++/6/cstdlib:185:3: note: candidate: __int128 std::abs(__int128)
>    abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; }
>    ^~~
> /usr/include/c++/6/cstdlib:180:3: note: candidate: long long int 
> std::abs(long long int)
>    abs(long long __x) { return __builtin_llabs (__x); }
>    ^~~
> /usr/include/c++/6/cstdlib:172:3: note: candidate: long int std::abs(long int)
>    abs(long __i) { return __builtin_labs(__i); }
>    ^~~
> wx-scintilla/src/scintilla/src/Editor.cxx:5873:23: error: call of overloaded 
> 'abs(XYPOSITION)' is ambiguous
>   if (abs(pt1.y - pt2.y) > 3)


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

--- End Message ---
--- Begin Message ---
Source: libwx-scintilla-perl
Source-Version: 0.39-3

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

Debian distribution maintenance software
pp.
gregor herrmann <gre...@debian.org> (supplier of updated libwx-scintilla-perl 
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 ftpmas...@ftp-master.debian.org)


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

Format: 1.8
Date: Thu, 30 Jun 2016 16:41:33 +0200
Source: libwx-scintilla-perl
Binary: libwx-scintilla-perl
Architecture: source
Version: 0.39-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org>
Changed-By: gregor herrmann <gre...@debian.org>
Closes: 816571
Description: 
 libwx-scintilla-perl - source code editor component for wxWidgets
Changes:
 libwx-scintilla-perl (0.39-3) unstable; urgency=medium
 .
   * Team upload.
 .
   [ gregor herrmann ]
   * Rename autopkgtest configuration file(s) as per new pkg-perl-
     autopkgtest schema.
 .
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
 .
   [ gregor herrmann ]
   * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
   * Add patch from wxWidgets upstream Git for GCC-6 compatibility.
     (Closes: #816571)
   * Set bindnow linker flag in debian/rules.
   * Add lintian override for hardening-* messages.
   * Turn a URL into HTTPS in debian/copyright. Thanks to duck.
   * Declare compliance with Debian Policy 3.9.8.
Checksums-Sha1: 
 b5cb27108616766c680a36b030f9b7c27d15517e 2334 libwx-scintilla-perl_0.39-3.dsc
 be2ff729331521bd62263289b91a149e5118ae2d 5816 
libwx-scintilla-perl_0.39-3.debian.tar.xz
Checksums-Sha256: 
 d22a214adf8de02691e199021a487185a5bcbd552844c15dee77aadcf3073d21 2334 
libwx-scintilla-perl_0.39-3.dsc
 59f488d706f37aa90bf3cf5d319780523dae11512574f139d2c2b144c4c89bc0 5816 
libwx-scintilla-perl_0.39-3.debian.tar.xz
Files: 
 c1c1ee9c002c98f1fb67a9a63167a58a 2334 perl optional 
libwx-scintilla-perl_0.39-3.dsc
 e0f1bf05e16cae7ab64c72bd9f50b24a 5816 perl optional 
libwx-scintilla-perl_0.39-3.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQJ8BAEBCgBmBQJXdTBEXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGDXwP/iwhpRLlrLPyMG4VoOYUwDAo
kSrgsgoS6dPks0L/3qE0DCawXdahR2VfvB2VpwrVA9vkcaNbCejet11KHf5iLKyd
/fgDjeG9we9HZpyOtves4/98D3fGAuM9/pUwg5ke7ZecXxOIOBW+bdwIoOWW7NpE
QNK2gnjfjQLfgREWHTT63usp6v+MWoChO7AE1Zi/XckwVIWIw2UVHjFHt+Is/6F6
KxTig3BcdGXbFGgkR/PGa7lxCOy1Fh9KEULy2txaLF0eoZSTH2WiOZA9BydJMu1T
VwNDOFxxGIRoL4J7mm93EawGBd9RMjKPkV8VBSuclAXFrwgz+hQRI7/DPOhonQ9/
OgJypUJ1nQsccigrxJvAsYDOwFHIfgzYvkRioY3HBmp81aaYp/GeunR4DVecjDeR
edtIU8wXVgR8rz8/de/H0y9eBKPw47nBiFlfQEmmp3v4vjSH02TgNUUqwPiQLyUX
VY8VHkBDS37otejYaweIo4DDpqXH5yGLmUuWiAuptLQUsrCP4DUJHLhogYsYVIkB
LBo3WwX4CZ1nHK3o5SEkKf7bNz2RrVXxyxYgdbG8ijSjcP+PEqwbZAiVLMNxej5e
PCYzpGXbJgdCbQagQTvj/4T3f1TmJhpfWgN/4VNbk7Qj7pn5XebkufC/M+fXz0nO
tyBXLqQa/v2yDttbZKzG
=6S9z
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to