Hello community,

here is the log from the commit of package libreoffice for openSUSE:Factory 
checked in at 2014-04-16 07:26:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libreoffice (Old)
 and      /work/SRC/openSUSE:Factory/.libreoffice.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libreoffice"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes  2014-04-14 
20:37:30.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libreoffice.new/libreoffice.changes     
2014-04-16 07:26:49.000000000 +0200
@@ -1,0 +2,15 @@
+Tue Apr 15 08:32:38 UTC 2014 - tchva...@suse.com
+
+- Fix haning in KDE by applying upstream fix. Will be included
+  in next release.
+- added patches:
+  * kde4-4.2.3.3-timer-mutex.patch
+
+-------------------------------------------------------------------
+Mon Apr 14 20:00:00 UTC 2014 - tbehr...@suse.com
+
+- fix for non-working bluetooth remote control from upstream
+- added patches:
+  * bluez5-support-for-impress-remote.diff
+
+-------------------------------------------------------------------

New:
----
  bluez5-support-for-impress-remote.diff
  kde4-4.2.3.3-timer-mutex.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libreoffice.spec ++++++
--- /var/tmp/diff_new_pack.Ca3c4i/_old  2014-04-16 07:26:54.000000000 +0200
+++ /var/tmp/diff_new_pack.Ca3c4i/_new  2014-04-16 07:26:54.000000000 +0200
@@ -87,6 +87,10 @@
 Patch13:        jvmfwk-disable-gcj.diff
 # Fix running wizzards in py2 as the utf is not htere
 Patch16:        wizards-create-temlates-with-python-2.6.diff
+# Fix fdo#74697 add Bluez 5 support for impress remote.
+Patch17:        bluez5-support-for-impress-remote.diff
+# PATCH-FIX-UPSTREAM: fix kde hanging in 4.2.3.3
+Patch18:        kde4-4.2.3.3-timer-mutex.patch
 # try to save space by using hardlinks
 Patch990:       install-with-hardlinks.diff
 BuildRequires:  ImageMagick
@@ -837,6 +841,8 @@
 %patch12
 %patch13 -p1
 %patch16 -p1
+%patch17 -p1
+%patch18 -p1 -R
 %patch990 -p1
 # 256x256 icons
 tar -xjf %{SOURCE20}







++++++ bluez5-support-for-impress-remote.diff ++++++
++++ 851 lines (skipped)

++++++ kde4-4.2.3.3-timer-mutex.patch ++++++
>From 7dba6e0a71d090f06a6a1a39e87572674593b48a Mon Sep 17 00:00:00 2001
From: Jan-Marek Glogowski <glo...@fbihome.de>
Date: Mon, 10 Mar 2014 14:44:05 +0000
Subject: fdo#73115: Always run timeouts as events

Right-click popup menus run click events throught the LO main loop.
In case of KDE4 the LO main loop is run by a timer in the main thread,
with Qt::DirectConnection execution.

If the timeout actually starts a nested event loop for a new dialog,
the timer is blocked, the nested mainloop detects it was started
from the timeout and drops the blocked timout from polling, which
blocks any further LibreOffice event loop processing.

This changes the timers to Qt::QueuedConnection, so they always
generate an event and are processed by the Qt event loop.

Change-Id: Ie626b22be3d8f9b8934bcc5e9e0e67a365549cfc
(cherry picked from commit aeda478a02523cec146f6af69710f0391061db56)
Reviewed-on: https://gerrit.libreoffice.org/8514
Reviewed-by: Caolán McNamara <caol...@redhat.com>
Tested-by: Caolán McNamara <caol...@redhat.com>
---
diff --git a/vcl/unx/kde4/KDEXLib.cxx b/vcl/unx/kde4/KDEXLib.cxx
index b4be6d6..4a9b70b 100644
--- a/vcl/unx/kde4/KDEXLib.cxx
+++ b/vcl/unx/kde4/KDEXLib.cxx
@@ -67,9 +67,13 @@ KDEXLib::KDEXLib() :
     eventLoopType( LibreOfficeEventLoop ),
     m_bYieldFrozen( false )
 {
-    // the timers created here means they belong to the main thread
-    connect( &timeoutTimer, SIGNAL( timeout()), this, SLOT( 
timeoutActivated()));
-    connect( &userEventTimer, SIGNAL( timeout()), this, SLOT( 
userEventActivated()));
+    // the timers created here means they belong to the main thread.
+    // As the timeoutTimer runs the LO event queue, which may block on a 
dialog,
+    // the timer has to use a Qt::QueuedConnection, otherwise the nested event
+    // loop will detect the blocking timer and drop it from the polling
+    // freezing LO X11 processing.
+    connect( &timeoutTimer, SIGNAL( timeout()), this, SLOT( 
timeoutActivated()), Qt::QueuedConnection );
+    connect( &userEventTimer, SIGNAL( timeout()), this, SLOT( 
userEventActivated()), Qt::QueuedConnection );
 
     // QTimer::start() can be called only in its (here main) thread, so this 
will
     // forward between threads if needed
--
cgit v0.9.0.2-2-gbebe
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to