Hello community,

here is the log from the commit of package kactivities5 for openSUSE:Factory 
checked in at 2018-01-22 15:58:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities5 (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities5"

Mon Jan 22 15:58:09 2018 rev:49 rq:566654 version:5.42.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities5/kactivities5.changes        
2018-01-09 14:41:13.669465192 +0100
+++ /work/SRC/openSUSE:Factory/.kactivities5.new/kactivities5.changes   
2018-01-22 15:59:07.564373457 +0100
@@ -1,0 +2,11 @@
+Tue Jan 16 22:50:13 CET 2018 - [email protected]
+
+- Update to 5.42.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.42.0.php
+- Changes since 5.41.0:
+  * avoid crash in kactivities if no dbus connection is available
+  * Remove obsolete reviewboardrc file
+
+-------------------------------------------------------------------

Old:
----
  kactivities-5.41.0.tar.xz

New:
----
  kactivities-5.42.0.tar.xz

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

Other differences:
------------------
++++++ kactivities5.spec ++++++
--- /var/tmp/diff_new_pack.iGILJ9/_old  2018-01-22 15:59:08.340337142 +0100
+++ /var/tmp/diff_new_pack.iGILJ9/_new  2018-01-22 15:59:08.340337142 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kactivities5
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5Activities5
-%define _tar_path 5.41
+%define _tar_path 5.42
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           kactivities5
-Version:        5.41.0
+Version:        5.42.0
 Release:        0
 Summary:        KDE Plasma Activities support
 License:        GPL-2.0+

++++++ kactivities-5.41.0.tar.xz -> kactivities-5.42.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.41.0/.reviewboardrc 
new/kactivities-5.42.0/.reviewboardrc
--- old/kactivities-5.41.0/.reviewboardrc       2017-12-02 10:53:17.000000000 
+0100
+++ new/kactivities-5.42.0/.reviewboardrc       1970-01-01 01:00:00.000000000 
+0100
@@ -1,2 +0,0 @@
-REVIEWBOARD_URL = "https://git.reviewboard.kde.org";
-REPOSITORY = 'git://anongit.kde.org/kactivities'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.41.0/CMakeLists.txt 
new/kactivities-5.42.0/CMakeLists.txt
--- old/kactivities-5.41.0/CMakeLists.txt       2017-12-02 10:53:17.000000000 
+0100
+++ new/kactivities-5.42.0/CMakeLists.txt       2018-01-07 00:17:41.000000000 
+0100
@@ -3,8 +3,8 @@
 cmake_minimum_required(VERSION 3.0)
 
 # KDE Frameworks
-set(KF5_VERSION "5.41.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.41.0") # handled by release scripts
+set(KF5_VERSION "5.42.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.42.0") # handled by release scripts
 project (KActivities VERSION ${KF5_VERSION})
 
 option (KACTIVITIES_LIBRARY_ONLY "If true, compiles only the KActivities 
library, without the QML imports." OFF)
@@ -24,7 +24,7 @@
 
 # Extra CMake stuff
 include(FeatureSummary)
-find_package(ECM 5.41.0  NO_MODULE)
+find_package(ECM 5.42.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.41.0/src/lib/manager_p.cpp 
new/kactivities-5.42.0/src/lib/manager_p.cpp
--- old/kactivities-5.41.0/src/lib/manager_p.cpp        2017-12-02 
10:53:17.000000000 +0100
+++ new/kactivities-5.42.0/src/lib/manager_p.cpp        2018-01-07 
00:17:41.000000000 +0100
@@ -75,7 +75,8 @@
                 bool disableAutolaunch = 
QCoreApplication::instance()->property("org.kde.KActivities.core.disableAutostart").toBool();
 
                 qCDebug(KAMD_CORELIB) << "Should we start the daemon?";
-                if (!disableAutolaunch) {
+                // start only if not disabled and we have a dbus connection at 
all
+                if (!disableAutolaunch && 
QDBusConnection::sessionBus().interface()) {
                     qCDebug(KAMD_CORELIB) << "Starting the activity manager 
daemon";
                     auto reply = 
QDBusConnection::sessionBus().interface()->startService(KAMD_DBUS_SERVICE);
                     if (!reply.isValid()) {
@@ -98,7 +99,7 @@
 {
     return
         (s_instance ? s_instance->m_serviceRunning : true)
-        && 
QDBusConnection::sessionBus().interface()->isServiceRegistered(KAMD_DBUS_SERVICE);
+        && QDBusConnection::sessionBus().interface() && 
QDBusConnection::sessionBus().interface()->isServiceRegistered(KAMD_DBUS_SERVICE);
 }
 
 void Manager::serviceOwnerChanged(const QString &serviceName, const QString 
&oldOwner, const QString &newOwner)


Reply via email to