Hello community, here is the log from the commit of package kauth for openSUSE:Factory checked in at 2015-03-16 09:33:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kauth (Old) and /work/SRC/openSUSE:Factory/.kauth.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kauth" Changes: -------- --- /work/SRC/openSUSE:Factory/kauth/kauth.changes 2015-02-16 17:30:07.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2015-03-16 09:34:00.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Mar 7 16:58:55 UTC 2015 - [email protected] + +- Update to 5.8.0 + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.8.0.php + +------------------------------------------------------------------- Old: ---- kauth-5.7.0.tar.xz New: ---- kauth-5.8.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kauth.spec ++++++ --- /var/tmp/diff_new_pack.7VafOj/_old 2015-03-16 09:34:01.000000000 +0100 +++ /var/tmp/diff_new_pack.7VafOj/_new 2015-03-16 09:34:01.000000000 +0100 @@ -17,13 +17,13 @@ %define lname libKF5Auth5 -%define _tar_path 5.7 +%define _tar_path 5.8 Name: kauth Version: %{_tar_path}.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 1.7.0 +BuildRequires: extra-cmake-modules >= 1.8.0 BuildRequires: fdupes BuildRequires: kcoreaddons-devel >= %{kf5_version} BuildRequires: kf5-filesystem ++++++ kauth-5.7.0.tar.xz -> kauth-5.8.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/CMakeLists.txt new/kauth-5.8.0/CMakeLists.txt --- old/kauth-5.7.0/CMakeLists.txt 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/CMakeLists.txt 2015-03-07 15:37:37.000000000 +0100 @@ -2,7 +2,7 @@ project(KAuth) -find_package(ECM 1.7.0 REQUIRED NO_MODULE) +find_package(ECM 1.8.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) set(REQUIRED_QT_VERSION 5.2.0) @@ -20,8 +20,8 @@ include(ECMPoQmTools) -set(KF5_VERSION "5.7.0") # handled by release scripts -set(KF5_DEP_VERSION "5.7.0") # handled by release scripts +set(KF5_VERSION "5.8.0") # handled by release scripts +set(KF5_DEP_VERSION "5.8.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KAUTH VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h" @@ -44,10 +44,12 @@ include(ECMPackageConfigHelpers) -ecm_configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5AuthConfig.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/KF5AuthConfig.cmake" - INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} - ) +ecm_configure_package_config_file( + "${CMAKE_CURRENT_SOURCE_DIR}/KF5AuthConfig.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/KF5AuthConfig.cmake" + PATH_VARS KDE_INSTALL_DATADIR_KF5 + INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} +) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/KF5AuthConfig.cmake" "${CMAKE_CURRENT_BINARY_DIR}/KF5AuthConfigVersion.cmake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/KF5AuthConfig.cmake.in new/kauth-5.8.0/KF5AuthConfig.cmake.in --- old/kauth-5.7.0/KF5AuthConfig.cmake.in 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/KF5AuthConfig.cmake.in 2015-03-07 15:37:37.000000000 +0100 @@ -1,6 +1,6 @@ @PACKAGE_INIT@ -set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") +set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_INSTALL_DATADIR_KF5@/kauth/") set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/autotests/TestBackend.h new/kauth-5.8.0/autotests/TestBackend.h --- old/kauth-5.7.0/autotests/TestBackend.h 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/autotests/TestBackend.h 2015-03-07 15:37:37.000000000 +0100 @@ -35,12 +35,12 @@ public: TestBackend(); - virtual void setupAction(const QString &); - virtual Action::AuthStatus authorizeAction(const QString &); - virtual Action::AuthStatus actionStatus(const QString &); - virtual QByteArray callerID() const; - virtual bool isCallerAuthorized(const QString &action, QByteArray callerID); - virtual bool actionExists(const QString &action); + 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; public Q_SLOTS: void setNewCapabilities(KAuth::AuthBackend::Capabilities capabilities); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/po/bs/kauth5_qt.po new/kauth-5.8.0/po/bs/kauth5_qt.po --- old/kauth-5.7.0/po/bs/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/po/bs/kauth5_qt.po 2015-03-07 15:37:37.000000000 +0100 @@ -1,59 +1,32 @@ -# translation of kdelibs4.po to bosanski -# Marko Rosic <[email protected]>, 2003. -# Toplica Tanaskovic <[email protected]>, 2003, 2004, 2005. -# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010. -# Dalibor Djuric <[email protected]>, 2009, 2010. -# Dalibor Djuric <[email protected]>, 2010. -# KDE 4 <[email protected]>, 2011. -# Bosnian translation of kdelibs4 -# Initially converted from translation of kdelibs4.po by -# Samir Ribić <[email protected]> msgid "" msgstr "" -"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: 2013-12-21 17:26+0000\n" -"Last-Translator: Ademovic Saudin <[email protected]>\n" -"Language-Team: bosanski <[email protected]>\n" -"Language: bosnian\n" +"Project-Id-Version: kde5\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2015-02-24 20:18+0100\n" +"Last-Translator: Samir Ribić <[email protected]>\n" +"Language-Team: Bosnian\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Qt-Contexts: true\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Launchpad (build 16872)\n" -"X-Launchpad-Export-Date: 2013-12-22 05:52+0000\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" -"X-Environment: kde\n" -"X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 -#, fuzzy -#| msgid "DBus Backend error: connection to helper failed. %1" msgctxt "KAuth::DBusHelperProxy|" msgid "DBus Backend error: connection to helper failed. " -msgstr "Greška D‑Bus pozadine: propala veza sa pomoćnikom. %1" +msgstr "Greška D‑Bus pozadine: propala veza sa pomoćnikom." #: backends/dbus/DBusHelperProxy.cpp:98 -#, fuzzy -#| msgid "" -#| "DBus Backend error: could not contact the helper. Connection error: %1. " -#| "Message error: %2" msgctxt "KAuth::DBusHelperProxy|" msgid "DBus Backend error: could not contact the helper. Connection error: " msgstr "" -"Greška D‑Bus pozadine: pomoćnik ne može da se kontaktira. Greška " -"povezivanja: %1. Greška poruke: %2" #: backends/dbus/DBusHelperProxy.cpp:99 -#, fuzzy -#| msgctxt "1: the i18n'ed system error code, from errno" -#| msgid "system error: %1" msgctxt "KAuth::DBusHelperProxy|" msgid ". Message error: " -msgstr "sistemska greška: %1" +msgstr "Poruka o grešci :" #: kauthexecutejob.cpp:88 msgctxt "KAuth::ExecuteJob|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/po/fr/kauth5_qt.po new/kauth-5.8.0/po/fr/kauth5_qt.po --- old/kauth-5.7.0/po/fr/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/po/fr/kauth5_qt.po 2015-03-07 15:37:37.000000000 +0100 @@ -24,10 +24,10 @@ "PO-Revision-Date: 2014-05-21 16:00+0200\n" "Last-Translator: Sebastien Renard <[email protected]>\n" "Language-Team: French <[email protected]>\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.5\n" "X-Environment: kde\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/src/backends/dbus/DBusHelperProxy.h new/kauth-5.8.0/src/backends/dbus/DBusHelperProxy.h --- old/kauth-5.7.0/src/backends/dbus/DBusHelperProxy.h 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/src/backends/dbus/DBusHelperProxy.h 2015-03-07 15:37:37.000000000 +0100 @@ -58,16 +58,16 @@ virtual ~DBusHelperProxy(); virtual void executeAction(const QString &action, const QString &helperID, - const QVariantMap &arguments); - virtual Action::AuthStatus authorizeAction(const QString &action, const QString &helperID); - virtual void stopAction(const QString &action, const QString &helperID); + const QVariantMap &arguments) Q_DECL_OVERRIDE; + Action::AuthStatus authorizeAction(const QString &action, const QString &helperID) Q_DECL_OVERRIDE; + void stopAction(const QString &action, const QString &helperID) Q_DECL_OVERRIDE; - virtual bool initHelper(const QString &name); - virtual void setHelperResponder(QObject *o); - virtual bool hasToStopAction(); - virtual void sendDebugMessage(int level, const char *msg); - virtual void sendProgressStep(int step); - virtual void sendProgressStep(const QVariantMap &data); + 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; public Q_SLOTS: void stopAction(const QString &action); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/src/backends/fake/FakeBackend.h new/kauth-5.8.0/src/backends/fake/FakeBackend.h --- old/kauth-5.7.0/src/backends/fake/FakeBackend.h 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/src/backends/fake/FakeBackend.h 2015-03-07 15:37:37.000000000 +0100 @@ -35,11 +35,11 @@ public: FakeBackend(); - virtual void setupAction(const QString &); - virtual Action::AuthStatus authorizeAction(const QString &); - virtual Action::AuthStatus actionStatus(const QString &); - virtual QByteArray callerID() const; - virtual bool isCallerAuthorized(const QString &action, QByteArray callerID); + 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; }; } // namespace Auth diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/src/backends/fakehelper/FakeHelperProxy.h new/kauth-5.8.0/src/backends/fakehelper/FakeHelperProxy.h --- old/kauth-5.7.0/src/backends/fakehelper/FakeHelperProxy.h 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/src/backends/fakehelper/FakeHelperProxy.h 2015-03-07 15:37:37.000000000 +0100 @@ -34,15 +34,15 @@ FakeHelperProxy(); virtual ~FakeHelperProxy(); - virtual void sendProgressStep(const QVariantMap &step); - virtual void sendProgressStep(int step); - virtual void sendDebugMessage(int level, const char *msg); - virtual bool hasToStopAction(); - virtual void setHelperResponder(QObject *o); - virtual bool initHelper(const QString &name); - virtual void stopAction(const QString &action, const QString &helperID); - virtual void executeAction(const QString &action, const QString &helperID, const QVariantMap &arguments); - virtual Action::AuthStatus authorizeAction(const QString &action, const QString &helperID); + 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) Q_DECL_OVERRIDE; + Action::AuthStatus authorizeAction(const QString &action, const QString &helperID) Q_DECL_OVERRIDE; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.7.0/src/kauthexecutejob.h new/kauth-5.8.0/src/kauthexecutejob.h --- old/kauth-5.7.0/src/kauthexecutejob.h 2015-02-08 16:11:40.000000000 +0100 +++ new/kauth-5.8.0/src/kauthexecutejob.h 2015-03-07 15:37:37.000000000 +0100 @@ -53,7 +53,7 @@ /// Virtual destructor virtual ~ExecuteJob(); - void start(); + void start() Q_DECL_OVERRIDE; /// Returns the action associated with this job Action action() const; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
