Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package webkit2gtk3 for openSUSE:Factory checked in at 2021-10-30 23:13:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/webkit2gtk3 (Old) and /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "webkit2gtk3" Sat Oct 30 23:13:27 2021 rev:127 rq:927912 version:2.34.1 Changes: -------- --- /work/SRC/openSUSE:Factory/webkit2gtk3/webkit2gtk3.changes 2021-10-23 23:13:55.500979592 +0200 +++ /work/SRC/openSUSE:Factory/.webkit2gtk3.new.1890/webkit2gtk3.changes 2021-10-30 23:14:32.971094714 +0200 @@ -1,0 +2,9 @@ +Tue Oct 26 22:10:23 UTC 2021 - Michael Gorse <mgo...@suse.com> + +- Add webkit2gtk3-link-fix.patch: taken from upstream, fixes the + build on SLE-15-SP4. +- Use gcc10 package on SLE <= 15-SP4. Gcc 7 is currently the + default there. +- Update gcc-c++ version requirement to match the cmake check. + +------------------------------------------------------------------- @@ -4 +13 @@ -- Update to version 2.34.1: +- Update to version 2.34.1 (boo#1191937): @@ -9,0 +19 @@ + + Security fixes: CVE-2021-42762. @@ -26 +36 @@ -- Update to version 2.34.0: +- Update to version 2.34.0 (boo#1192063): @@ -27,0 +38 @@ + + Security fixes: CVE-2021-30846. @@ -95 +106 @@ - + Security fixes: CVE-2021-30858. + + Security fixes: CVE-2021-30848, CVE-2021-30849, CVE-2021-30858. New: ---- webkit2gtk3-link-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ webkit2gtk3.spec ++++++ --- /var/tmp/diff_new_pack.0n0Zs4/_old 2021-10-30 23:14:33.499095138 +0200 +++ /var/tmp/diff_new_pack.0n0Zs4/_new 2021-10-30 23:14:33.503095141 +0200 @@ -88,6 +88,8 @@ Patch0: no-forced-sse.patch # PATCH-FIX-UPSTREAM fix-warnings.patch mgo...@suse.com -- silence return-type warnings. Patch1: fix-warnings.patch +# PATCH-FIX-UPSTREAM webkit2gtk3-link-fix.patch mgo...@suse.com -- annotate executeJSCJITProbe. +Patch2: webkit2gtk3-link-fix.patch BuildRequires: Mesa-libEGL-devel BuildRequires: Mesa-libGL-devel @@ -98,7 +100,11 @@ BuildRequires: bubblewrap BuildRequires: cmake BuildRequires: enchant-devel -BuildRequires: gcc-c++ >= 4.9 +%if 0%{?sle_version} && 0%{?sle_version} <= 150400 +BuildRequires: gcc10-c++ >= 4.9 +%else +BuildRequires: gcc-c++ >= 7.3 +%endif BuildRequires: gobject-introspection-devel BuildRequires: gperf >= 3.0.1 BuildRequires: hyphen-devel @@ -344,6 +350,10 @@ %cmake \ -GNinja \ -DCMAKE_BUILD_TYPE=Release \ +%if 0%{?sle_version} && 0%{?sle_version} <= 150400 + -DCMAKE_C_COMPILER=gcc-10 \ + -DCMAKE_CXX_COMPILER=g++-10 \ +%endif -DLIBEXEC_INSTALL_DIR=%{_libexecdir}/libwebkit2gtk%{_wk2sover} \ -DPORT=GTK \ %if "%{flavor}" == "gtk4" ++++++ webkit2gtk3-link-fix.patch ++++++ >From 94396c05ce816b9f7245ac493367c84219cef407 Mon Sep 17 00:00:00 2001 From: "ysuz...@apple.com" <ysuz...@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> Date: Thu, 2 Sep 2021 08:13:12 +0000 Subject: [PATCH] Unreviewed, annotate executeJSCJITProbe with REFERENCED_FROM_ASM WTF_INTERNAL * assembler/ProbeContext.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@281911 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/JavaScriptCore/ChangeLog | 6 ++++++ Source/JavaScriptCore/assembler/ProbeContext.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/JavaScriptCore/assembler/ProbeContext.h b/Source/JavaScriptCore/assembler/ProbeContext.h index 54db1ce832ef..36f430bcb509 100644 --- a/Source/JavaScriptCore/assembler/ProbeContext.h +++ b/Source/JavaScriptCore/assembler/ProbeContext.h @@ -249,7 +249,7 @@ private: friend JS_EXPORT_PRIVATE void* probeStateForContext(Context&); // Not for general use. This should only be for writing tests. }; -extern "C" void executeJSCJITProbe(State*); +extern "C" void executeJSCJITProbe(State*) REFERENCED_FROM_ASM WTF_INTERNAL; } // namespace Probe } // namespace JSC -- 2.33.0