Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package webkit2gtk3 for openSUSE:Factory checked in at 2022-01-27 23:16:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/webkit2gtk3 (Old) and /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "webkit2gtk3" Thu Jan 27 23:16:28 2022 rev:135 rq:949126 version:2.34.4 Changes: -------- --- /work/SRC/openSUSE:Factory/webkit2gtk3/webkit2gtk3.changes 2022-01-23 12:16:38.456085800 +0100 +++ /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1898/webkit2gtk3.changes 2022-01-27 23:16:47.407051447 +0100 @@ -1,0 +2,6 @@ +Mon Jan 24 21:54:31 UTC 2022 - Michael Gorse <mgo...@suse.com> + +- Add webkit2gtk3-gcc12.patch: fix the build with gcc 12. +- Require glib2 2.44 to match source. + +------------------------------------------------------------------- @@ -4 +10 @@ -- Update to version 2.34.4: +- Update to version 2.34.4 (boo#1195064): @@ -8,0 +15,2 @@ + + Security fixes: CVE-2021-30934, CVE-2021-30936, CVE-2021-30951, + CVE-2021-30952, CVE-2021-30953, CVE-2021-30954, CVE-2021-30984. @@ -111 +119 @@ - CVE-2021-30897. + CVE-2021-30897, CVE-2021-45481, CVE-2021-45483. @@ -180 +188 @@ - CVE-2021-30809, CVE-2021-30836. + CVE-2021-30809, CVE-2021-30836, CVE-2021-45482. @@ -330 +338 @@ - + Security fixes: CVE-2020-27918, CVE-2020-29623, CVE-2021-1765 + + Security fixes: CVE-2020-27918, CVE-2020-29623, CVE-2021-1765, @@ -899 +907 @@ - ++ Security fixes: CVE-2019-8783, CVE-2019-8811, CVE-2019-8813, + + Security fixes: CVE-2019-8783, CVE-2019-8811, CVE-2019-8813, New: ---- webkit2gtk3-gcc12.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ webkit2gtk3.spec ++++++ --- /var/tmp/diff_new_pack.SpCQuf/_old 2022-01-27 23:16:48.095046694 +0100 +++ /var/tmp/diff_new_pack.SpCQuf/_new 2022-01-27 23:16:48.099046667 +0100 @@ -92,6 +92,8 @@ Patch1: fix-warnings.patch # PATCH-FIX-UPSTREAM webkit2gtk3-link-fix.patch mgo...@suse.com -- annotate executeJSCJITProbe. Patch2: webkit2gtk3-link-fix.patch +# PATCH-FIX-UPSTREAM webkit2gtk3-gcc12.patch webkit#235445 webkit#235458 mgo...@suse.com -- fix the build with gcc 12. +Patch3: webkit2gtk3-gcc12.patch BuildRequires: Mesa-libEGL-devel BuildRequires: Mesa-libGL-devel @@ -126,7 +128,7 @@ BuildRequires: pkgconfig(fontconfig) >= 2.8.0 BuildRequires: pkgconfig(freetype2) >= 2.4.2 BuildRequires: pkgconfig(geoclue-2.0) >= 2.1.5 -BuildRequires: pkgconfig(glib-2.0) >= 2.36 +BuildRequires: pkgconfig(glib-2.0) >= 2.44 %if %usegcc10 BuildRequires: pkgconfig(glproto) %endif ++++++ webkit2gtk3-gcc12.patch ++++++ diff -urp webkitgtk-2.34.3.orig/Source/JavaScriptCore/API/JSRetainPtr.h webkitgtk-2.34.3/Source/JavaScriptCore/API/JSRetainPtr.h --- webkitgtk-2.34.3.orig/Source/JavaScriptCore/API/JSRetainPtr.h 2021-09-01 04:16:46.000000000 -0500 +++ webkitgtk-2.34.3/Source/JavaScriptCore/API/JSRetainPtr.h 2022-01-20 13:07:21.713055778 -0600 @@ -32,6 +32,7 @@ #include <JavaScriptCore/JSObjectRef.h> #include <JavaScriptCore/JSStringRef.h> #include <algorithm> +#include <utility> inline void JSRetain(JSClassRef context) { JSClassRetain(context); } inline void JSRelease(JSClassRef context) { JSClassRelease(context); } diff -urp webkitgtk-2.34.3.orig/Source/WebCore/platform/graphics/x11/XUniqueResource.h webkitgtk-2.34.3/Source/WebCore/platform/graphics/x11/XUniqueResource.h --- webkitgtk-2.34.3.orig/Source/WebCore/platform/graphics/x11/XUniqueResource.h 2021-09-01 04:16:50.000000000 -0500 +++ webkitgtk-2.34.3/Source/WebCore/platform/graphics/x11/XUniqueResource.h 2022-01-20 13:07:21.713055778 -0600 @@ -28,6 +28,8 @@ #if PLATFORM(X11) +#include <utility> + #if USE(GLX) typedef unsigned long GLXPbuffer; typedef unsigned long GLXPixmap; diff -urp webkitgtk-2.34.3.orig/Source/WTF/wtf/CompletionHandler.h webkitgtk-2.34.3/Source/WTF/wtf/CompletionHandler.h --- webkitgtk-2.34.3.orig/Source/WTF/wtf/CompletionHandler.h 2021-09-01 04:16:49.000000000 -0500 +++ webkitgtk-2.34.3/Source/WTF/wtf/CompletionHandler.h 2022-01-20 13:07:21.713055778 -0600 @@ -27,6 +27,7 @@ #include <wtf/Function.h> #include <wtf/MainThread.h> +#include <utility> namespace WTF { diff -urp webkitgtk-2.34.3.orig/Source/WTF/wtf/MallocPtr.h webkitgtk-2.34.3/Source/WTF/wtf/MallocPtr.h --- webkitgtk-2.34.3.orig/Source/WTF/wtf/MallocPtr.h 2021-09-01 04:16:49.000000000 -0500 +++ webkitgtk-2.34.3/Source/WTF/wtf/MallocPtr.h 2022-01-20 13:07:21.713055778 -0600 @@ -27,6 +27,7 @@ #include <wtf/FastMalloc.h> #include <wtf/Noncopyable.h> +#include <utility> // MallocPtr is a smart pointer class that calls fastFree in its destructor. // It is intended to be used for pointers where the C++ lifetime semantics diff -urp webkitgtk-2.34.3.orig/Source/WTF/wtf/text/IntegerToStringConversion.h webkitgtk-2.34.3/Source/WTF/wtf/text/IntegerToStringConversion.h --- webkitgtk-2.34.3.orig/Source/WTF/wtf/text/IntegerToStringConversion.h 2021-09-01 04:16:49.000000000 -0500 +++ webkitgtk-2.34.3/Source/WTF/wtf/text/IntegerToStringConversion.h 2022-01-20 13:10:13.501962777 -0600 @@ -22,6 +22,7 @@ #pragma once #include <wtf/text/LChar.h> +#include <string> namespace WTF {