Accepting request 282604 from home:Zaitor:branches:GNOME:Factory

New stable update, please wait for build on obs

OBS-URL: https://build.opensuse.org/request/show/282604
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=20
This commit is contained in:
Dominique Leuenberger 2015-01-24 12:34:40 +00:00 committed by Git OBS Bridge
parent 8b23e42bd2
commit f2145bc27a
5 changed files with 29 additions and 40 deletions

View File

@ -1,3 +1,27 @@
-------------------------------------------------------------------
Fri Jan 23 19:16:29 UTC 2015 - zaitor@opensuse.org
- Update to version 2.6.5:
+ Fix issue that caused some text to be inserted when trying to
delete a word from the Twitter message box.
+ GObject DOM bindings API now correctly returns NULL intead of
empty strings to be able to differentiate between not present
and present but empty.
+ Do not resize the accelerating compositing window to the web
size until accelerated compositing mode is activated.
+ Use latin1 instead of UTF-8 for HTTP header values.
+ Add SCHEDULING query support to HTTP media source element.
+ Add application/x-mpegurl and video/flv to the list of
supported mimetypes.
+ Update NavigationItemProbes inspector icon.
+ Fix the build with recent GStreamer.
+ Fix the build on FreeBSD.
+ Fix build on OS X.
+ Fix the build on powerpc 32 bits.
+ Fixed several crashes in WebCore and JavaScriptCore.
+ Updated translations.
- Drop webkitgtk-libatomic.patch: Fixed upstream.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 13 15:27:07 UTC 2015 - schwab@suse.de Tue Jan 13 15:27:07 UTC 2015 - schwab@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package webkit2gtk3 # spec file for package webkit2gtk3
# #
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -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.6.4 Version: 2.6.5
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,8 +36,6 @@ 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-libatomic.patch webkit#130837 schwab@suse.de -- Check if libatomic is needed in order to use std::atomic
Patch1: webkitgtk-libatomic.patch
BuildRequires: bison >= 2.3 BuildRequires: bison >= 2.3
BuildRequires: cmake BuildRequires: cmake
BuildRequires: gcc-c++ BuildRequires: gcc-c++
@ -208,7 +206,6 @@ 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:beef5e24edd9b9cade22d80bf373c74d236f996fe30f49f8697a70f267772e9b
size 9996524

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

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

View File

@ -1,32 +0,0 @@
2014-11-20 Alberto Garcia <berto@igalia.com>
Webkit2 doesnt build on powerpc 32 bits
https://bugs.webkit.org/show_bug.cgi?id=130837
Reviewed by NOBODY (OOPS!).
Check if libatomic is needed in order to use std::atomic, and add
it to the list of WebKit2 libraries.
* PlatformGTK.cmake:
diff --git a/Source/WebKit2/PlatformGTK.cmake b/Source/WebKit2/PlatformGTK.cmake
index 954aa0e..298ec7c 100644
--- a/Source/WebKit2/PlatformGTK.cmake
+++ b/Source/WebKit2/PlatformGTK.cmake
@@ -467,6 +467,15 @@ list(APPEND NetworkProcess_SOURCES
NetworkProcess/EntryPoint/unix/NetworkProcessMain.cpp
)
+file(WRITE ${CMAKE_BINARY_DIR}/test_atomic.cpp
+ "#include <atomic>\n"
+ "int main() { std::atomic<int64_t> i(0); i++; return 0; }\n")
+try_compile(ATOMIC_BUILD_SUCCEEDED ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/test_atomic.cpp)
+if (NOT ATOMIC_BUILD_SUCCEEDED)
+ list(APPEND WebKit2_LIBRARIES atomic)
+endif ()
+file(REMOVE ${CMAKE_BINARY_DIR}/test_atomic.cpp)
+
set(SharedWebKit2Libraries
${WebKit2_LIBRARIES}
)