Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package krunner for openSUSE:Factory checked in at 2023-04-09 18:40:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/krunner (Old) and /work/SRC/openSUSE:Factory/.krunner.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "krunner" Sun Apr 9 18:40:08 2023 rev:111 rq:1078083 version:5.105.0 Changes: -------- --- /work/SRC/openSUSE:Factory/krunner/krunner.changes 2023-03-12 16:25:31.421102387 +0100 +++ /work/SRC/openSUSE:Factory/.krunner.new.19717/krunner.changes 2023-04-09 18:42:16.170176604 +0200 @@ -1,0 +2,9 @@ +Sat Apr 1 17:00:53 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 5.105.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.105.0 +- No code change since 5.104.0 + +------------------------------------------------------------------- Old: ---- krunner-5.104.0.tar.xz krunner-5.104.0.tar.xz.sig New: ---- krunner-5.105.0.tar.xz krunner-5.105.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ krunner.spec ++++++ --- /var/tmp/diff_new_pack.KU9lYc/_old 2023-04-09 18:42:16.686179523 +0200 +++ /var/tmp/diff_new_pack.KU9lYc/_new 2023-04-09 18:42:16.690179545 +0200 @@ -17,7 +17,7 @@ %define lname libKF5Runner5 -%define _tar_path 5.104 +%define _tar_path 5.103 # 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.104.0 +Version: 5.105.0 Release: 0 Summary: KDE Framework for providing different actions given a string query License: LGPL-2.1-or-later ++++++ krunner-5.104.0.tar.xz -> krunner-5.105.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.104.0/CMakeLists.txt new/krunner-5.105.0/CMakeLists.txt --- old/krunner-5.104.0/CMakeLists.txt 2023-03-04 11:07:53.000000000 +0100 +++ new/krunner-5.105.0/CMakeLists.txt 2023-03-31 11:14:07.000000000 +0200 @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.104.0") # handled by release scripts -set(KF_DEP_VERSION "5.104.0") # handled by release scripts +set(KF_VERSION "5.105.0") # handled by release scripts +set(KF_DEP_VERSION "5.105.0") # handled by release scripts project(KRunner VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.104.0 NO_MODULE) +find_package(ECM 5.105.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.104.0/src/abstractrunner.h new/krunner-5.105.0/src/abstractrunner.h --- old/krunner-5.104.0/src/abstractrunner.h 2023-03-04 11:07:53.000000000 +0100 +++ new/krunner-5.105.0/src/abstractrunner.h 2023-03-31 11:14:07.000000000 +0200 @@ -691,8 +691,8 @@ private: std::unique_ptr<AbstractRunnerPrivate> const d; - bool hasUniqueResults(); - bool hasWeakResults(); + KRUNNER_NO_EXPORT bool hasUniqueResults(); + KRUNNER_NO_EXPORT bool hasWeakResults(); friend class RunnerContext; friend class RunnerContextPrivate; friend class QueryMatch; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.104.0/src/runnercontext.h new/krunner-5.105.0/src/runnercontext.h --- old/krunner-5.104.0/src/runnercontext.h 2023-03-04 11:07:53.000000000 +0100 +++ new/krunner-5.105.0/src/runnercontext.h 2023-03-31 11:14:07.000000000 +0200 @@ -299,9 +299,9 @@ void matchesChanged(); private: - QString requestedQueryString() const; - int requestedCursorPosition() const; - bool shouldIgnoreCurrentMatchForHistory() const; + KRUNNER_NO_EXPORT QString requestedQueryString() const; + KRUNNER_NO_EXPORT int requestedCursorPosition() const; + KRUNNER_NO_EXPORT bool shouldIgnoreCurrentMatchForHistory() const; friend class RunnerManager; QExplicitlySharedDataPointer<RunnerContextPrivate> d; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.104.0/src/runnermanager.h new/krunner-5.105.0/src/runnermanager.h --- old/krunner-5.104.0/src/runnermanager.h 2023-03-04 11:07:53.000000000 +0100 +++ new/krunner-5.105.0/src/runnermanager.h 2023-03-31 11:14:07.000000000 +0200 @@ -467,6 +467,7 @@ private: Q_PRIVATE_SLOT(d, void jobDone(ThreadWeaver::JobPointer)) KPluginMetaData convertDBusRunnerToJson(const QString &filename) const; + // exported for dbusrunnertest std::unique_ptr<RunnerManagerPrivate> const d; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.104.0/templates/runnerpython/runnerpy.kdevtemplate new/krunner-5.105.0/templates/runnerpython/runnerpy.kdevtemplate --- old/krunner-5.104.0/templates/runnerpython/runnerpy.kdevtemplate 2023-03-04 11:07:53.000000000 +0100 +++ new/krunner-5.105.0/templates/runnerpython/runnerpy.kdevtemplate 2023-03-31 11:14:07.000000000 +0200 @@ -16,6 +16,7 @@ Name[eu]=Python KRunner plugina Name[fi]=Python-KRunner-liitännäinen Name[fr]=module externe « KRunner » pour Python +Name[gl]=Complemento de Python para KRunner Name[hi]=पायथन à¤à¥à¤°à¤¨à¤° पà¥à¤²à¤à¤à¤¨ Name[hu]=KRunner Python-bÅvÃtmény Name[ia]=Plugin de KRunner de Python @@ -56,6 +57,7 @@ Comment[eu]=KRunner Python plugin batentzako D-Bus erabiltzen duen txantiloi bat Comment[fi]=Malli KRunnerin Python-liitännäiseksi D-Busia käyttäen Comment[fr]=Modèle pour le module externe « KRunner » pour Python, utilisant « D-Bus » +Comment[gl]=Modelo de complemento de Python para KRunner usando D-Bus Comment[hi]=डà¥-बस à¤à¤¾ पà¥à¤°à¤¯à¥à¤ à¤à¤°à¤¤à¥ हà¥à¤ à¤à¤ à¤à¥à¤°à¤¨à¤° पायथन पà¥à¤²à¤à¤à¤¨ à¤à¤¾ नमà¥à¤¨à¤¾ Comment[hu]=Sablon a D-Bust használó KRunner Python-bÅvÃtményekhez Comment[ia]=Patrono per un Plugin de Python de KRunner usante D-Bus
