Hello community,

here is the log from the commit of package signon-kwallet-extension for 
openSUSE:Factory checked in at 2018-08-24 17:05:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/signon-kwallet-extension (Old)
 and      /work/SRC/openSUSE:Factory/.signon-kwallet-extension.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "signon-kwallet-extension"

Fri Aug 24 17:05:59 2018 rev:39 rq:630174 version:18.08.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/signon-kwallet-extension/signon-kwallet-extension.changes
        2018-07-19 22:57:11.193547118 +0200
+++ 
/work/SRC/openSUSE:Factory/.signon-kwallet-extension.new/signon-kwallet-extension.changes
   2018-08-24 17:06:02.346209227 +0200
@@ -1,0 +2,26 @@
+Thu Aug 16 22:08:27 UTC 2018 - christo...@krop.fr
+
+- Update to 18.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.0.php
+- Changes since 18.07.80:
+  * None
+
+-------------------------------------------------------------------
+Thu Jul 26 13:01:07 UTC 2018 - lbeltr...@kde.org
+
+- Update to 18.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.07.80.php
+- Changes since 18.04.3:
+  * Remove unneeded cmake condition left from porting
+  * Remove unneeded cmake macro include
+  * Use override
+  * Use nullptr
+  * Bump min versions to cmake 3.0, qt 5.6, kf 5.18
+  * Remove module prefixes from includes
+  * Remove unneeded moc includes
+
+-------------------------------------------------------------------

Old:
----
  signon-kwallet-extension-18.04.3.tar.xz

New:
----
  signon-kwallet-extension-18.08.0.tar.xz

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

Other differences:
------------------
++++++ signon-kwallet-extension.spec ++++++
--- /var/tmp/diff_new_pack.VK3D1K/_old  2018-08-24 17:06:02.762209721 +0200
+++ /var/tmp/diff_new_pack.VK3D1K/_new  2018-08-24 17:06:02.766209726 +0200
@@ -17,11 +17,11 @@
 
 
 Name:           signon-kwallet-extension
-Version:        18.04.3
+Version:        18.08.0
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
+%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Summary:        KWallet integration for signon framework
 License:        GPL-2.0-or-later
 Group:          System/GUI/KDE

++++++ signon-kwallet-extension-18.04.3.tar.xz -> 
signon-kwallet-extension-18.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/signon-kwallet-extension-18.04.3/CMakeLists.txt 
new/signon-kwallet-extension-18.08.0/CMakeLists.txt
--- old/signon-kwallet-extension-18.04.3/CMakeLists.txt 2018-07-07 
11:30:56.000000000 +0200
+++ new/signon-kwallet-extension-18.08.0/CMakeLists.txt 2018-08-06 
22:47:44.000000000 +0200
@@ -1,31 +1,28 @@
+cmake_minimum_required(VERSION 3.0)
+
 project(kwalletsignon5)
 
 set(KDE_APPLICATIONS_VERSION_MAJOR "18")
-set(KDE_APPLICATIONS_VERSION_MINOR "04")
-set(KDE_APPLICATIONS_VERSION_MICRO "3")
+set(KDE_APPLICATIONS_VERSION_MINOR "08")
+set(KDE_APPLICATIONS_VERSION_MICRO "0")
 set(kwalletsignon_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
-cmake_minimum_required(VERSION 2.8.12)
-
-find_package(ECM 1.0.0 REQUIRED NO_MODULE)
+find_package(ECM 5.18.0 REQUIRED NO_MODULE)
 
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 
-find_package(Qt5 5.2.0 CONFIG REQUIRED Core)
+find_package(Qt5 5.6.0 CONFIG REQUIRED Core)
 
 include(KDEInstallDirs)
 include(KDECMakeSettings)
 include(FeatureSummary)
-include(ECMInstallIcons)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 
-find_package(KF5 5.0 REQUIRED Wallet)
+find_package(KF5 5.18.0 REQUIRED Wallet)
 
 find_package(SignOnExtension REQUIRED)
 
 add_subdirectory(src)
 # add_subdirectory(tests)
 
-if("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
-  feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
-endif()
+feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/signon-kwallet-extension-18.04.3/src/keyringplugin.cpp 
new/signon-kwallet-extension-18.08.0/src/keyringplugin.cpp
--- old/signon-kwallet-extension-18.04.3/src/keyringplugin.cpp  2018-07-07 
11:30:56.000000000 +0200
+++ new/signon-kwallet-extension-18.08.0/src/keyringplugin.cpp  2018-08-06 
22:47:44.000000000 +0200
@@ -25,5 +25,3 @@
 {
     return new SecretsStorage();
 }
-
-#include "keyringplugin.moc"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/signon-kwallet-extension-18.04.3/src/keyringplugin.h 
new/signon-kwallet-extension-18.08.0/src/keyringplugin.h
--- old/signon-kwallet-extension-18.04.3/src/keyringplugin.h    2018-07-07 
11:30:56.000000000 +0200
+++ new/signon-kwallet-extension-18.08.0/src/keyringplugin.h    2018-08-06 
22:47:44.000000000 +0200
@@ -19,7 +19,7 @@
 #ifndef KEYRING_PLUGIN_H
 #define KEYRING_PLUGIN_H
 
-#include <QtCore/QObject>
+#include <QObject>
 #include <SignOn/ExtensionInterface>
 
 class KeyringPlugin: public QObject, public SignOn::ExtensionInterface3
@@ -29,12 +29,12 @@
     Q_PLUGIN_METADATA(IID "com.nokia.SingleSignOn.ExtensionInterface/3.0")
 
     public:
-        KeyringPlugin(QObject *parent = 0) : QObject(parent)
+        KeyringPlugin(QObject *parent = nullptr) : QObject(parent)
         {
             setObjectName(QStringLiteral("kwallet-keyring"));
         }
 
-    SignOn::AbstractSecretsStorage *secretsStorage(QObject *parent = 0) const 
Q_DECL_OVERRIDE;
+    SignOn::AbstractSecretsStorage *secretsStorage(QObject *parent = nullptr) 
const override;
 };
 
 #endif // KEYRING_PLUGIN_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/signon-kwallet-extension-18.04.3/src/secretsstorage.cpp 
new/signon-kwallet-extension-18.08.0/src/secretsstorage.cpp
--- old/signon-kwallet-extension-18.04.3/src/secretsstorage.cpp 2018-07-07 
11:30:56.000000000 +0200
+++ new/signon-kwallet-extension-18.08.0/src/secretsstorage.cpp 2018-08-06 
22:47:44.000000000 +0200
@@ -19,11 +19,11 @@
 #include "secretsstorage.h"
 
 #include <QDataStream>
-#include <QtCore/QDebug>
+#include <QDebug>
 
 #include <SignOn/AbstractSecretsStorage>
 
-#include <KWallet/KWallet>
+#include <KWallet>
 
 using namespace SignOn;
 using namespace KWallet;
@@ -31,7 +31,7 @@
 SecretsStorage::SecretsStorage(QObject *parent)
  : AbstractSecretsStorage(parent)
  , m_keyringName()
- , m_wallet(0)
+ , m_wallet(nullptr)
 {
 }
 
@@ -165,5 +165,3 @@
 
     return m_wallet->removeEntry(sId) == 0;
 }
-
-#include "secretsstorage.moc"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/signon-kwallet-extension-18.04.3/src/secretsstorage.h 
new/signon-kwallet-extension-18.08.0/src/secretsstorage.h
--- old/signon-kwallet-extension-18.04.3/src/secretsstorage.h   2018-07-07 
11:30:56.000000000 +0200
+++ new/signon-kwallet-extension-18.08.0/src/secretsstorage.h   2018-08-06 
22:47:44.000000000 +0200
@@ -32,20 +32,20 @@
     Q_OBJECT
 
 public:
-    SecretsStorage(QObject *parent = 0);
-    ~SecretsStorage();
+    SecretsStorage(QObject *parent = nullptr);
+    ~SecretsStorage() override;
 
-    bool initialize(const QVariantMap& configuration) Q_DECL_OVERRIDE;
-    bool close() Q_DECL_OVERRIDE;
-    bool clear() Q_DECL_OVERRIDE;
-
-    bool updateCredentials(const quint32 id, const QString& username, const 
QString& password) Q_DECL_OVERRIDE;
-    bool removeCredentials(const quint32 id) Q_DECL_OVERRIDE;
-    bool loadCredentials(const quint32 id, QString& username, QString& 
password) Q_DECL_OVERRIDE;
-
-    QVariantMap loadData(quint32 id, quint32 method) Q_DECL_OVERRIDE;
-    bool storeData(quint32 id, quint32 method, const QVariantMap& data) 
Q_DECL_OVERRIDE;
-    bool removeData(quint32 id, quint32 method) Q_DECL_OVERRIDE;
+    bool initialize(const QVariantMap& configuration) override;
+    bool close() override;
+    bool clear() override;
+
+    bool updateCredentials(const quint32 id, const QString& username, const 
QString& password) override;
+    bool removeCredentials(const quint32 id) override;
+    bool loadCredentials(const quint32 id, QString& username, QString& 
password) override;
+
+    QVariantMap loadData(quint32 id, quint32 method) override;
+    bool storeData(quint32 id, quint32 method, const QVariantMap& data) 
override;
+    bool removeData(quint32 id, quint32 method) override;
 
 
     QByteArray m_keyringName;


Reply via email to