[SCM] QtWebKit packaging branch, experimental, updated. debian/2.2.1-7-42-g782f170

Lisandro Damián Nicanor Pérez lisandro at moszumanska.debian.org
Thu Aug 28 03:13:22 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-kde/qt/qtwebkit.git;a=commitdiff;h=5ae3cf2

The following commit has been merged in the experimental branch:
commit 5ae3cf20d38c45893e9e54bccc3ca495dc6f0180
Author: Andreas Cord-Landwehr <cola at uni-paderborn.de>
Date:   Sat Jun 7 22:50:11 2014 +0200

    Remove patch: upstream_Build-fixes-for-glib-2.31.diff
    
    Patch was applied upstream.
---
 debian/changelog                                   |  1 +
 debian/patches/series                              |  3 -
 .../upstream_Build-fixes-for-glib-2.31.diff        | 69 ----------------------
 3 files changed, 1 insertion(+), 72 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ee281f2..436edbc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ qtwebkit (2.3.2-0) UNRELEASED; urgency=medium
     - remove Fix_build_with_GLib_2.31_changeset_r97269, applied upstream
     - remove upstream_changeset_r93631.diff, applied upstream
     - remove upstream_changeset_r113848.diff, applied upstream 
+    - remove upstream_Build-fixes-for-glib-2.31.diff, applied upstream
 
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Sat, 07 Jun 2014 21:18:08 +0200
 
diff --git a/debian/patches/series b/debian/patches/series
index 3e100cb..7672e35 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,6 +1,3 @@
-# upstream patches
-upstream_Build-fixes-for-glib-2.31.diff
-
 # debian patches
 01_lflags_as-needed.diff
 02_add_nostrip_for_debug_packages.diff
diff --git a/debian/patches/upstream_Build-fixes-for-glib-2.31.diff b/debian/patches/upstream_Build-fixes-for-glib-2.31.diff
deleted file mode 100644
index 110798b..0000000
--- a/debian/patches/upstream_Build-fixes-for-glib-2.31.diff
+++ /dev/null
@@ -1,69 +0,0 @@
-commit d5512e599772f87146ba9b33d9d3fec0d0629853
-Author: Philippe Normand <pnormand at igalia.com>
-Date:   Fri Oct 28 16:47:14 2011 +0000
-
-    [GTK] Build fixes for glib 2.31 (current master)
-    https://bugs.webkit.org/show_bug.cgi?id=70679
-    
-    Reviewed by Martin Robinson.
-    
-    g_cond_new and g_mutex_new have been replaced by _init
-    functions. Same for _free, replaced by _clear.
-    
-    * platform/graphics/gstreamer/VideoSinkGStreamer.cpp:
-    (webkit_video_sink_init):
-    (webkit_video_sink_dispose):
-    
-    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@98731 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
-Index: qtwebkit-2.2.1/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp
-===================================================================
---- qtwebkit-2.2.1.orig/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2013-06-26 13:32:58.941707781 +0200
-+++ qtwebkit-2.2.1/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2013-06-26 13:32:58.913708927 +0200
-@@ -33,6 +33,7 @@
- #include <glib.h>
- #include <gst/gst.h>
- #include <gst/video/video.h>
-+#include <wtf/FastAllocBase.h>
- 
- static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE("sink",
-                                                                    GST_PAD_SINK, GST_PAD_ALWAYS,
-@@ -104,8 +105,15 @@
-     WebKitVideoSinkPrivate* priv;
- 
-     sink->priv = priv = G_TYPE_INSTANCE_GET_PRIVATE(sink, WEBKIT_TYPE_VIDEO_SINK, WebKitVideoSinkPrivate);
-+#if GLIB_CHECK_VERSION(2, 31, 0)
-+    priv->data_cond = WTF::fastNew<GCond>();
-+    g_cond_init(priv->data_cond);
-+    priv->buffer_mutex = WTF::fastNew<GMutex>();
-+    g_mutex_init(priv->buffer_mutex);
-+#else
-     priv->data_cond = g_cond_new();
-     priv->buffer_mutex = g_mutex_new();
-+#endif
- }
- 
- static gboolean
-@@ -234,12 +242,22 @@
-     WebKitVideoSinkPrivate* priv = sink->priv;
- 
-     if (priv->data_cond) {
-+#if GLIB_CHECK_VERSION(2, 31, 0)
-+        g_cond_clear(priv->data_cond);
-+        WTF::fastDelete(priv->data_cond);
-+#else
-         g_cond_free(priv->data_cond);
-+#endif
-         priv->data_cond = 0;
-     }
- 
-     if (priv->buffer_mutex) {
-+#if GLIB_CHECK_VERSION(2, 31, 0)
-+        g_mutex_clear(priv->buffer_mutex);
-+        WTF::fastDelete(priv->buffer_mutex);
-+#else
-         g_mutex_free(priv->buffer_mutex);
-+#endif
-         priv->buffer_mutex = 0;
-     }
- 

-- 
QtWebKit packaging



More information about the pkg-kde-commits mailing list