Hello community, here is the log from the commit of package kded for openSUSE:Factory checked in at 2018-11-20 22:28:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kded (Old) and /work/SRC/openSUSE:Factory/.kded.new.19453 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kded" Tue Nov 20 22:28:29 2018 rev:61 rq:650029 version:5.52.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kded/kded.changes 2018-11-14 14:33:03.243345900 +0100 +++ /work/SRC/openSUSE:Factory/.kded.new.19453/kded.changes 2018-11-20 22:28:35.646735669 +0100 @@ -1,0 +2,6 @@ +Sun Nov 18 13:59:05 UTC 2018 - Fabian Vogt <[email protected]> + +- Add patch to rebuild sycoca quicker (boo#1111420): + * 0001-Decrease-the-delay-between-change-notification-and-s.patch + +------------------------------------------------------------------- New: ---- 0001-Decrease-the-delay-between-change-notification-and-s.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kded.spec ++++++ --- /var/tmp/diff_new_pack.TmK0vd/_old 2018-11-20 22:28:36.450735192 +0100 +++ /var/tmp/diff_new_pack.TmK0vd/_new 2018-11-20 22:28:36.450735192 +0100 @@ -30,6 +30,8 @@ Group: System/GUI/KDE URL: https://www.kde.org Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz +# PATCH-FIX-OPENSUSE (for now mostly to get openQA's opinion) +Patch100: 0001-Decrease-the-delay-between-change-notification-and-s.patch BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: fdupes @@ -70,7 +72,7 @@ %lang_package %prep -%setup -q +%autosetup -p1 %build %cmake_kf5 -d build ++++++ 0001-Decrease-the-delay-between-change-notification-and-s.patch ++++++ >From 7ad5c6200a0a154895b4cbf8be21d721e2b83ae2 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <[email protected]> Date: Sun, 18 Nov 2018 14:55:30 +0100 Subject: [PATCH] Decrease the delay between change notification and sycoca rebuild to 1s References: boo#1111420 Currently it waits 10s before doing anything, which is too much. If another modification happens during the delay, it's delayed further, so this shouldn't be an issue. --- src/kded.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kded.cpp b/src/kded.cpp index ed03dcd..a2f4abc 100644 --- a/src/kded.cpp +++ b/src/kded.cpp @@ -556,7 +556,7 @@ void Kded::dirDeleted(const QString &path) void Kded::update(const QString &) { - m_pTimer->start(10000); + m_pTimer->start(1000); } void Kded::readDirectory(const QString &_path) -- 2.19.0
