Accepting request 393292 from GNOME:Factory

1

OBS-URL: https://build.opensuse.org/request/show/393292
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/webkit2gtk3?expand=0&rev=23
This commit is contained in:
Dominique Leuenberger 2016-05-05 10:11:48 +00:00 committed by Git OBS Bridge
commit ab1a1d4660
5 changed files with 44 additions and 13 deletions

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Mon May 2 14:05:38 CEST 2016 - fcrozat@suse.com
- Refresh webkitgtk-disable-gcc-version-checks.patch for latest
version.
-------------------------------------------------------------------
Thu Apr 28 08:30:17 UTC 2016 - zaitor@opensuse.org
- Update to version 2.12.2:
+ Fix rendering of scrollbars with GTK themes using stepper
buttons.
+ Fix compatibility issue with 2.12.1 regarding local storage
access from file URLs.
+ Make menu list buttons use the text color from the theme.
+ Do not show resize grip in non-resizable text fields.
+ Fix accessibility events causing Orca to echo key presses
instead of speaking the inserted characters in password fields.
+ Fix an off by one error in hyphenation.
+ Fix several crashes and rendering issues.
+ Fix the build with libjpeg v9.
+ Updated translations.
-------------------------------------------------------------------
Mon Apr 25 14:28:33 UTC 2016 - zaitor@opensuse.org
- Drop pkgconfig(gtk+-2.0) BuildRequires and pass
-DENABLE_PLUGIN_PROCESS_GTK2=OFF to configure. We do no longer
ship the flash-plugin in openSUSE, and it were the last consumer
of this functionality. This also have the added bonus of freeing
zenity and dependant packages of gtk2 dependencies.
-------------------------------------------------------------------
Fri Apr 15 12:50:28 UTC 2016 - zaitor@opensuse.org

View File

@ -26,7 +26,7 @@
%define _pkgconfig_suffix gtk-3.0
%define _name webkitgtk
Name: webkit2gtk3
Version: 2.12.1
Version: 2.12.2
Release: 0
Summary: Library for rendering web content, GTK+ Port
License: LGPL-2.0+ and BSD-3-Clause
@ -68,8 +68,6 @@ BuildRequires: pkgconfig(geoclue-2.0) >= 2.1.5
BuildRequires: pkgconfig(glib-2.0) >= 2.36
BuildRequires: pkgconfig(gstreamer-1.0) >= 1.0.3
BuildRequires: pkgconfig(gstreamer-plugins-base-1.0)
# We require gtk2 for the Gtk2 plugin wrapper
BuildRequires: pkgconfig(gtk+-2.0) >= 2.24.10
BuildRequires: pkgconfig(gtk+-3.0) >= 3.12.0
BuildRequires: pkgconfig(gudev-1.0)
BuildRequires: pkgconfig(harfbuzz) >= 0.9.2
@ -245,6 +243,7 @@ more.
-DCMAKE_BUILD_TYPE=Release \
-DLIBEXEC_INSTALL_DIR=%{_libexecdir}/libwebkit2gtk%{_wk2sover} \
-DPORT=GTK \
-DENABLE_PLUGIN_PROCESS_GTK2=OFF \
%ifarch ppc ppc64 ppc64le s390x
-DENABLE_JIT=OFF \
-DUSE_SYSTEM_MALLOC=ON \

View File

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

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

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

View File

@ -11,10 +11,10 @@ process code.
Source/cmake/OptionsGTK.cmake | 7 -------
1 file changed, 7 deletions(-)
Index: webkitgtk-2.12.0/Source/cmake/OptionsGTK.cmake
Index: webkitgtk-2.12.2/Source/cmake/OptionsGTK.cmake
===================================================================
--- webkitgtk-2.12.0.orig/Source/cmake/OptionsGTK.cmake 2016-03-22 09:40:16.000000000 +0100
+++ webkitgtk-2.12.0/Source/cmake/OptionsGTK.cmake 2016-03-23 09:15:11.358417558 +0100
--- webkitgtk-2.12.2.orig/Source/cmake/OptionsGTK.cmake 2016-04-28 08:49:27.000000000 +0200
+++ webkitgtk-2.12.2/Source/cmake/OptionsGTK.cmake 2016-05-02 14:06:42.166231056 +0200
@@ -6,13 +6,6 @@
set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
set(WEBKITGTK_API_VERSION 4.0)
@ -28,11 +28,11 @@ Index: webkitgtk-2.12.0/Source/cmake/OptionsGTK.cmake
-
# Libtool library version, not to be confused with API version.
# See http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 50 6 13)
Index: webkitgtk-2.12.0/Source/WTF/wtf/Compiler.h
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 50 8 13)
Index: webkitgtk-2.12.2/Source/WTF/wtf/Compiler.h
===================================================================
--- webkitgtk-2.12.0.orig/Source/WTF/wtf/Compiler.h 2016-03-17 08:51:05.000000000 +0100
+++ webkitgtk-2.12.0/Source/WTF/wtf/Compiler.h 2016-03-23 09:15:11.358417558 +0100
--- webkitgtk-2.12.2.orig/Source/WTF/wtf/Compiler.h 2016-04-11 08:18:43.000000000 +0200
+++ webkitgtk-2.12.2/Source/WTF/wtf/Compiler.h 2016-05-02 14:06:42.166231056 +0200
@@ -70,8 +70,8 @@
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#define GCC_VERSION_AT_LEAST(major, minor, patch) (GCC_VERSION >= (major * 10000 + minor * 100 + patch))