Hello community,

here is the log from the commit of package kded for openSUSE:Factory checked in 
at 2018-01-09 14:40:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kded (Old)
 and      /work/SRC/openSUSE:Factory/.kded.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kded"

Tue Jan  9 14:40:52 2018 rev:48 rq:559431 version:5.41.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kded/kded.changes        2017-11-16 
14:36:59.319428654 +0100
+++ /work/SRC/openSUSE:Factory/.kded.new/kded.changes   2018-01-09 
14:41:41.464161661 +0100
@@ -1,0 +2,11 @@
+Sun Dec 17 09:43:48 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * We depend against 5.7
+  * kded: remove dbus calls to ksplash.
+
+-------------------------------------------------------------------

Old:
----
  kded-5.40.0.tar.xz

New:
----
  kded-5.41.0.tar.xz

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

Other differences:
------------------
++++++ kded.spec ++++++
--- /var/tmp/diff_new_pack.0llkww/_old  2018-01-09 14:41:41.972137837 +0100
+++ /var/tmp/diff_new_pack.0llkww/_new  2018-01-09 14:41:41.976137649 +0100
@@ -17,13 +17,13 @@
 
 
 %bcond_without lang
-%define _tar_path 5.40
+%define _tar_path 5.41
 # 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:           kded
-Version:        5.40.0
+Version:        5.41.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 3.0

++++++ kded-5.40.0.tar.xz -> kded-5.41.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kded-5.40.0/CMakeLists.txt 
new/kded-5.41.0/CMakeLists.txt
--- old/kded-5.40.0/CMakeLists.txt      2017-11-05 09:27:46.000000000 +0100
+++ new/kded-5.41.0/CMakeLists.txt      2017-12-02 21:03:29.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.41.0") # handled by release scripts
 project(KDED VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.40.0  NO_MODULE)
+find_package(ECM 5.41.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/kded-5.40.0/src/kded.cpp new/kded-5.41.0/src/kded.cpp
--- old/kded-5.40.0/src/kded.cpp        2017-11-05 09:27:46.000000000 +0100
+++ new/kded-5.41.0/src/kded.cpp        2017-12-02 21:03:29.000000000 +0100
@@ -37,7 +37,6 @@
 #include <QDBusConnectionInterface>
 #include <QDBusInterface>
 #include <QDBusServiceWatcher>
-#include <QDBusPendingCall>
 
 #include <KDBusService>
 #include <kconfiggroup.h>
@@ -54,12 +53,7 @@
 
 Q_DECLARE_LOGGING_CATEGORY(KDED)
 
-#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
-// logging category for this framework, default: log stuff >= warning
 Q_LOGGING_CATEGORY(KDED, "kf5.kded", QtWarningMsg)
-#else
-Q_LOGGING_CATEGORY(KDED, "kf5.kded")
-#endif
 
 Kded *Kded::_self = nullptr;
 
@@ -777,28 +771,8 @@
         (void) new KUpdateD;    // Watch for updates
     }
 
-//NOTE: We are going to change how KDE starts and this certanly doesn't fit on 
the new design.
-#ifdef Q_OS_LINUX
-    // Tell KSplash that KDED has started
-    QDBusMessage ksplashProgressMessage = 
QDBusMessage::createMethodCall(QStringLiteral("org.kde.KSplash"),
-                                          QStringLiteral("/KSplash"),
-                                          QStringLiteral("org.kde.KSplash"),
-                                          QStringLiteral("setStage"));
-    ksplashProgressMessage.setArguments(QList<QVariant>() << 
QStringLiteral("kded"));
-    QDBusConnection::sessionBus().asyncCall(ksplashProgressMessage);
-#endif
-
     runKonfUpdate(); // Run it once.
 
-#ifdef Q_OS_LINUX
-    ksplashProgressMessage = 
QDBusMessage::createMethodCall(QStringLiteral("org.kde.KSplash"),
-                             QStringLiteral("/KSplash"),
-                             QStringLiteral("org.kde.KSplash"),
-                             QStringLiteral("setStage"));
-    ksplashProgressMessage.setArguments(QList<QVariant>() << 
QStringLiteral("confupdate"));
-    QDBusConnection::sessionBus().asyncCall(ksplashProgressMessage);
-#endif
-
     int result = app.exec(); // keep running
 
     delete kded;


Reply via email to