Hello community,

here is the log from the commit of package kauth for openSUSE:Factory checked 
in at 2018-06-22 13:17:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kauth (Old)
 and      /work/SRC/openSUSE:Factory/.kauth.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kauth"

Fri Jun 22 13:17:52 2018 rev:59 rq:616739 version:5.47.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kauth/kauth.changes      2018-05-18 
14:20:12.955297780 +0200
+++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2018-06-22 
13:18:52.251278429 +0200
@@ -1,0 +2,10 @@
+Tue Jun 12 21:26:02 UTC 2018 - [email protected]
+
+- Update to 5.47.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.47.0.php
+- Changes since 5.46.0:
+  * Warning--
+
+-------------------------------------------------------------------

Old:
----
  kauth-5.46.0.tar.xz

New:
----
  kauth-5.47.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kauth.spec ++++++
--- /var/tmp/diff_new_pack.uNv64w/_old  2018-06-22 13:18:53.215242686 +0200
+++ /var/tmp/diff_new_pack.uNv64w/_new  2018-06-22 13:18:53.219242538 +0200
@@ -18,13 +18,13 @@
 
 %bcond_without lang
 %define lname   libKF5Auth5
-%define _tar_path 5.46
+%define _tar_path 5.47
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:           kauth
-Version:        5.46.0
+Version:        5.47.0
 Release:        0
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -52,9 +52,7 @@
 Summary:        Framework which lets applications perform actions as a 
privileged user
 Group:          System/GUI/KDE
 Obsoletes:      libKF5Auth4
-%if %{with lang}
 Recommends:     %lname-lang = %{version}
-%endif
 
 %description -n %lname
 KAuth is a framework to let applications perform actions as a privileged user.
@@ -102,7 +100,7 @@
 %dir %{_kf5_libdir}/libexec
 %{_kf5_libdir}/libexec/kauth
 %config %{_kf5_sysconfdir}/dbus-1/system.d/org.kde.kf5auth.conf
-%{_kf5_debugdir}/*.categories
+%{_kf5_debugdir}/kauth.categories
 
 %files devel
 %defattr(-,root,root)

++++++ kauth-5.46.0.tar.xz -> kauth-5.47.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/CMakeLists.txt 
new/kauth-5.47.0/CMakeLists.txt
--- old/kauth-5.46.0/CMakeLists.txt     2018-05-05 14:55:43.000000000 +0200
+++ new/kauth-5.47.0/CMakeLists.txt     2018-06-02 19:47:45.000000000 +0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.46.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.46.0") # handled by release scripts
+set(KF5_VERSION "5.47.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.47.0") # handled by release scripts
 project(KAuth VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.46.0  NO_MODULE)
+find_package(ECM 5.47.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/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-5.46.0/autotests/TestBackend.h 
new/kauth-5.47.0/autotests/TestBackend.h
--- old/kauth-5.46.0/autotests/TestBackend.h    2018-05-05 14:55:43.000000000 
+0200
+++ new/kauth-5.47.0/autotests/TestBackend.h    2018-06-02 19:47:45.000000000 
+0200
@@ -35,12 +35,12 @@
 
 public:
     TestBackend();
-    void setupAction(const QString &) Q_DECL_OVERRIDE;
-    Action::AuthStatus authorizeAction(const QString &) Q_DECL_OVERRIDE;
-    Action::AuthStatus actionStatus(const QString &) Q_DECL_OVERRIDE;
-    QByteArray callerID() const Q_DECL_OVERRIDE;
-    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
Q_DECL_OVERRIDE;
-    bool actionExists(const QString &action) Q_DECL_OVERRIDE;
+    void setupAction(const QString &) override;
+    Action::AuthStatus authorizeAction(const QString &) override;
+    Action::AuthStatus actionStatus(const QString &) override;
+    QByteArray callerID() const override;
+    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
override;
+    bool actionExists(const QString &action) override;
 
 public Q_SLOTS:
     void setNewCapabilities(KAuth::AuthBackend::Capabilities capabilities);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/po/id/kauth5_qt.po 
new/kauth-5.47.0/po/id/kauth5_qt.po
--- old/kauth-5.46.0/po/id/kauth5_qt.po 2018-05-05 14:55:43.000000000 +0200
+++ new/kauth-5.47.0/po/id/kauth5_qt.po 2018-06-02 19:47:45.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2018-02-17 19:14+0700\n"
+"PO-Revision-Date: 2018-05-31 22:01+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -49,7 +49,7 @@
 #: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
-msgstr "Mencoba menjalankan aksi tidak sah"
+msgstr "Mencoba menjalankan aksi tidak absah"
 
 #: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/po/zh_CN/kauth5_qt.po 
new/kauth-5.47.0/po/zh_CN/kauth5_qt.po
--- old/kauth-5.46.0/po/zh_CN/kauth5_qt.po      2018-05-05 14:55:43.000000000 
+0200
+++ new/kauth-5.47.0/po/zh_CN/kauth5_qt.po      2018-06-02 19:47:45.000000000 
+0200
@@ -14,7 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2018-04-26 05:22-0400\n"
+"PO-Revision-Date: 2018-05-18 06:23-0400\n"
 "Last-Translator: guoyunhebrave <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/src/backends/dbus/DBusHelperProxy.cpp 
new/kauth-5.47.0/src/backends/dbus/DBusHelperProxy.cpp
--- old/kauth-5.46.0/src/backends/dbus/DBusHelperProxy.cpp      2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/dbus/DBusHelperProxy.cpp      2018-06-02 
19:47:45.000000000 +0200
@@ -151,7 +151,7 @@
 
 void DBusHelperProxy::remoteSignalReceived(int t, const QString &action, 
QByteArray blob)
 {
-    SignalType type = (SignalType)t;
+    SignalType type = static_cast<SignalType>(t);
     QDataStream stream(&blob, QIODevice::ReadOnly);
 
     if (type == ActionStarted) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/src/backends/dbus/DBusHelperProxy.h 
new/kauth-5.47.0/src/backends/dbus/DBusHelperProxy.h
--- old/kauth-5.46.0/src/backends/dbus/DBusHelperProxy.h        2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/dbus/DBusHelperProxy.h        2018-06-02 
19:47:45.000000000 +0200
@@ -56,18 +56,18 @@
     DBusHelperProxy();
     DBusHelperProxy(const QDBusConnection &busConnection);
 
-    virtual ~DBusHelperProxy();
+    ~DBusHelperProxy() override;
 
     virtual void executeAction(const QString &action, const QString &helperID,
-                               const QVariantMap &arguments, int timeout = -1) 
Q_DECL_OVERRIDE;
-    void stopAction(const QString &action, const QString &helperID) 
Q_DECL_OVERRIDE;
+                               const QVariantMap &arguments, int timeout = -1) 
override;
+    void stopAction(const QString &action, const QString &helperID) override;
 
-    bool initHelper(const QString &name) Q_DECL_OVERRIDE;
-    void setHelperResponder(QObject *o) Q_DECL_OVERRIDE;
-    bool hasToStopAction() Q_DECL_OVERRIDE;
-    void sendDebugMessage(int level, const char *msg) Q_DECL_OVERRIDE;
-    void sendProgressStep(int step) Q_DECL_OVERRIDE;
-    void sendProgressStep(const QVariantMap &data) Q_DECL_OVERRIDE;
+    bool initHelper(const QString &name) override;
+    void setHelperResponder(QObject *o) override;
+    bool hasToStopAction() override;
+    void sendDebugMessage(int level, const char *msg) override;
+    void sendProgressStep(int step) override;
+    void sendProgressStep(const QVariantMap &data) override;
 
 public Q_SLOTS:
     void stopAction(const QString &action);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/src/backends/fake/FakeBackend.h 
new/kauth-5.47.0/src/backends/fake/FakeBackend.h
--- old/kauth-5.46.0/src/backends/fake/FakeBackend.h    2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/fake/FakeBackend.h    2018-06-02 
19:47:45.000000000 +0200
@@ -35,11 +35,11 @@
 
 public:
     FakeBackend();
-    void setupAction(const QString &) Q_DECL_OVERRIDE;
-    Action::AuthStatus authorizeAction(const QString &) Q_DECL_OVERRIDE;
-    Action::AuthStatus actionStatus(const QString &) Q_DECL_OVERRIDE;
-    QByteArray callerID() const Q_DECL_OVERRIDE;
-    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
Q_DECL_OVERRIDE;
+    void setupAction(const QString &) override;
+    Action::AuthStatus authorizeAction(const QString &) override;
+    Action::AuthStatus actionStatus(const QString &) override;
+    QByteArray callerID() const override;
+    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
override;
 };
 
 } // namespace Auth
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kauth-5.46.0/src/backends/fakehelper/FakeHelperProxy.h 
new/kauth-5.47.0/src/backends/fakehelper/FakeHelperProxy.h
--- old/kauth-5.46.0/src/backends/fakehelper/FakeHelperProxy.h  2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/fakehelper/FakeHelperProxy.h  2018-06-02 
19:47:45.000000000 +0200
@@ -34,14 +34,14 @@
     FakeHelperProxy();
     virtual ~FakeHelperProxy();
 
-    void sendProgressStep(const QVariantMap &step) Q_DECL_OVERRIDE;
-    void sendProgressStep(int step) Q_DECL_OVERRIDE;
-    void sendDebugMessage(int level, const char *msg) Q_DECL_OVERRIDE;
-    bool hasToStopAction() Q_DECL_OVERRIDE;
-    void setHelperResponder(QObject *o) Q_DECL_OVERRIDE;
-    bool initHelper(const QString &name) Q_DECL_OVERRIDE;
-    void stopAction(const QString &action, const QString &helperID) 
Q_DECL_OVERRIDE;
-    void executeAction(const QString &action, const QString &helperID, const 
QVariantMap &arguments, int timeout = -1) Q_DECL_OVERRIDE;
+    void sendProgressStep(const QVariantMap &step) override;
+    void sendProgressStep(int step) override;
+    void sendDebugMessage(int level, const char *msg) override;
+    bool hasToStopAction() override;
+    void setHelperResponder(QObject *o) override;
+    bool initHelper(const QString &name) override;
+    void stopAction(const QString &action, const QString &helperID) override;
+    void executeAction(const QString &action, const QString &helperID, const 
QVariantMap &arguments, int timeout = -1) override;
 };
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kauth-5.46.0/src/backends/policykit/PolicyKitBackend.h 
new/kauth-5.47.0/src/backends/policykit/PolicyKitBackend.h
--- old/kauth-5.46.0/src/backends/policykit/PolicyKitBackend.h  2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/policykit/PolicyKitBackend.h  2018-06-02 
19:47:45.000000000 +0200
@@ -40,7 +40,7 @@
     virtual Action::AuthStatus authorizeAction(const QString &);
     virtual Action::AuthStatus actionStatus(const QString &);
     virtual QByteArray callerID() const;
-    ExtraCallerIDVerificationMethod extraCallerIDVerificationMethod() const 
Q_DECL_OVERRIDE;
+    ExtraCallerIDVerificationMethod extraCallerIDVerificationMethod() const 
override;
     virtual bool isCallerAuthorized(const QString &action, QByteArray 
callerID);
 
 private Q_SLOTS:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kauth-5.46.0/src/backends/polkit-1/Polkit1Backend.cpp 
new/kauth-5.47.0/src/backends/polkit-1/Polkit1Backend.cpp
--- old/kauth-5.46.0/src/backends/polkit-1/Polkit1Backend.cpp   2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/polkit-1/Polkit1Backend.cpp   2018-06-02 
19:47:45.000000000 +0200
@@ -94,7 +94,7 @@
     // Are we running our KDE auth agent?
     if 
(QDBusConnection::sessionBus().interface()->isServiceRegistered(QLatin1String("org.kde.polkit-kde-authentication-agent-1")))
 {
         // Check if we actually are entitled to use GUI capabilities
-        if (qApp == 0 || !qobject_cast<QApplication *>(qApp)) {
+        if (qApp == nullptr || !qobject_cast<QApplication *>(qApp)) {
             qCDebug(KAUTH) << "Not streaming parent as we are on a TTY 
application";
         }
 
@@ -196,8 +196,6 @@
     default:
         return false;
     }
-
-    return false;
 }
 
 void Polkit1Backend::checkForResultChanged()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/src/backends/polkit-1/Polkit1Backend.h 
new/kauth-5.47.0/src/backends/polkit-1/Polkit1Backend.h
--- old/kauth-5.46.0/src/backends/polkit-1/Polkit1Backend.h     2018-05-05 
14:55:43.000000000 +0200
+++ new/kauth-5.47.0/src/backends/polkit-1/Polkit1Backend.h     2018-06-02 
19:47:45.000000000 +0200
@@ -44,14 +44,14 @@
 public:
     Polkit1Backend();
     virtual ~Polkit1Backend();
-    void setupAction(const QString &) Q_DECL_OVERRIDE;
-    void preAuthAction(const QString &action, QWidget *parent) Q_DECL_OVERRIDE;
-    Action::AuthStatus authorizeAction(const QString &) Q_DECL_OVERRIDE;
-    Action::AuthStatus actionStatus(const QString &) Q_DECL_OVERRIDE;
-    QByteArray callerID() const Q_DECL_OVERRIDE;
-    ExtraCallerIDVerificationMethod extraCallerIDVerificationMethod() const 
Q_DECL_OVERRIDE;
-    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
Q_DECL_OVERRIDE;
-    bool actionExists(const QString &action) Q_DECL_OVERRIDE;
+    void setupAction(const QString &) override;
+    void preAuthAction(const QString &action, QWidget *parent) override;
+    Action::AuthStatus authorizeAction(const QString &) override;
+    Action::AuthStatus actionStatus(const QString &) override;
+    QByteArray callerID() const override;
+    ExtraCallerIDVerificationMethod extraCallerIDVerificationMethod() const 
override;
+    bool isCallerAuthorized(const QString &action, QByteArray callerID) 
override;
+    bool actionExists(const QString &action) override;
 
 private Q_SLOTS:
     void checkForResultChanged();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-5.46.0/src/kauthexecutejob.h 
new/kauth-5.47.0/src/kauthexecutejob.h
--- old/kauth-5.46.0/src/kauthexecutejob.h      2018-05-05 14:55:43.000000000 
+0200
+++ new/kauth-5.47.0/src/kauthexecutejob.h      2018-06-02 19:47:45.000000000 
+0200
@@ -74,7 +74,7 @@
      * @see newData
      * @see statusChanged
      */
-    void start() Q_DECL_OVERRIDE;
+    void start() override;
 
     /**
      * @returns the action associated with this job


Reply via email to