Hello community,

here is the log from the commit of package kdelibs4 for openSUSE:Factory 
checked in at 2016-01-09 23:10:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdelibs4 (Old)
 and      /work/SRC/openSUSE:Factory/.kdelibs4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdelibs4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4-apidocs.changes        
2015-11-24 22:21:31.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4-apidocs.changes   
2016-01-09 23:10:07.000000000 +0100
@@ -1,0 +2,8 @@
+Thu Jan 7 13:40:07 UTC 2016 - [email protected]
+
+- Update to 4.14.15
+   * KDE Applications 15.12.0
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/kdelibs4/kdelibs4.changes        2015-12-17 
15:53:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs4.changes   2016-01-09 
23:10:07.000000000 +0100
@@ -1,0 +2,11 @@
+Thu Jan 7 13:40:07 UTC 2016 - [email protected]
+
+- Update to 4.14.15
+   * KDE Applications 15.12.0
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+- Included upstream patch bko355275.patch to resolve the issue 
+  with Kopete crashing when closing windows. (bko#355275)
+
+-------------------------------------------------------------------

Old:
----
  kdelibs-4.14.14.tar.xz

New:
----
  bko355275.patch
  kdelibs-4.14.15.tar.xz

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

Other differences:
------------------
++++++ kdelibs4-apidocs.spec ++++++
--- /var/tmp/diff_new_pack.0Pvf5z/_old  2016-01-09 23:10:09.000000000 +0100
+++ /var/tmp/diff_new_pack.0Pvf5z/_new  2016-01-09 23:10:09.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           kdelibs4-apidocs
-Version:        4.14.14
+Version:        4.14.15
 Release:        0
 Summary:        KDE 4 API documentation
 License:        LGPL-2.1+

++++++ kdelibs4.spec ++++++
--- /var/tmp/diff_new_pack.0Pvf5z/_old  2016-01-09 23:10:09.000000000 +0100
+++ /var/tmp/diff_new_pack.0Pvf5z/_new  2016-01-09 23:10:09.000000000 +0100
@@ -20,7 +20,7 @@
 %bcond_with gendoxygen
 
 Name:           kdelibs4
-Version:        4.14.14
+Version:        4.14.15
 Release:        0
 BuildRequires:  OpenEXR-devel
 BuildRequires:  automoc4
@@ -90,6 +90,8 @@
 # PATCH-FIX-OPENSUSE 
0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch -- Nepomuk is only 
used in a private header, browserrun_p.h,
 # thus it is not needed as KParts public dependancy, makes it possible to drop 
libsoprano-devel from libkde4-devel Requires
 Patch15:        0001-Drop-Nepomuk-from-KParts-LINK_INTERFACE_LIBRARIES.patch
+# PATCH-FIX-UPSTREAM bko355275.patch -- Revert a commit that caused Kopete to 
crash when closing windows
+Patch16:        bko355275.patch
 PreReq:         permissions
 Requires:       libattica0_4 >= %( echo `rpm -q --queryformat '%{VERSION}' 
libattica-devel`)
 Recommends:     media-player-info
@@ -149,6 +151,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch15 -p1
+%patch16 -p1
 
 %build
   EXTRA_FLAGS="-DLIB_INSTALL_DIR=%{_kde4_libdir} \

++++++ bko355275.patch ++++++
From: Alex Merry <[email protected]>
Date: Tue, 15 Dec 2015 19:26:47 +0000
Subject: Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"
X-Git-Url: 
http://quickgit.kde.org/?p=kdelibs.git&a=commitdiff&h=a02df05e4bd083f98147c86f88da2f818fc6c9f4
---
Revert "backport commit b72fc5e56579035bf987075e16324ef95ef8e3d4"

This reverts commit 4f7ea2f770cf062ef22293fbb21a086f3e0cbfcb.

This change seems to be causing more problems than it fixes - it's
probably just too big of a behaviour change for kdelibs. Which means
that akregator will probably keep randomly crashing, but the alternative
seems to be various other applications consistently crashing at exit.

If we can fix those applications (Kopete in particular), we can consider
re-applying this afterwards.

BUG: 355275
---


--- a/kparts/part.cpp
+++ b/kparts/part.cpp
@@ -350,7 +350,7 @@
     d->m_widget = 0;
     if (d->m_autoDeletePart) {
         kDebug(1000) << "deleting part" << objectName();
-        this->deleteLater();
+        delete this; // ouch, this should probably be deleteLater()
     }
 }
 

--- a/kparts/tests/parttest.cpp
+++ b/kparts/tests/parttest.cpp
@@ -48,7 +48,6 @@
     KParts::Part* part = new TestPart(0, 0);
     QPointer<KParts::Part> partPointer(part);
     delete part->widget();
-    QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
     QVERIFY(partPointer.isNull());
 }
 
@@ -58,7 +57,6 @@
     QPointer<KParts::Part> partPointer(part);
     QPointer<QWidget> widgetPointer(part->widget());
     delete part;
-    QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete);
     QVERIFY(widgetPointer.isNull());
 }
 

++++++ kdelibs-4.14.14.tar.xz -> kdelibs-4.14.15.tar.xz ++++++
/work/SRC/openSUSE:Factory/kdelibs4/kdelibs-4.14.14.tar.xz 
/work/SRC/openSUSE:Factory/.kdelibs4.new/kdelibs-4.14.15.tar.xz differ: char 
26, line 1



Reply via email to