Hello community, here is the log from the commit of package kinit for openSUSE:Factory checked in at 2019-02-14 14:26:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kinit (Old) and /work/SRC/openSUSE:Factory/.kinit.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kinit" Thu Feb 14 14:26:14 2019 rev:62 rq:674246 version:5.55.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kinit/kinit.changes 2019-01-21 10:20:44.134052107 +0100 +++ /work/SRC/openSUSE:Factory/.kinit.new.28833/kinit.changes 2019-02-14 14:26:14.363849849 +0100 @@ -1,0 +2,11 @@ +Sun Feb 10 22:03:10 UTC 2019 - [email protected] + +- Update to 5.55.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.55.0.php +- Changes since 5.54.0: + * KLauncher: handle processes exiting without error (kde#389678) + * delete copy constructor and assignment operator of some internal classes + +------------------------------------------------------------------- Old: ---- kinit-5.54.0.tar.xz New: ---- kinit-5.55.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kinit.spec ++++++ --- /var/tmp/diff_new_pack.56D55c/_old 2019-02-14 14:26:14.935849582 +0100 +++ /var/tmp/diff_new_pack.56D55c/_new 2019-02-14 14:26:14.939849580 +0100 @@ -16,14 +16,14 @@ # -%define _tar_path 5.54 +%define _tar_path 5.55 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kinit -Version: 5.54.0 +Version: 5.55.0 Release: 0 Summary: Helper library to speed up start of applications on KDE workspaces License: LGPL-2.1-or-later ++++++ kinit-5.54.0.tar.xz -> kinit-5.55.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kinit-5.54.0/CMakeLists.txt new/kinit-5.55.0/CMakeLists.txt --- old/kinit-5.54.0/CMakeLists.txt 2019-01-06 21:23:15.000000000 +0100 +++ new/kinit-5.55.0/CMakeLists.txt 2019-02-03 00:58:20.000000000 +0100 @@ -3,13 +3,13 @@ project(KInit) include(FeatureSummary) -find_package(ECM 5.54.0 NO_MODULE) +find_package(ECM 5.55.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) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) -set(REQUIRED_QT_VERSION 5.9.0) +set(REQUIRED_QT_VERSION 5.10.0) find_package(Qt5 "${REQUIRED_QT_VERSION}" CONFIG REQUIRED Core Gui DBus) include(KDEInstallDirs) include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) @@ -19,8 +19,8 @@ include(CMakePackageConfigHelpers) include(ECMSetupVersion) -set(KF5_VERSION "5.54.0") # handled by release scripts -set(KF5_DEP_VERSION "5.54.0") # handled by release scripts +set(KF5_VERSION "5.55.0") # handled by release scripts +set(KF5_DEP_VERSION "5.55.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KINIT VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kinit_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kinit-5.54.0/po/zh_CN/kinit5.po new/kinit-5.55.0/po/zh_CN/kinit5.po --- old/kinit-5.54.0/po/zh_CN/kinit5.po 2019-01-06 21:23:15.000000000 +0100 +++ new/kinit-5.55.0/po/zh_CN/kinit5.po 2019-02-03 00:58:20.000000000 +0100 @@ -16,7 +16,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-09-16 03:43+0200\n" -"PO-Revision-Date: 2019-01-05 20:42\n" +"PO-Revision-Date: 2019-01-27 22:57\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kinit-5.54.0/src/klauncher/autostart.h new/kinit-5.55.0/src/klauncher/autostart.h --- old/kinit-5.54.0/src/klauncher/autostart.h 2019-01-06 21:23:15.000000000 +0100 +++ new/kinit-5.55.0/src/klauncher/autostart.h 2019-02-03 00:58:20.000000000 +0100 @@ -31,6 +31,9 @@ AutoStart(); ~AutoStart(); + AutoStart(const AutoStart &) = delete; + AutoStart &operator=(const AutoStart &) = delete; + void loadAutoStartList(); QString startService(); void setPhase(int phase); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kinit-5.54.0/src/klauncher/klauncher.cpp new/kinit-5.55.0/src/klauncher/klauncher.cpp --- old/kinit-5.54.0/src/klauncher/klauncher.cpp 2019-01-06 21:23:15.000000000 +0100 +++ new/kinit-5.55.0/src/klauncher/klauncher.cpp 2019-02-03 00:58:20.000000000 +0100 @@ -320,7 +320,6 @@ KLauncher::processDied(pid_t pid, long exitStatus) { qCDebug(KLAUNCHER) << pid << "exitStatus=" << exitStatus; - // We should probably check the exitStatus for the uniqueapp case? foreach (KLaunchRequest *request, requestList) { qCDebug(KLAUNCHER) << " had pending request" << request->pid; if (request->pid == pid) { @@ -331,6 +330,14 @@ } else if(request->dbus_startup_type == KService::DBusNone && request->wait) { request->status = KLaunchRequest::Running; qCDebug(KLAUNCHER) << pid << "running as DBusNone with wait to true"; + } else if (exitStatus == 0 && + (request->dbus_startup_type == KService::DBusUnique || + request->dbus_startup_type == KService::DBusMulti)) { + // e.g. opening kate from a widget on the panel/desktop, where it + // shows the session chooser dialog before ever entering the main + // app event loop, then quitting/closing the dialog without starting kate + request->status = KLaunchRequest::Done; + qCDebug(KLAUNCHER) << pid << "exited without error, requestDone. status=" << request->status; } else { request->status = KLaunchRequest::Error; qCDebug(KLAUNCHER) << pid << "died, requestDone. status=" << request->status;
