Hello community, here is the log from the commit of package libqt5-qtbase for openSUSE:Factory checked in at 2019-02-13 10:16:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtbase (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtbase.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtbase" Wed Feb 13 10:16:48 2019 rev:93 rq:670075 version:5.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtbase/libqt5-qtbase.changes 2019-01-15 13:13:32.036491417 +0100 +++ /work/SRC/openSUSE:Factory/.libqt5-qtbase.new.28833/libqt5-qtbase.changes 2019-02-13 10:16:50.665369986 +0100 @@ -1,0 +2,20 @@ +Wed Jan 30 08:59:56 UTC 2019 - [email protected] + +- Add 0001-Fix-compile-issue-with-gcc-9.patch to fix building with + the latest libstdc++ (boo#1121561) + +------------------------------------------------------------------- +Fri Jan 18 19:53:40 UTC 2019 - Fabian Vogt <[email protected]> + +- Remove workaround patch as fixed in KWin meanwhile: + * 0001-Revert-xcb-Initialize-OpenGL-integration-only-when-r.patch + +------------------------------------------------------------------- +Thu Jan 17 14:01:50 UTC 2019 - Karl Cheng <[email protected]> + +- Add 0001-Revert-xcb-Initialize-OpenGL-integration-only-when-r.patch: + * Revert upstream commit 60cecc86f8 to work around display + flickering issues with some display drivers + (https://bugreports.qt.io/browse/QTBUG-73122, boo#1120090) + +------------------------------------------------------------------- New: ---- 0001-Fix-compile-issue-with-gcc-9.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtbase.spec ++++++ --- /var/tmp/diff_new_pack.aattjf/_old 2019-02-13 10:16:53.273368992 +0100 +++ /var/tmp/diff_new_pack.aattjf/_new 2019-02-13 10:16:53.273368992 +0100 @@ -72,6 +72,7 @@ # PATCH-FIX-UPSTREAM Patch20: 0001-Fix-qfloat16-methods-definition-without-declaration-.patch # patches 1000-2000 and above from upstream 5.12 branch # +Patch1000: 0001-Fix-compile-issue-with-gcc-9.patch # patches 2000-3000 and above from upstream 5.13/dev branch # Patch2000: reproducible-qrc-time.patch BuildRequires: alsa-devel ++++++ 0001-Fix-compile-issue-with-gcc-9.patch ++++++ >From 4bc9f80bb0875648a2f3eca5b14e4e9e56cfda4d Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen <[email protected]> Date: Tue, 13 Nov 2018 16:00:23 +0100 Subject: [PATCH] Fix compile issue with gcc 9 It appears messenne_twisters in the latest libstdc++ has one more requirement before it is willing to construct with our SystemGenerator struct as an sseq provider. Change-Id: If38151d1fa6f40a80274acc26d9ed6b4ac6049fe Reviewed-by: Giuseppe D'Angelo <[email protected]> Reviewed-by: Thiago Macieira <[email protected]> --- src/corelib/global/qrandom.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/corelib/global/qrandom.cpp b/src/corelib/global/qrandom.cpp index 23e5e499b2..03534cf453 100644 --- a/src/corelib/global/qrandom.cpp +++ b/src/corelib/global/qrandom.cpp @@ -218,6 +218,7 @@ struct QRandomGenerator::SystemGenerator #endif // Q_OS_WINRT static SystemGenerator &self(); + typedef quint32 result_type; void generate(quint32 *begin, quint32 *end) Q_DECL_NOEXCEPT_EXPR(FillBufferNoexcept); // For std::mersenne_twister_engine implementations that use something
