Accepting request 374529 from GNOME:Next

Scripted push of project GNOME:Next

OBS-URL: https://build.opensuse.org/request/show/374529
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=57
This commit is contained in:
2016-03-18 10:09:56 +00:00
committed by Git OBS Bridge
parent 0b1cbd191e
commit dd04452117
5 changed files with 34 additions and 40 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Thu Mar 17 13:25:21 UTC 2016 - fcrozat@suse.com
- Update webkitgtk-disable-gcc-version-checks.patch (partially
merged).
-------------------------------------------------------------------
Wed Mar 16 16:14:19 UTC 2016 - zaitor@opensuse.org
- Update to version 2.11.92:
+ Revert the patch to limit the number of tiles according to the
visible area introduced in 2.11.90, because it caused rendering
issues in several popular websites.
+ Fix scrollbars rendering again with GTK+ >= 3.19.11.
+ Fix rendering of slider input elements.
+ Fix rendering artifacts when using a web view background color.
+ Make webkit_web_context_clear_cache() work again.
+ Fix smooth scrolling behavior that was changed by mistake.
+ Dont force ENABLE_INTROSPECTION=OFF on Mac.
+ Install WebProcess and NetworkProcess on OSX when not building
the Mac port.
-------------------------------------------------------------------
Wed Mar 2 16:51:29 UTC 2016 - fcrozat@suse.com

View File

@@ -26,7 +26,7 @@
%define _pkgconfig_suffix gtk-3.0
%define _name webkitgtk
Name: webkit2gtk3
Version: 2.11.91
Version: 2.11.92
Release: 0
Summary: Library for rendering web content, GTK+ Port
License: LGPL-2.0+ and BSD-3-Clause

View File

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

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

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

View File

@@ -11,11 +11,11 @@ process code.
Source/cmake/OptionsGTK.cmake | 7 -------
1 file changed, 7 deletions(-)
Index: webkitgtk-2.11.91/Source/cmake/OptionsGTK.cmake
Index: webkitgtk-2.11.92/Source/cmake/OptionsGTK.cmake
===================================================================
--- webkitgtk-2.11.91.orig/Source/cmake/OptionsGTK.cmake
+++ webkitgtk-2.11.91/Source/cmake/OptionsGTK.cmake
@@ -6,13 +6,6 @@ set(PROJECT_VERSION_MICRO 91)
--- webkitgtk-2.11.92.orig/Source/cmake/OptionsGTK.cmake 2016-03-16 15:00:55.000000000 +0100
+++ webkitgtk-2.11.92/Source/cmake/OptionsGTK.cmake 2016-03-17 14:25:15.029217585 +0100
@@ -6,13 +6,6 @@
set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
set(WEBKITGTK_API_VERSION 4.0)
@@ -28,20 +28,11 @@ Index: webkitgtk-2.11.91/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 4 13)
Index: webkitgtk-2.11.91/Source/WTF/wtf/Compiler.h
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(WEBKIT2 50 5 13)
Index: webkitgtk-2.11.92/Source/WTF/wtf/Compiler.h
===================================================================
--- webkitgtk-2.11.91.orig/Source/WTF/wtf/Compiler.h
+++ webkitgtk-2.11.91/Source/WTF/wtf/Compiler.h
@@ -20,7 +20,7 @@
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef WTF_Compiler_h
--- webkitgtk-2.11.92.orig/Source/WTF/wtf/Compiler.h 2016-03-14 09:53:20.000000000 +0100
+++ webkitgtk-2.11.92/Source/WTF/wtf/Compiler.h 2016-03-17 14:25:15.029217585 +0100
@@ -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))
@@ -53,22 +44,3 @@ Index: webkitgtk-2.11.91/Source/WTF/wtf/Compiler.h
#endif
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
Index: webkitgtk-2.11.91/Source/WebKit2/UIProcess/WebProcessPool.cpp
===================================================================
--- webkitgtk-2.11.91.orig/Source/WebKit2/UIProcess/WebProcessPool.cpp
+++ webkitgtk-2.11.91/Source/WebKit2/UIProcess/WebProcessPool.cpp
@@ -1074,12 +1074,14 @@ void WebProcessPool::clearCachedCredenti
void WebProcessPool::terminateDatabaseProcess()
{
+#if ENABLE(DATABASE_PROCESS)
ASSERT(m_processes.isEmpty());
if (!m_databaseProcess)
return;
m_databaseProcess->terminate();
m_databaseProcess = nullptr;
+#endif
}
void WebProcessPool::allowSpecificHTTPSCertificateForHost(const WebCertificateInfo* certificate, const String& host)