Accepting request 297685 from GNOME:Next

Scripted push of project GNOME:Next

OBS-URL: https://build.opensuse.org/request/show/297685
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=29
This commit is contained in:
Bjørn Lie 2015-04-18 16:43:45 +00:00 committed by Git OBS Bridge
parent a018429095
commit 4cb52a8af5
5 changed files with 36 additions and 4 deletions

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Apr 14 17:03:41 UTC 2015 - zaitor@opensuse.org
- Update to version 2.8.1:
+ Handle keep-alive connections in GStreamer HTTP source element.
+ Fix a crash in DOMObjectCache when a wrapped object owned by.
the cache is unreffed by the user.
+ Fix rendering of drag and drop icon.
+ Fix the build with REDIRECTED_XCOMPOSITE_WINDOW disabled in X11
platform.
+ Fix the build with Wayland target enabled.
+ Fix the build for HPPA.
- Add webkitgtk-gcc5-buildfix.patch: Fix build with gcc5.
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 9 01:09:44 UTC 2015 - mcatanzaro@igalia.com Thu Apr 9 01:09:44 UTC 2015 - mcatanzaro@igalia.com

View File

@ -26,7 +26,7 @@
%define _pkgconfig_suffix gtk-3.0 %define _pkgconfig_suffix gtk-3.0
%define _name webkitgtk %define _name webkitgtk
Name: webkit2gtk3 Name: webkit2gtk3
Version: 2.8.0 Version: 2.8.1
Release: 0 Release: 0
Summary: Library for rendering web content, GTK+ Port Summary: Library for rendering web content, GTK+ Port
License: LGPL-2.0+ and BSD-3-Clause License: LGPL-2.0+ and BSD-3-Clause
@ -36,6 +36,8 @@ Source: http://webkitgtk.org/releases/%{_name}-%{version}.tar.xz
Source1: baselibs.conf Source1: baselibs.conf
# PATCH-FIX-OPENSUSE webkitgtk-typelib-sharelib-link.patch dimstar@opensuse.org -- Fixup the .gir file to contain the full library name for libjavascriptcore. # PATCH-FIX-OPENSUSE webkitgtk-typelib-sharelib-link.patch dimstar@opensuse.org -- Fixup the .gir file to contain the full library name for libjavascriptcore.
Patch0: webkitgtk-typelib-sharelib-link.patch Patch0: webkitgtk-typelib-sharelib-link.patch
# PATCH-FIX-UPSTREAM webkitgtk-gcc5-buildfix.patch zaitor@opensuse.org -- Fix build with gcc5, stolen with no shame from fedora.
Patch1: webkitgtk-gcc5-buildfix.patch
BuildRequires: bison >= 2.3 BuildRequires: bison >= 2.3
BuildRequires: cmake BuildRequires: cmake
BuildRequires: gcc-c++ BuildRequires: gcc-c++
@ -207,6 +209,7 @@ more.
%prep %prep
%setup -q -n webkitgtk-%{version} %setup -q -n webkitgtk-%{version}
%patch0 -p1 %patch0 -p1
%patch1 -p1
%build %build
# Use linker flags to reduce memory consumption # Use linker flags to reduce memory consumption

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05fad239f5f035b0a3628bb7bc1536d916f772fc9ff95de22e3cec1af2ac6815
size 10431576

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d214459d216ca499ad75bccae7f248655d6ef5b295ffafd299773e7331860ff
size 10435512

View File

@ -0,0 +1,15 @@
diff -up webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp.s390_fixes webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp
--- webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp.s390_fixes 2015-03-23 09:08:04.000000000 +0100
+++ webkitgtk-2.8.0/Source/JavaScriptCore/runtime/JSObject.cpp 2015-03-27 10:59:40.245010499 +0100
@@ -1965,6 +1965,10 @@ void JSObject::putByIndexBeyondVectorLen
}
}
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<ContiguousShape>(ExecState* exec, unsigned i, JSValue value);
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<DoubleShape>(ExecState* exec, unsigned i, JSValue value);
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<Int32Shape>(ExecState* exec, unsigned i, JSValue value);
+
void JSObject::putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage)
{
VM& vm = exec->vm();