Accepting request 693014 from GNOME:Next

New stable rel

OBS-URL: https://build.opensuse.org/request/show/693014
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=212
This commit is contained in:
Dominique Leuenberger 2019-04-11 14:49:11 +00:00 committed by Git OBS Bridge
parent 611955fd59
commit e976e1d1af
7 changed files with 35 additions and 42 deletions

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Wed Apr 10 21:50:50 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 2.24.1:
+ Do not allow changes in active URI before provisional load
starts for non-API requests.
+ Stop the threaded compositor when the page is not visible or
layer tree state is frozen.
+ Use WebKit HTTP source element again for adaptive streaming
fragments downloading.
+ Properly handle empty resources in
webkit_web_resource_get_data().
+ Add quirk to ensure outlook.live.com uses the modern UI.
+ Fix methods returing GObject or boxed types in JavaScriptCore
GLib API.
+ Ensure callback data is passed to functions and constructors
with no parameters in JavaScriptCore GLib API.
+ Fix rendering of complex text when the font uses x,y origins.
+ Fix sound loop with Google Hangouts and WhatsApp notifications.
+ Fix the build with GStreamer 1.12.5 and GST GL enabled.
+ Detect SSE2 at compile time.
+ Fix several crashes and rendering issues.
+ Security fixes: CVE-2019-6251.
- Drop webkitgtk-gstreamer-gl-build-fix.patch: Fixed upstream.
-------------------------------------------------------------------
Tue Mar 26 22:39:18 UTC 2019 - mgorse@suse.com

View File

@ -42,7 +42,7 @@
%bcond_with python3
%endif
Name: webkit2gtk3
Version: 2.24.0
Version: 2.24.1
Release: 0
Summary: Library for rendering web content, GTK+ Port
License: LGPL-2.0-or-later AND BSD-3-Clause
@ -54,8 +54,6 @@ Source98: baselibs.conf
Source99: webkit2gtk3.keyring
# PATCH-FIX-UPSTREAM webkit2gtk3-boo1088932-a11y-state-set.patch boo#1088932 webkit#184366 mgorse@suse.com -- fix crash when atk_object_ref_state_set is called on an AtkObject that's being destroyed
Patch1: webkit2gtk3-boo1088932-a11y-state-set.patch
# PATCH-FIX-UPSTREAM webkitgtk-gstreamer-gl-build-fix.patch webkit#196178 mgorse@suse.com -- fix build on SLE/Leap 15.
Patch2: webkitgtk-gstreamer-gl-build-fix.patch
BuildRequires: Mesa-libEGL-devel
BuildRequires: Mesa-libGL-devel
@ -293,7 +291,6 @@ A small test browswer from webkit, useful for testing features.
%prep
%setup -q -n webkitgtk-%{version}
%patch1 -p1
%patch2 -p1
%build
# Here we must muzzle our dog so it doesn't eat all the memory

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e4ad1503fe482ceb5a83cf70ac9cd42f37eb718555a4d6844fe4c59a9214407
size 17894000

View File

@ -1,6 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iF0EABEDAB0WIQTX/PYc+aLeqzHYG9Pz0yLQ7EWCwwUCXIjSEgAKCRDz0yLQ7EWC
w3XeAJ4ihDVCxdmR3bu1ZnJA2+fmSo7rhgCg0jQJCPD1XIrb+zuqPNxWT/wDQwg=
=MBZW
-----END PGP SIGNATURE-----

3
webkitgtk-2.24.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:53cb8eaad2ca4caaae663d68331b83fd27d5bd5f6c5388d6ea3c455e338f396d
size 17897488

View File

@ -0,0 +1,6 @@
-----BEGIN PGP SIGNATURE-----
iF0EABEDAB0WIQTX/PYc+aLeqzHYG9Pz0yLQ7EWCwwUCXKxbDQAKCRDz0yLQ7EWC
w6WXAKDUFV+QwdCM6qtEuK8VMXMwZW1f9gCeMXyhkxnKEqoAZjyhfXZTJi+YE/s=
=Qcvg
-----END PGP SIGNATURE-----

View File

@ -1,29 +0,0 @@
diff -urp webkitgtk-2.24.0.orig/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp webkitgtk-2.24.0/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
--- webkitgtk-2.24.0.orig/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp 2019-03-13 04:21:39.000000000 -0500
+++ webkitgtk-2.24.0/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp 2019-03-26 17:38:02.621708276 -0500
@@ -29,7 +29,6 @@
#include "GStreamerCommon.h"
#include "GraphicsContext.h"
-#include "GraphicsContext3D.h"
#include "ImageGStreamer.h"
#include "ImageOrientation.h"
#include "IntRect.h"
@@ -117,6 +116,7 @@
#if USE(TEXTURE_MAPPER_GL)
#include "BitmapTextureGL.h"
#include "BitmapTexturePool.h"
+#include "GraphicsContext3D.h"
#include "TextureMapperContextAttributes.h"
#include "TextureMapperGL.h"
#include "TextureMapperPlatformLayerBuffer.h"
@@ -191,6 +191,9 @@ public:
if (m_isMapped)
m_textureID = *reinterpret_cast<GLuint*>(m_videoFrame.data[0]);
} else
+#else
+ UNUSED_PARAM(gstGLEnabled);
+ UNUSED_PARAM(flags);
#endif // USE(GSTREAMER_GL)
{