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-07-11 19:08:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/krunner (Old) and /work/SRC/openSUSE:Factory/.krunner.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "krunner" Mon Jul 11 19:08:59 2022 rev:102 rq:988164 version:5.96.0 Changes: -------- --- /work/SRC/openSUSE:Factory/krunner/krunner.changes 2022-06-17 21:21:33.290742201 +0200 +++ /work/SRC/openSUSE:Factory/.krunner.new.1523/krunner.changes 2022-07-11 19:10:28.527702605 +0200 @@ -1,0 +2,13 @@ +Sun Jul 3 11:56:09 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.96.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.96.0 +- Changes since 5.95.0: + * Move include outside #ifdef as it's necessary + * Don't duplicate headers between cpp/.h files + * Bump deprecation KF version in ecm_set_disabled_deprecation_versions + * Use cmakedefine01 + +------------------------------------------------------------------- Old: ---- krunner-5.95.0.tar.xz krunner-5.95.0.tar.xz.sig New: ---- krunner-5.96.0.tar.xz krunner-5.96.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ krunner.spec ++++++ --- /var/tmp/diff_new_pack.JJghNM/_old 2022-07-11 19:10:29.027703330 +0200 +++ /var/tmp/diff_new_pack.JJghNM/_new 2022-07-11 19:10:29.031703336 +0200 @@ -17,7 +17,7 @@ %define lname libKF5Runner5 -%define _tar_path 5.95 +%define _tar_path 5.96 # 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.95.0 +Version: 5.96.0 Release: 0 Summary: KDE Framework for providing different actions given a string query License: LGPL-2.1-or-later ++++++ krunner-5.95.0.tar.xz -> krunner-5.96.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/CMakeLists.txt new/krunner-5.96.0/CMakeLists.txt --- old/krunner-5.95.0/CMakeLists.txt 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/CMakeLists.txt 2022-07-02 16:37:41.000000000 +0200 @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.95.0") # handled by release scripts -set(KF_DEP_VERSION "5.95.0") # handled by release scripts +set(KF_VERSION "5.96.0") # handled by release scripts +set(KF_DEP_VERSION "5.96.0") # handled by release scripts project(KRunner VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.95.0 NO_MODULE) +find_package(ECM 5.96.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) @@ -49,7 +49,7 @@ ecm_set_disabled_deprecation_versions( QT ${REQUIRED_QT_VERSION} - KF 5.94.0 + KF 5.95.0 PLASMA 5.0.0 # needed because we use Plasma::Package in the API KSERVICE 5.89.0 # needed because we use KPluginInfo, KServiceTypeTrader in the API ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/src/abstractrunner.cpp new/krunner-5.96.0/src/abstractrunner.cpp --- old/krunner-5.95.0/src/abstractrunner.cpp 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/src/abstractrunner.cpp 2022-07-02 16:37:41.000000000 +0200 @@ -15,11 +15,9 @@ #include <QAction> #include <QElapsedTimer> #include <QHash> -#include <QIcon> #include <QMimeData> #include <QMutex> -#include <KConfigGroup> #include <KLocalizedString> #include <KSharedConfig> #if KRUNNER_BUILD_DEPRECATED_SINCE(5, 65) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/src/abstractrunner.h new/krunner-5.96.0/src/abstractrunner.h --- old/krunner-5.95.0/src/abstractrunner.h 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/src/abstractrunner.h 2022-07-02 16:37:41.000000000 +0200 @@ -9,11 +9,11 @@ #include "krunner_export.h" +#include <KConfigGroup> #include <QObject> #include <QStringList> #if KRUNNER_ENABLE_DEPRECATED_SINCE(5, 94) -#include <KConfigGroup> #include <QIcon> #else class KConfigGroup; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/src/config.h.cmake new/krunner-5.96.0/src/config.h.cmake --- old/krunner-5.95.0/src/config.h.cmake 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/src/config.h.cmake 2022-07-02 16:37:41.000000000 +0200 @@ -1,4 +1,4 @@ // SPDX-FileCopyrightText: Alexander Lohnau <alexander.loh...@gmx.de> // SPDX-License-Identifier: CC0-1.0 -#cmakedefine HAVE_KACTIVITIES +#cmakedefine01 HAVE_KACTIVITIES diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/src/data/servicetypes/plasma-runner.desktop new/krunner-5.96.0/src/data/servicetypes/plasma-runner.desktop --- old/krunner-5.95.0/src/data/servicetypes/plasma-runner.desktop 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/src/data/servicetypes/plasma-runner.desktop 2022-07-02 16:37:41.000000000 +0200 @@ -8,9 +8,10 @@ Comment=KRunner plugin Comment[ar]=?????????? ???????????????? Comment[az]=KRunner uzant??s?? +Comment[bg]=?????????????????? KRunner Comment[bs]=Priklju??ak za KRunner Comment[ca]=Connector del KRunner -Comment[ca@valencia]=Conector de KRunner +Comment[ca@valencia]=Connector de KRunner Comment[cs]=Modul KRunneru Comment[da]=KRunner-plugin Comment[de]=KRunner-Modul @@ -49,6 +50,7 @@ Comment[sr@ijekavianlatin]=Priklju??ak K???izvo??a??a Comment[sr@latin]=Priklju??ak K???izvo??a??a Comment[sv]=Insticksprogram f??r K??r program +Comment[ta]=???????????????????????? ????????????????????????????????? Comment[tg]=???????????????????? KRunner Comment[tr]=KRunner eklentisi Comment[ug]=KRunner ???????????????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/src/runnermanager.cpp new/krunner-5.96.0/src/runnermanager.cpp --- old/krunner-5.95.0/src/runnermanager.cpp 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/src/runnermanager.cpp 2022-07-02 16:37:41.000000000 +0200 @@ -26,7 +26,7 @@ #include <KSharedConfig> #include "config.h" -#ifdef HAVE_KACTIVITIES +#if HAVE_KACTIVITIES #include <KActivities/Consumer> #endif @@ -129,7 +129,7 @@ #if KRUNNER_BUILD_DEPRECATED_SINCE(5, 76) enabledCategories = stateData.readEntry("enabledCategories", QStringList()); #endif -#ifdef HAVE_KACTIVITIES +#if HAVE_KACTIVITIES // Wait for consumer to be ready QObject::connect(&activitiesConsumer, &KActivities::Consumer::serviceStatusChanged, @@ -435,7 +435,7 @@ inline QString getActivityKey() { -#ifdef HAVE_KACTIVITIES +#if HAVE_KACTIVITIES if (activityAware) { const QString currentActivity = activitiesConsumer.currentActivity(); return currentActivity.isEmpty() ? nulluuid : currentActivity; @@ -472,7 +472,7 @@ stateData.sync(); } -#ifdef HAVE_KACTIVITIES +#if HAVE_KACTIVITIES void deleteHistoryOfDeletedActivities() { KConfigGroup historyGroup = stateData.group("History"); @@ -527,7 +527,7 @@ KSharedConfigPtr configPrt; KConfigGroup stateData; QSet<QString> disabledRunnerIds; // Runners that are disabled but were loaded as single runners -#ifdef HAVE_KACTIVITIES +#if HAVE_KACTIVITIES const KActivities::Consumer activitiesConsumer; #endif }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/templates/runner/runner.kdevtemplate new/krunner-5.96.0/templates/runner/runner.kdevtemplate --- old/krunner-5.95.0/templates/runner/runner.kdevtemplate 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/templates/runner/runner.kdevtemplate 2022-07-02 16:37:41.000000000 +0200 @@ -3,6 +3,7 @@ Name=C++ Name[ar]=????++ Name[az]=C++ +Name[bg]=C++ Name[ca]=C++ Name[ca@valencia]=C++ Name[cs]=C++ @@ -49,6 +50,7 @@ Comment=Plasma Runner Template. A plasma runner template Comment[ar]=???????? ???????????? ??????????????. ???????? ??????????????????? ?????????????? Comment[az]=Plasma ba??latma s??tri ??????n uzant??lar??n ??ablonu +Comment[bg]=Plasma Runner ???????????? Comment[ca]=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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/krunner-5.95.0/templates/runnerpython/runnerpy.kdevtemplate new/krunner-5.96.0/templates/runnerpython/runnerpy.kdevtemplate --- old/krunner-5.95.0/templates/runnerpython/runnerpy.kdevtemplate 2022-06-07 04:02:12.000000000 +0200 +++ new/krunner-5.96.0/templates/runnerpython/runnerpy.kdevtemplate 2022-07-02 16:37:41.000000000 +0200 @@ -2,8 +2,9 @@ Name=Python KRunner Plugin Name[ar]=?????????? ???????????? ?????????????? Name[az]=Python KRunner qo??mas?? +Name[bg]=?????????????????? ???? Python KRunner Name[ca]=Connector Python del KRunner -Name[ca@valencia]=Conector Python de 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 @@ -32,6 +33,7 @@ Name[sk]=Z??suvn?? modul Python pre KRunner Name[sl]=Vti??nik za Python KRunner Name[sv]=Python-insticksprogram f??r K??r program +Name[ta]=??????????????????????????????????????? ????????????????????? ????????????????????????????????? Name[tr]=Python KRunner Eklentisi Name[uk]=?????????????? ???? KRunner ?????????? Python Name[vi]=Ph???n c??i c???m KRunner Python @@ -40,8 +42,9 @@ Comment=Template for a KRunner Python Plugin using D-Bus Comment[ar]=???????? ?????????? ???????????? ???????????? ???????????????? D-Bus Comment[az]=D-Bus il?? istifad?? olunan KRunner Python Qo??mas?? ??????n n??mun?? +Comment[bg]=???????????? ???? KRunner Python Plugin ?????????????????? D-Bus Comment[ca]=Plantilla per a un connector Python del KRunner usant D-Bus -Comment[ca@valencia]=Plantilla per a un conector Python de KRunner utilisant D-Bus +Comment[ca@valencia]=Plantilla per a un connector Python de KRunner utilitzant 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