Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package krunner for openSUSE:Factory checked in at 2022-04-11 23:47:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/krunner (Old) and /work/SRC/openSUSE:Factory/.krunner.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "krunner" Mon Apr 11 23:47:31 2022 rev:99 rq:968190 version:5.93.0 Changes: -------- --- /work/SRC/openSUSE:Factory/krunner/krunner.changes 2022-03-14 19:36:15.526068284 +0100 +++ /work/SRC/openSUSE:Factory/.krunner.new.1900/krunner.changes 2022-04-11 23:48:56.743274578 +0200 @@ -1,0 +2,15 @@ +Sun Apr 3 10:47:25 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.93.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.93.0 +- Changes since 5.92.0: + * Fix testremoterunner not registering object/service when building + without assertions + * Mark qrc file as non-copyrightable + * Remove upper-limits for RunnerManagerTest's timeouts + * autotests: urgh, this test is really timing dependent, and fails + if CI is slow + +------------------------------------------------------------------- Old: ---- krunner-5.92.0.tar.xz krunner-5.92.0.tar.xz.sig New: ---- krunner-5.93.0.tar.xz krunner-5.93.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ krunner.spec ++++++ --- /var/tmp/diff_new_pack.XSXE1w/_old 2022-04-11 23:48:57.215269182 +0200 +++ /var/tmp/diff_new_pack.XSXE1w/_new 2022-04-11 23:48:57.215269182 +0200 @@ -17,7 +17,7 @@ %define lname libKF5Runner5 -%define _tar_path 5.92 +%define _tar_path 5.93 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -25,7 +25,7 @@ # Only needed for the package signature condition %bcond_without released Name: krunner -Version: 5.92.0 +Version: 5.93.0 Release: 0 Summary: KDE Framework for providing different actions given a string query License: LGPL-2.1-or-later ++++++ krunner-5.92.0.tar.xz -> krunner-5.93.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/CMakeLists.txt new/krunner-5.93.0/CMakeLists.txt --- old/krunner-5.92.0/CMakeLists.txt 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/CMakeLists.txt 2022-04-02 12:03:17.000000000 +0200 @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.92.0") # handled by release scripts -set(KF_DEP_VERSION "5.92.0") # handled by release scripts +set(KF_VERSION "5.93.0") # handled by release scripts +set(KF_DEP_VERSION "5.93.0") # handled by release scripts project(KRunner VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.92.0 NO_MODULE) +find_package(ECM 5.93.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/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/krunner-5.92.0/autotests/runnermanagertest.cpp new/krunner-5.93.0/autotests/runnermanagertest.cpp --- old/krunner-5.92.0/autotests/runnermanagertest.cpp 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/autotests/runnermanagertest.cpp 2022-04-02 12:03:17.000000000 +0200 @@ -74,8 +74,9 @@ // However not yet a matcheschanged, it should be stalled for 250ms QCOMPARE(spyMatchesChanged.count(), 0); - // After 250ms it will emit with empty matches, we wait for that - QVERIFY(spyMatchesChanged.wait(265)); // 265ms as a margin of safety for 250ms + // After 250ms it will emit with empty matches, we wait for that. + // We can't put a low upper limit on these wait() calls because the CI environment can be slow. + QVERIFY(spyMatchesChanged.wait()); // This should take just a tad longer than 250ms. // This should have taken no less than 250ms. It waits for 250s before "giving up" and emitting an empty matches list. QVERIFY(timer.elapsed() >= 250); @@ -84,20 +85,18 @@ QCOMPARE(spyQueryFinished.count(), 1); // Still the same, query is not done // We programmed it to emit the result after 300ms, so we need to wait 50ms more for the next emission - QVERIFY(spyQueryFinished.wait(65)); // 65ms as a margin of safety for 50ms + QVERIFY(spyQueryFinished.wait()); // This should have taken at least 300ms total, as we requested via the special query string QVERIFY(timer.elapsed() >= 300); - // RunnerManager::jobDone() should have anticipated the final emission, so it should not have waited the full 250+250 ms. - QVERIFY(timer.elapsed() <= 330); // This total should be just a tad bigger than 300ms, we put a 10% margin of safety - + // At this point RunnerManager::jobDone() should have anticipated the final emission. QCOMPARE(spyMatchesChanged.count(), 2); // We had the second matchesChanged emission, now with the query result QCOMPARE(manager->matches().count(), 1); // The result is here QCOMPARE(spyQueryFinished.count(), 2); // Will have emited queryFinished, job is done // Now we will make sure that RunnerManager::scheduleMatchesChanged() emits matchesChanged instantly - // if we start a query with an empty string. It will never produce results, stalling is meaninless + // if we start a query with an empty string. It will never produce results, stalling is meaningless manager->launchQuery(""); QCOMPARE(spyMatchesChanged.count(), 3); // One more, instantly, without stall QCOMPARE(manager->matches().count(), 0); // Empty results for empty query string diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/autotests/testremoterunner.cpp new/krunner-5.93.0/autotests/testremoterunner.cpp --- old/krunner-5.92.0/autotests/testremoterunner.cpp 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/autotests/testremoterunner.cpp 2022-04-02 12:03:17.000000000 +0200 @@ -25,8 +25,10 @@ qDBusRegisterMetaType<RemoteAction>(); qDBusRegisterMetaType<RemoteActions>(); qDBusRegisterMetaType<RemoteImage>(); - Q_ASSERT(QDBusConnection::sessionBus().registerService(serviceName)); - Q_ASSERT(QDBusConnection::sessionBus().registerObject(QStringLiteral("/dave"), this)); + const bool connected = QDBusConnection::sessionBus().registerService(serviceName); + Q_ASSERT(connected); + const bool registered = QDBusConnection::sessionBus().registerObject(QStringLiteral("/dave"), this); + Q_ASSERT(registered); m_showLifecycleMethodCalls = showLifecycleMethodCalls; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/src/data/servicetypes/plasma-runner.desktop new/krunner-5.93.0/src/data/servicetypes/plasma-runner.desktop --- old/krunner-5.92.0/src/data/servicetypes/plasma-runner.desktop 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/src/data/servicetypes/plasma-runner.desktop 2022-04-02 12:03:17.000000000 +0200 @@ -10,7 +10,7 @@ Comment[az]=KRunner uzant??s?? Comment[bs]=Priklju??ak za KRunner Comment[ca]=Connector del KRunner -Comment[ca@valencia]=Connector del KRunner +Comment[ca@valencia]=Connector de KRunner Comment[cs]=Modul KRunneru Comment[da]=KRunner-plugin Comment[de]=KRunner-Modul diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/src/krunner.qrc new/krunner-5.93.0/src/krunner.qrc --- old/krunner-5.92.0/src/krunner.qrc 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/src/krunner.qrc 2022-04-02 12:03:17.000000000 +0200 @@ -1,4 +1,8 @@ <!DOCTYPE RCC> +<!-- +SPDX-FileCopyrightText: none +SPDX-License-Identifier: CC0-1.0 +--> <RCC version="1.0"> <qresource prefix="/kservicetypes5/"> <file alias="plasma-runner.desktop">data/servicetypes/plasma-runner.desktop</file> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/templates/runner/runner.kdevtemplate new/krunner-5.93.0/templates/runner/runner.kdevtemplate --- old/krunner-5.92.0/templates/runner/runner.kdevtemplate 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/templates/runner/runner.kdevtemplate 2022-04-02 12:03:17.000000000 +0200 @@ -49,7 +49,7 @@ Comment[ar]=???????? ???????????? ??????????????. ???????? ??????????????????? ?????????????? Comment[az]=Plasma ba??latma s??tri ??????n uzant??lar??n ??ablonu Comment[ca]=Plantilla de Runner del Plasma. Una plantilla de ??Runner?? per al Plasma -Comment[ca@valencia]=Plantilla de Runner del Plasma. Una plantilla de ??Runner?? per al Plasma +Comment[ca@valencia]=Plantilla de Runner de Plasma. Una plantilla de ??Runner?? per a Plasma Comment[da]=Skabelon til Plasma-runner. En skabelon til en Plasma-runner Comment[de]=Eine Vorlage f??r einen Plasma-Runner Comment[el]=Plasma Runner Template. ?????? ?????????????? ?????????????????? plasma diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.92.0/templates/runnerpython/runnerpy.kdevtemplate new/krunner-5.93.0/templates/runnerpython/runnerpy.kdevtemplate --- old/krunner-5.92.0/templates/runnerpython/runnerpy.kdevtemplate 2022-03-05 13:39:06.000000000 +0100 +++ new/krunner-5.93.0/templates/runnerpython/runnerpy.kdevtemplate 2022-04-02 12:03:17.000000000 +0200 @@ -3,7 +3,7 @@ Name[ar]=?????????? ???????????? ?????????????? Name[az]=Python KRunner qo??mas?? Name[ca]=Connector Python del KRunner -Name[ca@valencia]=Connector Python del KRunner +Name[ca@valencia]=Connector Python de KRunner Name[cs]=Modul KRunneru pr Python Name[da]=Python-plugin til KRunner Name[de]=KRunner-Modul f??r Python @@ -40,7 +40,7 @@ Comment[ar]=???????? ?????????? ???????????? ???????????? ???????????????? D-Bus Comment[az]=D-Bus il?? istifad?? olunan KRunner Python Qo??mas?? ??????n n??mun?? Comment[ca]=Plantilla per a un connector Python del KRunner usant D-Bus -Comment[ca@valencia]=Plantilla per a un connector Python del KRunner usant D-Bus +Comment[ca@valencia]=Plantilla per a un connector Python de KRunner usant D-Bus Comment[da]=Skabelon til et KRunner Python-plugin med brug af D-Bus Comment[de]=Vorlage f??r ein KRunner-Modul f??r Python, das D-Bus verwendet Comment[el]=?????????????? ?????? ?????? Python ???????????????? ?????? KRunner ???? ?????????? D-Bus
