Hello community, here is the log from the commit of package kauth for openSUSE:Factory checked in at 2020-10-12 13:53:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kauth (Old) and /work/SRC/openSUSE:Factory/.kauth.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kauth" Mon Oct 12 13:53:30 2020 rev:88 rq:840796 version:5.75.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kauth/kauth.changes 2020-09-18 14:38:04.339824125 +0200 +++ /work/SRC/openSUSE:Factory/.kauth.new.3486/kauth.changes 2020-10-12 13:55:13.666114302 +0200 @@ -1,0 +2,12 @@ +Mon Oct 5 08:32:54 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 5.75.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.75.0 +- Changes since 5.74.0: + * use new install var (kde#415938) + * Fix kauth test failure on windows. + * Mark David Edmundson as maintainer for KAuth. + +------------------------------------------------------------------- Old: ---- kauth-5.74.0.tar.xz kauth-5.74.0.tar.xz.sig New: ---- kauth-5.75.0.tar.xz kauth-5.75.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kauth.spec ++++++ --- /var/tmp/diff_new_pack.KyQCsY/_old 2020-10-12 13:55:14.270114547 +0200 +++ /var/tmp/diff_new_pack.KyQCsY/_new 2020-10-12 13:55:14.270114547 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Auth5 -%define _tar_path 5.74 +%define _tar_path 5.75 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kauth -Version: 5.74.0 +Version: 5.75.0 Release: 0 Summary: Framework which lets applications perform actions as a privileged user License: LGPL-2.1-or-later ++++++ kauth-5.74.0.tar.xz -> kauth-5.75.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/CMakeLists.txt new/kauth-5.75.0/CMakeLists.txt --- old/kauth-5.74.0/CMakeLists.txt 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/CMakeLists.txt 2020-10-04 20:38:16.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.74.0") # handled by release scripts -set(KF5_DEP_VERSION "5.74.0") # handled by release scripts +set(KF5_VERSION "5.75.0") # handled by release scripts +set(KF5_DEP_VERSION "5.75.0") # handled by release scripts project(KAuth VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.74.0 NO_MODULE) +find_package(ECM 5.75.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-5.74.0/autotests/CMakeLists.txt new/kauth-5.75.0/autotests/CMakeLists.txt --- old/kauth-5.74.0/autotests/CMakeLists.txt 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/autotests/CMakeLists.txt 2020-10-04 20:38:16.000000000 +0200 @@ -78,9 +78,11 @@ ) ########### test kauth-policy-gen ############### -add_test(NAME KAuthPolicyGenTest - COMMAND kauth-policy-gen ${CMAKE_SOURCE_DIR}/autotests/foo_actions.actions - ${CMAKE_BINARY_DIR}/generated-foo.policy) -add_test(KAuthPolicyGenTestCompare ${CMAKE_COMMAND} -E compare_files - ${CMAKE_BINARY_DIR}/generated-foo.policy ${CMAKE_SOURCE_DIR}/autotests/foo.policy) +if(NOT "${KAUTH_BACKEND_NAME}" STREQUAL "FAKE") + add_test(NAME KAuthPolicyGenTest + COMMAND kauth-policy-gen ${CMAKE_SOURCE_DIR}/autotests/foo_actions.actions + ${CMAKE_BINARY_DIR}/generated-foo.policy) + add_test(KAuthPolicyGenTestCompare ${CMAKE_COMMAND} -E compare_files + ${CMAKE_BINARY_DIR}/generated-foo.policy ${CMAKE_SOURCE_DIR}/autotests/foo.policy) +endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/cmake/KF5AuthMacros.cmake new/kauth-5.75.0/cmake/KF5AuthMacros.cmake --- old/kauth-5.74.0/cmake/KF5AuthMacros.cmake 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/cmake/KF5AuthMacros.cmake 2020-10-04 20:38:16.000000000 +0200 @@ -19,7 +19,7 @@ configure_file(${KAUTH_STUB_FILES_DIR}/dbus_service.stub ${CMAKE_CURRENT_BINARY_DIR}/${HELPER_ID}.service) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${HELPER_ID}.service - DESTINATION ${DBUS_SYSTEM_SERVICES_INSTALL_DIR}) + DESTINATION ${KDE_INSTALL_DBUSSYSTEMSERVICEDIR}) endif() endfunction() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/metainfo.yaml new/kauth-5.75.0/metainfo.yaml --- old/kauth-5.74.0/metainfo.yaml 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/metainfo.yaml 2020-10-04 20:38:16.000000000 +0200 @@ -1,4 +1,4 @@ -maintainer: +maintainer: davidedmundson description: Abstraction to system policy and authentication features tier: 2 type: integration diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/po/ca/kauth5_qt.po new/kauth-5.75.0/po/ca/kauth5_qt.po --- old/kauth-5.74.0/po/ca/kauth5_qt.po 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/po/ca/kauth5_qt.po 2020-10-04 20:38:16.000000000 +0200 @@ -11,7 +11,7 @@ # Orestes Mas <[email protected]>, 2010. msgid "" msgstr "" -"Project-Id-Version: kauth5_qt\n" +"Project-Id-Version: kauth\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" "PO-Revision-Date: 2020-01-06 16:49+0100\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/po/ca@valencia/kauth5_qt.po new/kauth-5.75.0/po/ca@valencia/kauth5_qt.po --- old/kauth-5.74.0/po/ca@valencia/kauth5_qt.po 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/po/ca@valencia/kauth5_qt.po 2020-10-04 20:38:16.000000000 +0200 @@ -12,7 +12,7 @@ # Empar <[email protected]>, 2019. msgid "" msgstr "" -"Project-Id-Version: kauth5_qt\n" +"Project-Id-Version: kauth\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" "PO-Revision-Date: 2019-06-17 11:45+0200\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/po/ro/kauth5_qt.po new/kauth-5.75.0/po/ro/kauth5_qt.po --- old/kauth-5.74.0/po/ro/kauth5_qt.po 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/po/ro/kauth5_qt.po 2020-10-04 20:38:16.000000000 +0200 @@ -1,54 +1,50 @@ # Traducerea kdelibs4.po în Română # Laurenţiu Buzdugan <[email protected]>, 2008, 2009. -# Sergiu Bivol <[email protected]>, 2008, 2009, 2010. -# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2014. +# Sergiu Bivol <[email protected]>, 2008, 2009, 2010. +# Sergiu Bivol <[email protected]>, 2010, 2012, 2013, 2014, 2020. # Cristian Oneț <[email protected]>, 2010, 2011, 2012, 2013. 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: 2014-08-16 14:37+0300\n" -"Last-Translator: Sergiu Bivol <[email protected]>\n" -"Language-Team: Romanian <[email protected]>\n" +"PO-Revision-Date: 2020-09-13 13:06+0100\n" +"Last-Translator: Sergiu Bivol <[email protected]>\n" +"Language-Team: Romanian\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" +"X-Generator: Lokalize 19.12.3\n" "X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:71 -#, fuzzy, qt-format -#| msgctxt "KAuth::DBusHelperProxy|" -#| msgid "DBus Backend error: connection to helper failed. " +#, qt-format msgctxt "KAuth::DBusHelperProxy|" msgid "DBus Backend error: service start %1 failed: %2" -msgstr "Eroare de platformă DBus: conexiunea la ajutător a eșuat. " +msgstr "Eroare de platformă DBus: pornirea serviciului %1 a eșuat: %2" #: backends/dbus/DBusHelperProxy.cpp:81 -#, fuzzy, qt-format -#| msgctxt "KAuth::DBusHelperProxy|" -#| msgid "DBus Backend error: connection to helper failed. " +#, qt-format msgctxt "KAuth::DBusHelperProxy|" msgid "" "DBus Backend error: connection to helper failed. %1\n" "(application: %2 helper: %3)" -msgstr "Eroare de platformă DBus: conexiunea la ajutător a eșuat. " +msgstr "" +"Eroare de platformă DBus: conexiunea la ajutător a eșuat. %1\n" +"(aplicație: %2 ajutător: %3)" #: backends/dbus/DBusHelperProxy.cpp:118 -#, fuzzy, qt-format -#| msgctxt "KAuth::DBusHelperProxy|" -#| msgid "DBus Backend error: could not contact the helper. Connection error: " +#, qt-format msgctxt "KAuth::DBusHelperProxy|" msgid "" "DBus Backend error: could not contact the helper. Connection error: %1. " "Message error: %2" msgstr "" -"Eroare de platformă DBus: nu am putut contacta ajutătorul. Eroare de " -"conexiune: " +"Eroare de platformă DBus: nu s-a putut contacta ajutătorul. Eroare de " +"conexiune: %1. Mesaj de eroare: %2" #: kauthexecutejob.cpp:75 msgctxt "KAuth::ExecuteJob|" @@ -56,16 +52,14 @@ msgstr "S-a încercat pornirea unei acțiuni nevalide" #: kauthexecutejob.cpp:89 -#, fuzzy -#| msgid "Unknown encryption scheme." msgctxt "KAuth::ExecuteJob|" msgid "Unknown execution mode chosen" -msgstr "Schemă de criptare necunoscută." +msgstr "Regimul de execuție ales e necunoscut" #: kauthexecutejob.cpp:134 msgctxt "KAuth::ExecuteJob|" msgid "Unknown status for the authentication procedure" -msgstr "" +msgstr "Stare necunoscută pentru procedura de autentificare" #: kauthexecutejob.cpp:146 msgctxt "KAuth::ExecuteJob|" @@ -73,8 +67,10 @@ "The current backend only allows helper authorization, but this action does " "not have a helper." msgstr "" +"Platforma actuală permite doar autentificarea cu ajutător, dar această " +"acțiune nu are un ajutător." #: kauthexecutejob.cpp:154 kauthexecutejob.cpp:178 msgctxt "KAuth::ExecuteJob|" msgid "The backend does not specify how to authorize" -msgstr "" +msgstr "Platforma nu specifică metoda de autorizare" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.74.0/po/zh_CN/kauth5_qt.po new/kauth-5.75.0/po/zh_CN/kauth5_qt.po --- old/kauth-5.74.0/po/zh_CN/kauth5_qt.po 2020-09-06 12:15:02.000000000 +0200 +++ new/kauth-5.75.0/po/zh_CN/kauth5_qt.po 2020-10-04 20:38:16.000000000 +0200 @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2020-09-05 05:17\n" +"PO-Revision-Date: 2020-09-23 12:18\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n"
