Processed: Bug #905595 in qtwebengine-opensource-src marked as pending

2018-09-29 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #905595 [src:qtwebengine-opensource-src] qtwebengine-opensource-src: libav* 
build-dependencies should be (>= 7:3.3.2)
Added tag(s) pending.

-- 
905595: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905595
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#905596: marked as done (qtwebengine-opensource-src: build error with libicu-dev from stable)

2018-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2018 08:39:35 +
with message-id 
and subject line Bug#905596: fixed in qtwebengine-opensource-src 5.11.2+dfsg-1
has caused the Debian Bug report #905596,
regarding qtwebengine-opensource-src: build error with libicu-dev from stable
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.)


-- 
905596: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905596
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtwebengine-opensource-src
Version: 5.11.1+dfsg-5
Severity: normal

Hi,

when building the package on stable (plus various backports), I got the
following error:

--
../../3rdparty/chromium/components/url_formatter/idn_spoof_checker.cc: In 
member function 'bool 
url_formatter::IDNSpoofChecker::SimilarToTopDomains(base::StringPiece16)':
../../3rdparty/chromium/components/url_formatter/idn_spoof_checker.cc:321:42: 
error: invalid conversion from 'UChar* {aka short unsigned int*}' to 
'char16_t*' [-fpermissive]
 char16_t* buffer = host_alt.getBuffer(-1);
~~^~~~
--

Between icu versions 57 (stable) and 60 (testing/unstable), there was a
change in the data type returned by the getBuffer method of
icu::UnicodeString.

This can either be fixed with the attached patch (note that a similar
reinterpret_cast<>() as introduced by the patch is done in a bunch of
other places within chromium where icu::UnicodeString is used), or you
should bump the libicu-dev build dependency to (>= 59), as icu 59 was
the upstream version that introduced the change.

Regards,
Andreas Ferber
--- a/src/3rdparty/chromium/components/url_formatter/idn_spoof_checker.cc
+++ b/src/3rdparty/chromium/components/url_formatter/idn_spoof_checker.cc
@@ -318,7 +318,7 @@
   if ((u04cf_pos = host.indexOf(0x4CF)) != -1) {
 icu::UnicodeString host_alt(host);
 size_t length = host_alt.length();
-char16_t* buffer = host_alt.getBuffer(-1);
+char16_t* buffer = reinterpret_cast(host_alt.getBuffer(-1));
 for (char16_t* uc = buffer + u04cf_pos ; uc < buffer + length; ++uc) {
   if (*uc == 0x4CF)
 *uc = 0x6C;  // Lowercase L
--- End Message ---
--- Begin Message ---
Source: qtwebengine-opensource-src
Source-Version: 5.11.2+dfsg-1

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

Debian distribution maintenance software
pp.
Dmitry Shachnev  (supplier of updated 
qtwebengine-opensource-src 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: Sat, 29 Sep 2018 10:54:33 +0300
Source: qtwebengine-opensource-src
Binary: qtwebengine5-dev qtwebengine5-private-dev libqt5webengine5 
libqt5webenginecore5 libqt5webenginewidgets5 libqt5webengine-data 
qml-module-qtwebengine qtwebengine5-dev-tools qtwebengine5-examples 
qtwebengine5-doc qtwebengine5-doc-html
Architecture: source
Version: 5.11.2+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Dmitry Shachnev 
Description:
 libqt5webengine-data - Web content engine library for Qt - Data
 libqt5webengine5 - Web content engine library for Qt
 libqt5webenginecore5 - Web content engine library for Qt - Core
 libqt5webenginewidgets5 - Web content engine library for Qt - Widget
 qml-module-qtwebengine - Qt WebEngine QML module
 qtwebengine5-dev - Web content engine library for Qt - development files
 qtwebengine5-dev-tools - Qt WebEngine tools
 qtwebengine5-doc - Qt 5 webengine documentation
 qtwebengine5-doc-html - Qt 5 webengine HTML documentation
 qtwebengine5-examples - Qt WebEngine - Examples
 qtwebengine5-private-dev - Web content engine library for Qt - private 
development files
Closes: 905595 905596 905658
Changes:
 qtwebengine-opensource-src (5.11.2+dfsg-1) experimental; urgency=medium
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Depend upon:
 - libicu-dev >= 59~ (Closes: #905596).
 - libvpx >= 1.7.0~ (Closes: #905658).
 This matches reality and allows easier backporting.
 Thanks Andreas Ferber for the bug rep

Bug#905595: marked as done (qtwebengine-opensource-src: libav* build-dependencies should be (>= 7:3.3.2))

2018-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2018 08:39:35 +
with message-id 
and subject line Bug#905595: fixed in qtwebengine-opensource-src 5.11.2+dfsg-1
has caused the Debian Bug report #905595,
regarding qtwebengine-opensource-src: libav* build-dependencies should be (>= 
7:3.3.2)
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.)


-- 
905595: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905595
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtwebengine-opensource-src
Version: 5.11.1+dfsg-5
Severity: normal

Hi,

when trying to build the package on stretch (with various backports), it
fails with the following error:

--
../../3rdparty/chromium/media/ffmpeg/ffmpeg_common.cc: In function 
'media::VideoCodec media::CodecIDToVideoCodec(AVCodecID)':
../../3rdparty/chromium/media/ffmpeg/ffmpeg_common.cc:192:10: error: 
'AV_CODEC_ID_AV1' was not declared in this scope
 case AV_CODEC_ID_AV1:
  ^~~
../../3rdparty/chromium/media/ffmpeg/ffmpeg_common.cc: In function 'AVCodecID 
media::VideoCodecToCodecID(media::VideoCodec)':
../../3rdparty/chromium/media/ffmpeg/ffmpeg_common.cc:217:14: error: 
'AV_CODEC_ID_AV1' was not declared in this scope
   return AV_CODEC_ID_AV1;
  ^~~
--

Looking at the git history of the ffmpeg debian package showed that the
first version containing the missing definition is version 7:3.3.2-1,
even though the FFmpeg upstream changelog itself first mentions AV1
support for version 4.0. This seems to be somewhat confirmed by the fact
that building against the FFmpeg packages from deb-multimedia.org (based
on FFmpeg 3.3.8) works.

Therefore I think the build-dependencies on libavcodec-dev,
libavformat-dev and libavutil-dev should be bumped to (>= 7:3.3.2)

Regards,
Andreas Ferber
--- End Message ---
--- Begin Message ---
Source: qtwebengine-opensource-src
Source-Version: 5.11.2+dfsg-1

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

Debian distribution maintenance software
pp.
Dmitry Shachnev  (supplier of updated 
qtwebengine-opensource-src 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: Sat, 29 Sep 2018 10:54:33 +0300
Source: qtwebengine-opensource-src
Binary: qtwebengine5-dev qtwebengine5-private-dev libqt5webengine5 
libqt5webenginecore5 libqt5webenginewidgets5 libqt5webengine-data 
qml-module-qtwebengine qtwebengine5-dev-tools qtwebengine5-examples 
qtwebengine5-doc qtwebengine5-doc-html
Architecture: source
Version: 5.11.2+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Dmitry Shachnev 
Description:
 libqt5webengine-data - Web content engine library for Qt - Data
 libqt5webengine5 - Web content engine library for Qt
 libqt5webenginecore5 - Web content engine library for Qt - Core
 libqt5webenginewidgets5 - Web content engine library for Qt - Widget
 qml-module-qtwebengine - Qt WebEngine QML module
 qtwebengine5-dev - Web content engine library for Qt - development files
 qtwebengine5-dev-tools - Qt WebEngine tools
 qtwebengine5-doc - Qt 5 webengine documentation
 qtwebengine5-doc-html - Qt 5 webengine HTML documentation
 qtwebengine5-examples - Qt WebEngine - Examples
 qtwebengine5-private-dev - Web content engine library for Qt - private 
development files
Closes: 905595 905596 905658
Changes:
 qtwebengine-opensource-src (5.11.2+dfsg-1) experimental; urgency=medium
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Depend upon:
 - libicu-dev >= 59~ (Closes: #905596).
 - libvpx >= 1.7.0~ (Closes: #905658).
 This matches reality and allows easier backporting.
 Thanks Andreas Ferber for the bug reports.
   * Add ~ to various build dependencies versions in order to let the package be
 backported.
 .
   [ Dmitry Shachnev ]
   * Update libqt5webenginecore5.symbols from buildds’ logs.
   * Set QTWEBENGINEPROCESS_PATH when running the tests.
   * New upstream release.
   * Drop patches, applied upstream:
 - system-libvpx.patc

Bug#905658: marked as done (qtwebengine-opensource-src: build-depend on libvpx-dev (>= 1.7.0~))

2018-09-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Sep 2018 08:39:35 +
with message-id 
and subject line Bug#905658: fixed in qtwebengine-opensource-src 5.11.2+dfsg-1
has caused the Debian Bug report #905658,
regarding qtwebengine-opensource-src: build-depend on libvpx-dev (>= 1.7.0~)
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.)


-- 
905658: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905658
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: qtwebengine-opensource-src
Version: 5.11.1+dfsg-5
Severity: wishlist

Hi,

when building on stretch it fails in the configure stage due to not
finding a suitable libvpx (the version 1.6.1 from stretch is to old), it
works however with a backport of libvpx 1.7.0 from unstable, therefore
the build-dependency on libvpx-dev should be bumped to (>= 1.7.0~).

As suggested, now with priority wishlist :-)

Regards,
Andreas Ferber
--- End Message ---
--- Begin Message ---
Source: qtwebengine-opensource-src
Source-Version: 5.11.2+dfsg-1

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

Debian distribution maintenance software
pp.
Dmitry Shachnev  (supplier of updated 
qtwebengine-opensource-src 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: Sat, 29 Sep 2018 10:54:33 +0300
Source: qtwebengine-opensource-src
Binary: qtwebengine5-dev qtwebengine5-private-dev libqt5webengine5 
libqt5webenginecore5 libqt5webenginewidgets5 libqt5webengine-data 
qml-module-qtwebengine qtwebengine5-dev-tools qtwebengine5-examples 
qtwebengine5-doc qtwebengine5-doc-html
Architecture: source
Version: 5.11.2+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Dmitry Shachnev 
Description:
 libqt5webengine-data - Web content engine library for Qt - Data
 libqt5webengine5 - Web content engine library for Qt
 libqt5webenginecore5 - Web content engine library for Qt - Core
 libqt5webenginewidgets5 - Web content engine library for Qt - Widget
 qml-module-qtwebengine - Qt WebEngine QML module
 qtwebengine5-dev - Web content engine library for Qt - development files
 qtwebengine5-dev-tools - Qt WebEngine tools
 qtwebengine5-doc - Qt 5 webengine documentation
 qtwebengine5-doc-html - Qt 5 webengine HTML documentation
 qtwebengine5-examples - Qt WebEngine - Examples
 qtwebengine5-private-dev - Web content engine library for Qt - private 
development files
Closes: 905595 905596 905658
Changes:
 qtwebengine-opensource-src (5.11.2+dfsg-1) experimental; urgency=medium
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Depend upon:
 - libicu-dev >= 59~ (Closes: #905596).
 - libvpx >= 1.7.0~ (Closes: #905658).
 This matches reality and allows easier backporting.
 Thanks Andreas Ferber for the bug reports.
   * Add ~ to various build dependencies versions in order to let the package be
 backported.
 .
   [ Dmitry Shachnev ]
   * Update libqt5webenginecore5.symbols from buildds’ logs.
   * Set QTWEBENGINEPROCESS_PATH when running the tests.
   * New upstream release.
   * Drop patches, applied upstream:
 - system-libvpx.patch
 - increase_decoderbuffer_kpaddingsize.patch
   * Bump Qt build-dependencies to 5.11.2.
   * Update libqt5webenginecore5.symbols from the current build log.
   * Bump FFmpeg build-dependencies to >= 7:4.0 (closes: #905595).
Checksums-Sha1:
 d00174ba1e699f70673e3361ec08d080a6eb572a 4684 
qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
 6148a3ac1282634c5a609137ad433d8224d75a88 229425196 
qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
 7bcb4512aef47c93b103b3d17ed8557b1f846f8d 463392 
qtwebengine-opensource-src_5.11.2+dfsg-1.debian.tar.xz
 6ca80c527e27d1869810b144a0cf948934c24e00 18657 
qtwebengine-opensource-src_5.11.2+dfsg-1_source.buildinfo
Checksums-Sha256:
 d42ce1837e5502cfc4fd1c7f92b8b600064a6509af37309e01dcaaea5698daaa 4684 
qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
 4f34e1ac30f94f1c116d29c9e1e3b018115d2942a65e835cea35804808428a29 229425196 
qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
 690d2bc07cc5d57

Processing of qtwebengine-opensource-src_5.11.2+dfsg-1_source.changes

2018-09-29 Thread Debian FTP Masters
qtwebengine-opensource-src_5.11.2+dfsg-1_source.changes uploaded successfully 
to localhost
along with the files:
  qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
  qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
  qtwebengine-opensource-src_5.11.2+dfsg-1.debian.tar.xz
  qtwebengine-opensource-src_5.11.2+dfsg-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



qtwebengine-opensource-src_5.11.2+dfsg-1_source.changes ACCEPTED into experimental

2018-09-29 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 29 Sep 2018 10:54:33 +0300
Source: qtwebengine-opensource-src
Binary: qtwebengine5-dev qtwebengine5-private-dev libqt5webengine5 
libqt5webenginecore5 libqt5webenginewidgets5 libqt5webengine-data 
qml-module-qtwebengine qtwebengine5-dev-tools qtwebengine5-examples 
qtwebengine5-doc qtwebengine5-doc-html
Architecture: source
Version: 5.11.2+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Dmitry Shachnev 
Description:
 libqt5webengine-data - Web content engine library for Qt - Data
 libqt5webengine5 - Web content engine library for Qt
 libqt5webenginecore5 - Web content engine library for Qt - Core
 libqt5webenginewidgets5 - Web content engine library for Qt - Widget
 qml-module-qtwebengine - Qt WebEngine QML module
 qtwebengine5-dev - Web content engine library for Qt - development files
 qtwebengine5-dev-tools - Qt WebEngine tools
 qtwebengine5-doc - Qt 5 webengine documentation
 qtwebengine5-doc-html - Qt 5 webengine HTML documentation
 qtwebengine5-examples - Qt WebEngine - Examples
 qtwebengine5-private-dev - Web content engine library for Qt - private 
development files
Closes: 905595 905596 905658
Changes:
 qtwebengine-opensource-src (5.11.2+dfsg-1) experimental; urgency=medium
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Depend upon:
 - libicu-dev >= 59~ (Closes: #905596).
 - libvpx >= 1.7.0~ (Closes: #905658).
 This matches reality and allows easier backporting.
 Thanks Andreas Ferber for the bug reports.
   * Add ~ to various build dependencies versions in order to let the package be
 backported.
 .
   [ Dmitry Shachnev ]
   * Update libqt5webenginecore5.symbols from buildds’ logs.
   * Set QTWEBENGINEPROCESS_PATH when running the tests.
   * New upstream release.
   * Drop patches, applied upstream:
 - system-libvpx.patch
 - increase_decoderbuffer_kpaddingsize.patch
   * Bump Qt build-dependencies to 5.11.2.
   * Update libqt5webenginecore5.symbols from the current build log.
   * Bump FFmpeg build-dependencies to >= 7:4.0 (closes: #905595).
Checksums-Sha1:
 d00174ba1e699f70673e3361ec08d080a6eb572a 4684 
qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
 6148a3ac1282634c5a609137ad433d8224d75a88 229425196 
qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
 7bcb4512aef47c93b103b3d17ed8557b1f846f8d 463392 
qtwebengine-opensource-src_5.11.2+dfsg-1.debian.tar.xz
 6ca80c527e27d1869810b144a0cf948934c24e00 18657 
qtwebengine-opensource-src_5.11.2+dfsg-1_source.buildinfo
Checksums-Sha256:
 d42ce1837e5502cfc4fd1c7f92b8b600064a6509af37309e01dcaaea5698daaa 4684 
qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
 4f34e1ac30f94f1c116d29c9e1e3b018115d2942a65e835cea35804808428a29 229425196 
qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
 690d2bc07cc5d57059c2c15450fdd64877500898202163a72a14abb8c9724c31 463392 
qtwebengine-opensource-src_5.11.2+dfsg-1.debian.tar.xz
 d3feb064072dda09530e712ad61b52afd18ff4ff2397e1e84fd5cd09cd220490 18657 
qtwebengine-opensource-src_5.11.2+dfsg-1_source.buildinfo
Files:
 343a1130a0f8b12b3140d2f2faef8d02 4684 libs optional 
qtwebengine-opensource-src_5.11.2+dfsg-1.dsc
 f8bb856023e8cc80a2a1d299a5102cdf 229425196 libs optional 
qtwebengine-opensource-src_5.11.2+dfsg.orig.tar.xz
 9b1ae9d803fc1ec69b4f3c4840ef0711 463392 libs optional 
qtwebengine-opensource-src_5.11.2+dfsg-1.debian.tar.xz
 aae0d6532fc2f49c647c558778c5fdb2 18657 libs optional 
qtwebengine-opensource-src_5.11.2+dfsg-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEbEPcK+5mZmLK5jNU1v5xA2P4XdMFAluvMSoTHG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRDW/nEDY/hd012nD/9vgXzSeiTs1j7bTHzjp1K8O2Y2P/E4
V6cupXOOATH72G/qQmXoDFJ1P4org751LpMAaFgxvEbyGWRM64nGjFipOoiw2exN
uIp7+hCGpc8hGmXDHoT0GlkB2HVSaqY7uYril4CqO6o/2zVNDpc7X5iC0hK35Dz2
UQo9hd2veDBieNupfnfDhCBrwD5HYXAQ0s4+SpweCqAhIpC9wWjS2rl1s9cDKwAM
ay1Wu0oBsvf46qIiXoDso3UuqSfl3UmngnwBRX6rjKCa77rW9kqfWzKowwVrQfL1
fvfkiDyQOP+p7BmWQ0dvj+Fun66m13k9PqjnUHpTHthQcMvwx4cNRRh1ApC/shth
g9ZXZdg+nJ116isy/9LBuDp2WIC8kOUvuXoa8+pXIdi8QSIU9WCbxzdBvDLfULlS
oLbyHTX7UT0qbbcmF63YayRuH9AikKa7MI3q01QpoYspdBVZv9Jbg4AdwLVQDkS+
zU8smk9u04BAUH1+9ZWaP9K3dxjvICcrqZFN5ah3OZWZgSP82snRj1PWwd9mwe0d
Le34CQEjr7xB+1tczymDow4IYo6LUGF1ViT+UTbSl5DIjqSQjabphS/j8Dx7iekg
F7S1NVUtXXNpoM2Yf/Y6Zh5CYCfeqbh45s2GXNV1dH4KYxb8sCb7mONs5aF1WoKI
77fWQLEhjTnluQ==
=Gs5c
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of qtsvg-opensource-src_5.11.2-1_source.changes

2018-09-29 Thread Debian FTP Masters
qtsvg-opensource-src_5.11.2-1_source.changes uploaded successfully to localhost
along with the files:
  qtsvg-opensource-src_5.11.2-1.dsc
  qtsvg-opensource-src_5.11.2.orig.tar.xz
  qtsvg-opensource-src_5.11.2-1.debian.tar.xz
  qtsvg-opensource-src_5.11.2-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



qtsvg-opensource-src_5.11.2-1_source.changes ACCEPTED into experimental

2018-09-29 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 29 Sep 2018 11:39:48 +0300
Source: qtsvg-opensource-src
Binary: libqt5svg5 libqt5svg5-dev qtsvg5-examples qtsvg5-doc qtsvg5-doc-html
Architecture: source
Version: 5.11.2-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Dmitry Shachnev 
Description:
 libqt5svg5 - Qt 5 SVG module
 libqt5svg5-dev - Qt 5 SVG module development files
 qtsvg5-doc - Qt 5 SVG documentation
 qtsvg5-doc-html - Qt 5 SVG HTML documentation
 qtsvg5-examples - Qt 5 SVG examples
Changes:
 qtsvg-opensource-src (5.11.2-1) experimental; urgency=medium
 .
   * New upstream release.
   * Update debian/libqt5svg5.symbols from buildds’ logs.
   * Bump Qt build-dependencies to 5.11.2.
   * Drop the no longer needed hack to fix wrong path in pkgconfig files.
   * Bump Standards-Version to 4.2.1, no changes needed.
Checksums-Sha1:
 93968a815e72f02c9a3b00cd9eefa6cc0439396e 2797 qtsvg-opensource-src_5.11.2-1.dsc
 43462aeecef7f354211938262b2089aa0079a543 1837076 
qtsvg-opensource-src_5.11.2.orig.tar.xz
 baded07b8ae106db36fd43503c2eb8e99e336835 11192 
qtsvg-opensource-src_5.11.2-1.debian.tar.xz
 e1095f5fe0f4c4ff8d8d670e3066ef21dc633fbd 11056 
qtsvg-opensource-src_5.11.2-1_source.buildinfo
Checksums-Sha256:
 276f3ffd56b7d208f07b63789f03367cd374b3b8eac3482c276a13c72e80ad7b 2797 
qtsvg-opensource-src_5.11.2-1.dsc
 bc16bbf855b466e77dda996d8c91fa73db7fe14d3aa98ce6d92145ca1a1bd166 1837076 
qtsvg-opensource-src_5.11.2.orig.tar.xz
 8e3933525c35b770193c93a0ee2ccd1c5ebb4757d87094d714484c1dd271b087 11192 
qtsvg-opensource-src_5.11.2-1.debian.tar.xz
 57008f14c8583e1194e4ebf406d1dd99110d6cd0d96e574d5e4643b471204734 11056 
qtsvg-opensource-src_5.11.2-1_source.buildinfo
Files:
 fbd735fa34d1090e40010f6423c99ce2 2797 libs optional 
qtsvg-opensource-src_5.11.2-1.dsc
 92aedcab07b4e827fc7a7edc71661063 1837076 libs optional 
qtsvg-opensource-src_5.11.2.orig.tar.xz
 74c12c82ce4f5a4719c37b2c05c3f1d0 11192 libs optional 
qtsvg-opensource-src_5.11.2-1.debian.tar.xz
 4b22fa26682db83ae99581edb3f2c40e 11056 libs optional 
qtsvg-opensource-src_5.11.2-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEbEPcK+5mZmLK5jNU1v5xA2P4XdMFAluvOrsTHG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRDW/nEDY/hd0ygiEACAcwyP0B3OcyacKOWqznECx9UeKNJE
WnzB6OqzY0eZY6GGXcIxuOeYXxAyQ4GqK5nhBWK0pwUiY4nKJZCNLNfg1YtbttSV
VGiDVmuLgGtRQgpm84T0CV7XpV5vD2+1Xou+tgDf90d2Y0AkpdQoIpqL+R/XbRhy
PwkyyomfB3L7DqGrZZxe28xjFDRKXngXKWXFZDHuXH7Hxh08jEmYOV41q7sqU2Jz
zF8agi2sauRh0lYqIsys6CMZp5SY8RDHwPTNnG3VX6brKJcSHQ7tFaveNz91Fvuk
p09GwlEIXyX4fkszdlcSksDenWEmJv5zKRnbFz5RGZNhtgXqy2XfxMUS/AvuSIR4
bSBes4znnsQjmrZJcpHsufRHNYLFVKdBEcitaXkszijg+qxPqJiVJUzDKum+8HYQ
PezzUtpWuaQAZ6x5I3Ult5gw3zyyQQFj5gVR613QXzQYwDK2DSLmbuvhptDGaWjO
PeJ3kQQuJ4naGgTuGKV/CD/CABlqEKsMwdVheXGVPFydXJGcvJd8KE9yGDMTughB
l3JvvAKAvdqaJv2sHg8And2mLGAAglSx/oUGX0Q2s2R5uQGueMcm75bZsjf+WNCp
sG2Pog86n0BPQleXPBEiqyrh10l0Qs9FQBv8WByceDBV3nfP88CzAiwAJTTm4OwF
scFB69VPQ+dwJw==
=qMah
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#868993: qtvirtualkeyboard-opensource-src: FTBFS: test crashes

2018-09-29 Thread Dmitry Shachnev
On Fri, Jul 21, 2017 at 06:46:52PM -0300, Lisandro Damián Nicanor Pérez Meyer 
wrote:
> > Builds of qtvirtualkeyboard-opensource-src failed on several
> > architectures because tst_inputpanel crashed, with "Illegal
> > instruction" on armhf and "Segmentation fault" on mips, mips64el, and
> > the non-release architecture sparc64.  (The mipsel build succeeded,
> > though.)
> >
> > Could you please take a look?
>
> Dmitry Shachnev points me that some bugs have been reported upstream:
>
> - armhf: 
> - sparc64: 

armhf currently fails with SIGBUS instead of SIGILL.

That is a different bug, I have just obtained a stack trace and reported
it upstream at https://bugreports.qt.io/browse/QTBUG-70825.

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Processing of partitionmanager_3.3.1-3_source.changes

2018-09-29 Thread Debian FTP Masters
partitionmanager_3.3.1-3_source.changes uploaded successfully to localhost
along with the files:
  partitionmanager_3.3.1-3.dsc
  partitionmanager_3.3.1.orig.tar.xz
  partitionmanager_3.3.1.orig.tar.xz.asc
  partitionmanager_3.3.1-3.debian.tar.xz
  partitionmanager_3.3.1-3_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



partitionmanager_3.3.1-3_source.changes ACCEPTED into unstable

2018-09-29 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 29 Sep 2018 14:49:40 +0200
Source: partitionmanager
Binary: partitionmanager
Architecture: source
Version: 3.3.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian KDE Extras Team 
Changed-By: Jonathan Carter 
Description:
 partitionmanager - file, disk and partition management for KDE
Changes:
 partitionmanager (3.3.1-3) unstable; urgency=medium
 .
   * Move git repository to salsa.debian.net
   * Update standards version to 4.2.1
   * Update maintainer team e-mail address
Checksums-Sha1:
 d34448b0cf5d2f8d3269f081df2900a7ff9583d9 2849 partitionmanager_3.3.1-3.dsc
 1dae6ff7dfcb1a61097ab53e051f83d6b3036d3f 1332860 
partitionmanager_3.3.1.orig.tar.xz
 2e235aa98cecd4da5cd0068f0662e2c308a9e562 1241 
partitionmanager_3.3.1.orig.tar.xz.asc
 6114421863c036b7abaa7aa149605a57a28039d1 16560 
partitionmanager_3.3.1-3.debian.tar.xz
 416838394531c5f23327b2f5f2dbaefcc3c20e91 21117 
partitionmanager_3.3.1-3_source.buildinfo
Checksums-Sha256:
 ed7ad6edb232d6d445fc42cc48330482fd092dfd8efbc69817019656c22a7938 2849 
partitionmanager_3.3.1-3.dsc
 5107955f9c70fc859bef04a54bffb28cd50efe355694232b9860e9d9c97a0f4a 1332860 
partitionmanager_3.3.1.orig.tar.xz
 7b1a45372b34599dea8e9c3c766b3c42ff667c18647cc4656602137e9212cdb4 1241 
partitionmanager_3.3.1.orig.tar.xz.asc
 a237ff8e91264789e939ea6e86d426541dc2e0f1f61deb583c82a264940cad59 16560 
partitionmanager_3.3.1-3.debian.tar.xz
 5399b57882b38dc8fb206634b814e6ba066e626b09d8ba551e932de3417d79ee 21117 
partitionmanager_3.3.1-3_source.buildinfo
Files:
 3a38c02b01b2aa7dfd357fd6fad26c50 2849 admin optional 
partitionmanager_3.3.1-3.dsc
 3fb4020bd5d132e9adde59314230a943 1332860 admin optional 
partitionmanager_3.3.1.orig.tar.xz
 4d46bb0fbf4d2421d3f7a85ad1c7a080 1241 admin optional 
partitionmanager_3.3.1.orig.tar.xz.asc
 5fdfc771969b6809b2018687bf9b42da 16560 admin optional 
partitionmanager_3.3.1-3.debian.tar.xz
 5625a4b144360bc493f37c802a377aff 21117 admin optional 
partitionmanager_3.3.1-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJDBAEBCgAtFiEExyA8CpIGcL+U8AuxsB0acqyNyaEFAluvdSIPHGpjY0BkZWJp
YW4ub3JnAAoJELAdGnKsjcmhPHwP/3sIqvAd5kozmBJflp0YjggbPwdXXCVqdki8
WmA8gD2RHbdOOniTXEtaQIEWuHzuknR0gRN7pLo0GJFgvBbIy+6hfroK31UxmqxI
2HvNAwIhEcq/SPM6XBPMBhv9ny9NuIJ9sgK2CGFI6exeQAwlQ4pwCohCMY9FybC/
vXVmcLCupmbEE0pM869OW0yr68vFkE3k6gvJ1NZ8qBKdkSU7JpEeY4231v/cS+x8
7evm8uTjKdeogIDD7+v+cIiTvmSmSeQ9GfVFxu/SwydK2S9+ZkY0LZHWqm2GXskq
i6f6F04XdtCUiXx2QlDns3wDoAEGMuQuess3uCha3DdbgNkLcKizMmijBxwRmWI8
yeJxo3T8apfbFfJQ8hECllelbQV13DOwYv2dM5DUVYwIhE24EsGm/TzjNh42pca6
yfoWpzjKa+xDykP0SIvmsRz3V748KAnVj7d44GkJRpeSiBm1brApKqK5ldobbHrO
a667jeT4DjauKGBSSCQGtnsJJZtqZ3B45HqPoC6a+X2vGcftu0ubvY6VfgwEfHAL
A1FI/4d5U9ibnY6t2WikVCsamXRakxDJhy7SW8phgNR9mARRP0Lyng2wl1EipjUr
V1XRgHBibEjmuNoa/q7+jTUWe8PvmuDGMJri6l0E93dcXa5SJcfucN9Ccq/JmK+Y
vIcDfu8w
=4Qmp
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#907427: openssl 1.1.1 breaks ssl tests

2018-09-29 Thread Sebastian Andrzej Siewior
On 2018-08-27 22:52:06 [+0200], Sandro Knauß wrote:
> Source: qtbase-opensource-src, kimap
> Version: kimap/18.07.90-1
> Control: block 907015 by -1
> 
> When I built my KDE PIM packages locally I built against openssl 1.1.0h-4 and 
> I had no issues running the KIMAP tests.
> With openssl 1.1.1~~pre9-1 (experimental) the tests breaks. See [1] for more 
> examples.
> 
> You may want to merge with #907340 or #907340, as those are also failings 
> tests because of openssl 1.1.1.
> 
> hefee
> 
> [1] https://buildd.debian.org/status/package.php?p=kimap&suite=experimental
> 
> [...]
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) "Error 
> loading local certificate, error:140AB18F:SSL 
> routines:SSL_CTX_use_certificate:ee key too small"
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) 
> QAbstractSocket::SocketError(21)
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) "Unable 
> to init SSL Context: "
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) 
> QAbstractSocket::SocketError(20)
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) "The 
> remote host closed the connection"
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) 
> QAbstractSocket::RemoteHostClosedError
> QWARN  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) 
> org.kde.pim.kimap: Connection to server lost  0
> FAIL!  : LoginJobTest::shouldUseSsl(any protocol with anyssl version) 
> 'login->exec()' returned FALSE. ()
>Loc: [/<>/autotests/loginjobtest.cpp(250)]

Could you try to increase the keys used in the testsuite to atleast
2048bit? Then it should pass. If that is the case than please unblock
the bug.

Sebastian