Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libqt5-qtwebengine for openSUSE:Factory checked in at 2022-03-28 17:00:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebengine (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtwebengine" Mon Mar 28 17:00:19 2022 rev:76 rq:964921 version:5.15.8 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtwebengine/libqt5-qtwebengine.changes 2022-01-14 23:12:35.634606775 +0100 +++ /work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new.1900/libqt5-qtwebengine.changes 2022-03-28 17:01:13.085022919 +0200 @@ -1,0 +2,6 @@ +Fri Mar 25 14:31:28 UTC 2022 - Fabian Vogt <fv...@suse.com> + +- Add patch to fix build with GCC 12: + * 0001-skia-Some-includes-to-fix-build-with-GCC-12.patch + +------------------------------------------------------------------- New: ---- 0001-skia-Some-includes-to-fix-build-with-GCC-12.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtwebengine.spec ++++++ --- /var/tmp/diff_new_pack.VhWlbs/_old 2022-03-28 17:01:15.037025571 +0200 +++ /var/tmp/diff_new_pack.VhWlbs/_new 2022-03-28 17:01:15.045025582 +0200 @@ -47,6 +47,8 @@ Patch2: sandbox-statx-futex_time64.patch # PATCH-FIX-OPENSUSE Patch3: rtc-dont-use-h264.patch +# PATCH-FIX-UPSTREAM +Patch4: 0001-skia-Some-includes-to-fix-build-with-GCC-12.patch # http://www.chromium.org/blink is not ported to PowerPC & s390 ExcludeArch: ppc ppc64 ppc64le s390 s390x # Try to fix i586 MemoryErrors with rpmlint ++++++ 0001-skia-Some-includes-to-fix-build-with-GCC-12.patch ++++++ >From 68799a1e0815b20ca59ce354a55280399257a201 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <fv...@suse.de> Date: Fri, 25 Mar 2022 15:29:28 +0100 Subject: [PATCH] skia: Some includes to fix build with GCC 12 Those includes got introduced upstream for other reasons and fixed building with GCC 12 as a side effect. --- src/3rdparty/chromium/third_party/skia/include/core/SkColor.h | 2 ++ src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/3rdparty/chromium/third_party/skia/include/core/SkColor.h b/src/3rdparty/chromium/third_party/skia/include/core/SkColor.h index 36527e38e53..f77c24ade82 100644 --- a/src/3rdparty/chromium/third_party/skia/include/core/SkColor.h +++ b/src/3rdparty/chromium/third_party/skia/include/core/SkColor.h @@ -12,6 +12,8 @@ #include "include/core/SkScalar.h" #include "include/core/SkTypes.h" +#include <array> + /** \file SkColor.h Types, consts, functions, and macros for colors. diff --git a/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp b/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp index 7260365b2c6..3164650728e 100644 --- a/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp +++ b/src/3rdparty/chromium/third_party/skia/src/utils/SkParseColor.cpp @@ -8,6 +8,8 @@ #include "include/utils/SkParse.h" +#include <algorithm> // std::lower_bound + static constexpr const char* gColorNames[] = { "aliceblue", "antiquewhite", -- 2.34.1