Hello community, here is the log from the commit of package kauth for openSUSE:Factory checked in at 2015-09-02 07:43:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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-07-14 17:21:50.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2015-09-02 07:43:47.000000000 +0200 @@ -1,0 +2,11 @@ +Tue Aug 4 19:20:13 UTC 2015 - [email protected] + +- Update to 5.13.0 + * The Qt version requirement has been bumped from 5.2 to 5.3 + * Debug output has been ported to categorized output, for less + noise by default + * Docbook documentation has been reviewed and updated + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.13.0.php + +------------------------------------------------------------------- Old: ---- kauth-5.12.0.tar.xz New: ---- kauth-5.13.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kauth.spec ++++++ --- /var/tmp/diff_new_pack.JCrm9M/_old 2015-09-02 07:43:48.000000000 +0200 +++ /var/tmp/diff_new_pack.JCrm9M/_new 2015-09-02 07:43:48.000000000 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define lname libKF5Auth5 -%define _tar_path 5.12 +%define _tar_path 5.13 Name: kauth -Version: 5.12.0 +Version: 5.13.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 @@ -30,10 +30,10 @@ BuildRequires: kf5-filesystem BuildRequires: libpolkit-qt5-1-devel %if %{with lang} -BuildRequires: libqt5-linguist-devel >= 5.2.0 +BuildRequires: cmake(Qt5LinguistTools) >= 5.3.0 %endif -BuildRequires: pkgconfig(Qt5DBus) >= 5.2.0 -BuildRequires: pkgconfig(Qt5Widgets) >= 5.2.0 +BuildRequires: cmake(Qt5DBus) >= 5.3.0 +BuildRequires: cmake(Qt5Widgets) >= 5.3.0 Summary: Framework which lets applications perform actions as a privileged user License: LGPL-2.1+ Group: System/GUI/KDE ++++++ kauth-5.12.0.tar.xz -> kauth-5.13.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/CMakeLists.txt new/kauth-5.13.0/CMakeLists.txt --- old/kauth-5.12.0/CMakeLists.txt 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/CMakeLists.txt 2015-08-04 12:44:53.000000000 +0200 @@ -3,13 +3,13 @@ project(KAuth) include(FeatureSummary) -find_package(ECM 5.12.0 NO_MODULE) +find_package(ECM 5.13.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) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) -set(REQUIRED_QT_VERSION 5.2.0) +set(REQUIRED_QT_VERSION 5.3.0) find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus) include(KDEInstallDirs) include(KDEFrameworkCompilerSettings) @@ -24,8 +24,8 @@ include(ECMPoQmTools) -set(KF5_VERSION "5.12.0") # handled by release scripts -set(KF5_DEP_VERSION "5.12.0") # handled by release scripts +set(KF5_VERSION "5.13.0") # handled by release scripts +set(KF5_DEP_VERSION "5.13.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KAUTH VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h" @@ -71,8 +71,10 @@ install(EXPORT KF5AuthTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE KF5AuthTargets.cmake NAMESPACE KF5:: COMPONENT Devel) -install(EXPORT KF5AuthToolsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" - FILE KF5AuthToolsTargets.cmake NAMESPACE KF5:: COMPONENT Devel) +if(NOT "${KAUTH_BACKEND_NAME}" STREQUAL "FAKE") + install(EXPORT KF5AuthToolsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" + FILE KF5AuthToolsTargets.cmake NAMESPACE KF5:: COMPONENT Devel) +endif() install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/KF5AuthConfig.cmake.in new/kauth-5.13.0/KF5AuthConfig.cmake.in --- old/kauth-5.12.0/KF5AuthConfig.cmake.in 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/KF5AuthConfig.cmake.in 2015-08-04 12:44:53.000000000 +0200 @@ -13,9 +13,11 @@ include("${CMAKE_CURRENT_LIST_DIR}/KF5AuthTargets.cmake") include("${CMAKE_CURRENT_LIST_DIR}/KF5AuthMacros.cmake") -if(CMAKE_CROSSCOMPILING AND KF5_HOST_TOOLING) - find_file(KCONFIGCOMPILER_PATH KF5Auth/KF5AuthToolsTargets.cmake PATHS ${KF5_HOST_TOOLING} ${CMAKE_CURRENT_LIST_DIR} NO_DEFAULT_PATH) - include("${TARGETSFILE}") -else() - include("${CMAKE_CURRENT_LIST_DIR}/KF5AuthToolsTargets.cmake") +if(NOT "${KAUTH_BACKEND_NAME}" STREQUAL "FAKE") + if(CMAKE_CROSSCOMPILING AND KF5_HOST_TOOLING) + find_file(KCONFIGCOMPILER_PATH KF5Auth/KF5AuthToolsTargets.cmake PATHS ${KF5_HOST_TOOLING} ${CMAKE_CURRENT_LIST_DIR} NO_DEFAULT_PATH) + include("${TARGETSFILE}") + else() + include("${CMAKE_CURRENT_LIST_DIR}/KF5AuthToolsTargets.cmake") + endif() endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/cmake/KF5AuthMacros.cmake new/kauth-5.13.0/cmake/KF5AuthMacros.cmake --- old/kauth-5.12.0/cmake/KF5AuthMacros.cmake 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/cmake/KF5AuthMacros.cmake 2015-08-04 12:44:53.000000000 +0200 @@ -68,7 +68,7 @@ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMMENT "Generating ${HELPER_ID}.policy" DEPENDS KF5::kauth-policy-gen) - add_custom_target(${HELPER_ID}.policy ALL COMMENT "actions for ${HELPER_ID}" DEPENDS ${_output}) + add_custom_target(${HELPER_ID}.policy-customtarget ALL COMMENT "actions for ${HELPER_ID}" DEPENDS ${_output}) install(FILES ${_output} DESTINATION ${KAUTH_POLICY_FILES_INSTALL_DIR}) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/po/ast/kauth5_qt.po new/kauth-5.13.0/po/ast/kauth5_qt.po --- old/kauth-5.12.0/po/ast/kauth5_qt.po 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/po/ast/kauth5_qt.po 2015-08-04 12:44:53.000000000 +0200 @@ -7,9 +7,9 @@ "Project-Id-Version: kdelibs4-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" -"PO-Revision-Date: 2015-04-06 14:49+0100\n" +"PO-Revision-Date: 2015-07-11 16:26+0100\n" "Last-Translator: enolp <[email protected]>\n" -"Language-Team: Asturian <[email protected]>\n" +"Language-Team: Asturian <[email protected]>\n" "Language: ast_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,13 +30,11 @@ msgstr "" #: backends/dbus/DBusHelperProxy.cpp:99 -#, fuzzy msgctxt "KAuth::DBusHelperProxy|" msgid ". Message error: " msgstr ". Mensaxe de fallu: %1" #: kauthexecutejob.cpp:88 -#, fuzzy msgctxt "KAuth::ExecuteJob|" msgid "Tried to start an invalid action" msgstr "Intentóse aniciar una aición non válida" @@ -45,7 +43,7 @@ #, fuzzy msgctxt "KAuth::ExecuteJob|" msgid "Unknown execution mode chosen" -msgstr "Escoyíu mou d'execución desconocíu" +msgstr "Escoyóse mou d'execución desconocíu" #: kauthexecutejob.cpp:140 #, fuzzy diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/po/fr/kauth5_qt.po new/kauth-5.13.0/po/fr/kauth5_qt.po --- old/kauth-5.12.0/po/fr/kauth5_qt.po 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/po/fr/kauth5_qt.po 2015-08-04 12:44:53.000000000 +0200 @@ -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.12.0/src/CMakeLists.txt new/kauth-5.13.0/src/CMakeLists.txt --- old/kauth-5.12.0/src/CMakeLists.txt 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/src/CMakeLists.txt 2015-08-04 12:44:53.000000000 +0200 @@ -1,5 +1,5 @@ -find_package(Qt5 5.2.0 CONFIG REQUIRED Widgets DBus) +find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus) # This file handles all the logic for compiling KAuth's backends include(ConfigureChecks.cmake) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.12.0/src/kauthdebug.cpp new/kauth-5.13.0/src/kauthdebug.cpp --- old/kauth-5.12.0/src/kauthdebug.cpp 2015-07-05 10:52:35.000000000 +0200 +++ new/kauth-5.13.0/src/kauthdebug.cpp 2015-08-04 12:44:53.000000000 +0200 @@ -15,4 +15,9 @@ #include "kauthdebug.h" +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) +// logging category for this framework, default: log stuff >= warning +Q_LOGGING_CATEGORY(KAUTH, "kf5.kauth", QtWarningMsg) +#else Q_LOGGING_CATEGORY(KAUTH, "kf5.kauth") +#endif
