Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-kauth for openSUSE:Factory checked in at 2024-09-15 12:33:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kauth (Old) and /work/SRC/openSUSE:Factory/.kf6-kauth.new.29891 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kauth" Sun Sep 15 12:33:37 2024 rev:7 rq:1200995 version:6.6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kauth/kf6-kauth.changes 2024-08-10 19:09:53.042973700 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-kauth.new.29891/kf6-kauth.changes 2024-09-15 12:37:16.614714346 +0200 @@ -1,0 +2,11 @@ +Sat Sep 7 09:03:06 UTC 2024 - Christophe Marin <[email protected]> + +- Update to 6.6.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.6.0 +- Changes since 6.5.0: + * Update version to 6.6.0 + * HelperSupport: don't send debug message on application shutting down + +------------------------------------------------------------------- Old: ---- kauth-6.5.0.tar.xz kauth-6.5.0.tar.xz.sig New: ---- kauth-6.6.0.tar.xz kauth-6.6.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kauth.spec ++++++ --- /var/tmp/diff_new_pack.ry5KwW/_old 2024-09-15 12:37:17.162737036 +0200 +++ /var/tmp/diff_new_pack.ry5KwW/_new 2024-09-15 12:37:17.162737036 +0200 @@ -19,13 +19,13 @@ %define qt6_version 6.6.0 %define rname kauth -# Full KF6 version (e.g. 6.5.0) +# Full KF6 version (e.g. 6.6.0) %{!?_kf6_version: %global _kf6_version %{version}} # Last major and minor KF6 version (e.g. 6.0) %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-kauth -Version: 6.5.0 +Version: 6.6.0 Release: 0 Summary: Framework which lets applications perform actions as a privileged user License: LGPL-2.1-or-later ++++++ kauth-6.5.0.tar.xz -> kauth-6.6.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-6.5.0/CMakeLists.txt new/kauth-6.6.0/CMakeLists.txt --- old/kauth-6.5.0/CMakeLists.txt 2024-08-02 13:11:40.000000000 +0200 +++ new/kauth-6.6.0/CMakeLists.txt 2024-09-06 13:35:52.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.5.0") # handled by release scripts -set(KF_DEP_VERSION "6.5.0") # handled by release scripts +set(KF_VERSION "6.6.0") # handled by release scripts +set(KF_DEP_VERSION "6.6.0") # handled by release scripts project(KAuth VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 6.5.0 NO_MODULE) +find_package(ECM 6.6.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/kauth-6.5.0/poqm/de/kauth6_qt.po new/kauth-6.6.0/poqm/de/kauth6_qt.po --- old/kauth-6.5.0/poqm/de/kauth6_qt.po 2024-08-02 13:11:40.000000000 +0200 +++ new/kauth-6.6.0/poqm/de/kauth6_qt.po 2024-09-06 13:35:52.000000000 +0200 @@ -11,7 +11,7 @@ # Rolf Eike Beer <[email protected]>, 2012. msgid "" msgstr "" -"Project-Id-Version: kdelibs4\n" +"Project-Id-Version: kauth6_qt\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" "PO-Revision-Date: 2017-06-12 06:07+0100\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-6.5.0/src/backends/polkit-1/Polkit1Backend.h new/kauth-6.6.0/src/backends/polkit-1/Polkit1Backend.h --- old/kauth-6.5.0/src/backends/polkit-1/Polkit1Backend.h 2024-08-02 13:11:40.000000000 +0200 +++ new/kauth-6.6.0/src/backends/polkit-1/Polkit1Backend.h 2024-09-06 13:35:52.000000000 +0200 @@ -38,7 +38,7 @@ Action::AuthStatus authorizeAction(const QString &) override; Action::AuthStatus actionStatus(const QString &) override; QByteArray callerID() const override; - virtual bool isCallerAuthorized(const QString &action, const QByteArray &callerID, const QVariantMap &details) override; + bool isCallerAuthorized(const QString &action, const QByteArray &callerID, const QVariantMap &details) override; QVariantMap backendDetails(const DetailsMap &details) override; private Q_SLOTS: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-6.5.0/src/helpersupport.cpp new/kauth-6.6.0/src/helpersupport.cpp --- old/kauth-6.5.0/src/helpersupport.cpp 2024-08-02 13:11:40.000000000 +0200 +++ new/kauth-6.6.0/src/helpersupport.cpp 2024-09-06 13:35:52.000000000 +0200 @@ -125,7 +125,7 @@ break; } syslog(level, "%s", msg.constData()); - } else { + } else if (!QCoreApplication::closingDown()) { BackendsManager::helperProxy()->sendDebugMessage(type, msg.constData()); }
