Hello community, here is the log from the commit of package systemsettings5 for openSUSE:Factory checked in at 2017-10-27 13:51:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/systemsettings5 (Old) and /work/SRC/openSUSE:Factory/.systemsettings5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "systemsettings5" Fri Oct 27 13:51:53 2017 rev:55 rq:536687 version:5.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/systemsettings5/systemsettings5.changes 2017-10-23 16:25:16.695359038 +0200 +++ /work/SRC/openSUSE:Factory/.systemsettings5.new/systemsettings5.changes 2017-10-27 13:51:55.278661285 +0200 @@ -1,0 +2,12 @@ +Tue Oct 24 18:14:31 CEST 2017 - [email protected] + +- Update to 5.11.2 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.11.2.php +- Changes since 5.11.1: + * Fix colours not updating in systemsettings +- Add patch to fix the startup notification: + * 0001-Fix-DBus-startup-notification.patch + +------------------------------------------------------------------- Old: ---- systemsettings-5.11.1.tar.xz New: ---- 0001-Fix-DBus-startup-notification.patch systemsettings-5.11.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ systemsettings5.spec ++++++ --- /var/tmp/diff_new_pack.bZ49df/_old 2017-10-27 13:51:56.458606134 +0200 +++ /var/tmp/diff_new_pack.bZ49df/_new 2017-10-27 13:51:56.462605947 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: systemsettings5 -Version: 5.11.1 +Version: 5.11.2 Release: 0 Summary: KDE's control center License: GPL-2.0+ @@ -31,6 +31,8 @@ Patch1: systemsettings-desktop.diff # PATCH-FIX-UPSTREAM Patch2: 0001-try-harder-to-wrap-very-long-words.patch +# PATCH-FIX-UPSTREAM +Patch3: 0001-Fix-DBus-startup-notification.patch BuildRequires: extra-cmake-modules >= 1.2.0 BuildRequires: kf5-filesystem BuildRequires: kirigami2-devel @@ -78,6 +80,7 @@ %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir} ++++++ 0001-Fix-DBus-startup-notification.patch ++++++ >From 00c651ed4d3fd764c4b4bb7335ba97929198b8d2 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <[email protected]> Date: Tue, 24 Oct 2017 22:05:36 +0200 Subject: [PATCH] Fix DBus startup notification Summary: In "Fix colours not updating in systemsettings", the application name got changed from "systemsettings5" (inferred from the binary name) to "systemsettings", which results in a change from "org.kde.systemsettings5" as DBus path to "org.kde.systemsettings". KLauncher uses org.kde.<binary name> by default, so that needs to be overwritten. Fixes the "KDEInit count not launch /usr/bin/systemsettings5" message after closing systemsettings and likely also launching it while it's running. Test Plan: Opened it from dolphin and closed the window again. Only after this patch the KDEInit error message disappeared. Reviewers: #plasma, davidedmundson Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D8455 --- app/kdesystemsettings.desktop | 1 + app/systemsettings.desktop | 1 + 2 files changed, 2 insertions(+) diff --git a/app/kdesystemsettings.desktop b/app/kdesystemsettings.desktop index afdfad1..f65fe0a 100755 --- a/app/kdesystemsettings.desktop +++ b/app/kdesystemsettings.desktop @@ -139,4 +139,5 @@ Comment[uk]=Інструменти для налаштовування вашо Comment[x-test]=xxConfiguration tools for your computerxx Comment[zh_CN]=您的计算机的配置工具 X-DBUS-StartupType=Unique +X-DBUS-ServiceName=org.kde.systemsettings Categories=Qt;KDE;Settings; diff --git a/app/systemsettings.desktop b/app/systemsettings.desktop index 86d2fbd..1914bcd 100755 --- a/app/systemsettings.desktop +++ b/app/systemsettings.desktop @@ -196,4 +196,5 @@ Comment[uk]=Інструменти для налаштовування вашо Comment[x-test]=xxConfiguration tools for your computerxx Comment[zh_CN]=您的计算机的配置工具 X-DBUS-StartupType=Unique +X-DBUS-ServiceName=org.kde.systemsettings Categories=Qt;KDE;Settings; -- 2.14.1 ++++++ systemsettings-5.11.1.tar.xz -> systemsettings-5.11.2.tar.xz ++++++ ++++ 5632 lines of diff (skipped)
