Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kconfig for openSUSE:Factory checked in at 2021-06-16 20:33:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kconfig (Old) and /work/SRC/openSUSE:Factory/.kconfig.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kconfig" Wed Jun 16 20:33:43 2021 rev:95 rq:899717 version:5.83.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kconfig/kconfig.changes 2021-05-10 15:36:50.434165488 +0200 +++ /work/SRC/openSUSE:Factory/.kconfig.new.32437/kconfig.changes 2021-06-16 20:35:09.663152958 +0200 @@ -1,0 +2,14 @@ +Sat Jun 5 11:58:35 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.83.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.83.0 +- Changes since 5.82.0: + * kconfig_add_kcfg_files: catch alias targets before failing internally + * fix deleted group is in listGroups + * Bump required CMake version to 3.16 + * Don't write position data for maximized windows + * Fix cmake warning + +------------------------------------------------------------------- Old: ---- kconfig-5.82.0.tar.xz kconfig-5.82.0.tar.xz.sig New: ---- kconfig-5.83.0.tar.xz kconfig-5.83.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kconfig.spec ++++++ --- /var/tmp/diff_new_pack.3Wqk0w/_old 2021-06-16 20:35:10.435154275 +0200 +++ /var/tmp/diff_new_pack.3Wqk0w/_new 2021-06-16 20:35:10.435154275 +0200 @@ -17,14 +17,14 @@ %define sonum 5 -%define _tar_path 5.82 +%define _tar_path 5.83 # 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: kconfig -Version: 5.82.0 +Version: 5.83.0 Release: 0 Summary: Advanced configuration system License: LGPL-2.1-or-later AND GPL-2.0-or-later ++++++ kconfig-5.82.0.tar.xz -> kconfig-5.83.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/.gitignore new/kconfig-5.83.0/.gitignore --- old/kconfig-5.82.0/.gitignore 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/.gitignore 2021-06-05 11:14:10.000000000 +0200 @@ -25,3 +25,4 @@ .clangd .idea /cmake-build* +.cache diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/CMakeLists.txt new/kconfig-5.83.0/CMakeLists.txt --- old/kconfig-5.82.0/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -1,10 +1,10 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.82.0") # handled by release scripts +set(KF_VERSION "5.83.0") # handled by release scripts project(KConfig VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.82.0 NO_MODULE) +find_package(ECM 5.83.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) @@ -51,7 +51,6 @@ PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5ConfigConfigVersion.cmake" SOVERSION 5) -add_definitions(-DQT_NO_FOREACH) add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/KF5ConfigMacros.cmake new/kconfig-5.83.0/KF5ConfigMacros.cmake --- old/kconfig-5.82.0/KF5ConfigMacros.cmake 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/KF5ConfigMacros.cmake 2021-06-05 11:14:10.000000000 +0200 @@ -4,6 +4,7 @@ # Use optional GENERATE_MOC to generate moc if you use signals in your kcfg files. # Use optional USE_RELATIVE_PATH to generate the classes in the build following the given # relative path to the file. +# <target> must not be an alias. # # SPDX-FileCopyrightText: 2006-2009 Alexander Neundorf <[email protected]> # SPDX-FileCopyrightText: 2006, 2007, Laurent Montel <[email protected]> @@ -17,6 +18,13 @@ set(options GENERATE_MOC USE_RELATIVE_PATH) cmake_parse_arguments(ARG "${options}" "" "" ${ARGN}) + if (TARGET ${_target_or_source_var}) + get_target_property(aliased_target ${_target_or_source_var} ALIASED_TARGET) + if(aliased_target) + message(FATAL_ERROR "Target argument passed to kconfig_add_kcfg_files must not be an alias: ${_target_or_source_var}") + endif() + endif() + set(sources) foreach (_current_FILE ${ARG_UNPARSED_ARGUMENTS}) get_filename_component(_tmp_FILE ${_current_FILE} ABSOLUTE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/autotests/CMakeLists.txt new/kconfig-5.83.0/autotests/CMakeLists.txt --- old/kconfig-5.82.0/autotests/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/autotests/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -14,35 +14,37 @@ endif() # compile KEntryMap into the test since it's not exported -set(kentrymaptest_SRCS kentrymaptest.cpp ../src/core/kconfigdata.cpp) -ecm_add_test(${kentrymaptest_SRCS} +ecm_add_test( + kentrymaptest.cpp + ../src/core/kconfigdata.cpp TEST_NAME kentrymaptest LINK_LIBRARIES Qt5::Test ) target_include_directories(kentrymaptest PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../src/core) # compile KConfigUtils into the test since it's not exported -set(test_kconfigutils_SRCS test_kconfigutils ../src/kconf_update/kconfigutils.cpp) -ecm_add_test(${test_kconfigutils_SRCS} +ecm_add_test( + test_kconfigutils.cpp + ../src/kconf_update/kconfigutils.cpp TEST_NAME test_kconfigutils LINK_LIBRARIES KF5::ConfigCore Qt5::Test ) target_include_directories(test_kconfigutils PRIVATE ../src/kconf_update) -qt5_add_resources(sharedconfigresources sharedconfigresources.qrc) +qt_add_resources(sharedconfigresources sharedconfigresources.qrc) -ecm_add_test(ksharedconfigtest ${sharedconfigresources} TEST_NAME kconfigcore-ksharedconfigtest LINK_LIBRARIES KF5::ConfigCore Qt5::Test Qt5::Concurrent) +ecm_add_test(ksharedconfigtest.cpp ${sharedconfigresources} TEST_NAME kconfigcore-ksharedconfigtest LINK_LIBRARIES KF5::ConfigCore Qt5::Test Qt5::Concurrent) # test for fallback to :/kconfig/xxxx config resource -qt5_add_resources(fallbackconfigresources fallbackconfigresources.qrc) -ecm_add_test(fallbackconfigresourcestest ${fallbackconfigresources} TEST_NAME kconfigcore-fallbackconfigresourcestest LINK_LIBRARIES KF5::ConfigCore Qt5::Test Qt5::Concurrent) +qt_add_resources(fallbackconfigresources fallbackconfigresources.qrc) +ecm_add_test(fallbackconfigresourcestest.cpp ${fallbackconfigresources} TEST_NAME kconfigcore-fallbackconfigresourcestest LINK_LIBRARIES KF5::ConfigCore Qt5::Test Qt5::Concurrent) ecm_add_tests( kconfignokdehometest.cpp kconfigtest.cpp kdesktopfiletest.cpp test_kconf_update.cpp - ksharedconfig_in_global_object + ksharedconfig_in_global_object.cpp NAME_PREFIX kconfigcore- LINK_LIBRARIES KF5::ConfigCore Qt5::Test Qt5::Concurrent ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/po/de/kconfig5_qt.po new/kconfig-5.83.0/po/de/kconfig5_qt.po --- old/kconfig-5.82.0/po/de/kconfig5_qt.po 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/po/de/kconfig5_qt.po 2021-06-05 11:14:10.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kwriteconfig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-11 02:17+0000\n" -"PO-Revision-Date: 2021-04-14 06:29+0200\n" +"PO-Revision-Date: 2021-05-10 06:42+0200\n" "Last-Translator: Burkhard L??ck <[email protected]>\n" "Language-Team: German <[email protected]>\n" "Language: de\n" @@ -268,7 +268,7 @@ #: gui/kstandardshortcut.cpp:264 msgctxt "KStandardShortcut|@action" msgid "Substring Completion" -msgstr "Teilzeichenketten-Vervollst??ndigung" +msgstr "Teilzeichenfolgen-Vervollst??ndigung" #: gui/kstandardshortcut.cpp:273 msgctxt "KStandardShortcut|@action" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/po/kab/kconfig5_qt.po new/kconfig-5.83.0/po/kab/kconfig5_qt.po --- old/kconfig-5.82.0/po/kab/kconfig5_qt.po 1970-01-01 01:00:00.000000000 +0100 +++ new/kconfig-5.83.0/po/kab/kconfig5_qt.po 2021-06-05 11:14:10.000000000 +0200 @@ -0,0 +1,542 @@ +# translation of kwriteconfig.po to British English +# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# +# Malcolm Hunter <[email protected]>, 2003, 2008. +# Andrew Coles <[email protected]>, 2009. +# Steve Allewell <[email protected]>, 2014, 2015, 2016, 2017, 2018, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: kwriteconfig\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2014-04-11 02:17+0000\n" +"PO-Revision-Date: 2021-05-23 17:08+0100\n" +"Last-Translator: Slimane Selyan Amiri <[email protected]>\n" +"Language-Team: British English <[email protected]>\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" +"X-Qt-Contexts: true\n" + +#: core/kconfig.cpp:918 +msgctxt "KConfig|" +msgid "Please contact your system administrator." +msgstr "Ttxil-k??m nermes anedbal-ik??im n unagraw." + +#: core/kconfigini.cpp:567 +#, qt-format +msgctxt "KConfigIniBackend|" +msgid "Configuration file \"%1\" not writable.\n" +msgstr "Afaylu n uswel \"%1\" ur yelli ara i tira.\n" + +#: core/kemailsettings.cpp:237 core/kemailsettings.cpp:240 +#: core/kemailsettings.cpp:248 +msgctxt "KEMailSettings|" +msgid "Default" +msgstr "Amezwar" + +#: gui/kstandardshortcut.cpp:67 +msgctxt "KStandardShortcut|@action" +msgid "Open" +msgstr "Ldi" + +#: gui/kstandardshortcut.cpp:68 +msgctxt "KStandardShortcut|@action" +msgid "New" +msgstr "Amynut" + +#: gui/kstandardshortcut.cpp:69 +msgctxt "KStandardShortcut|@action" +msgid "Close" +msgstr "Mdel" + +#: gui/kstandardshortcut.cpp:70 +msgctxt "KStandardShortcut|@action" +msgid "Save" +msgstr "Sekles" + +#: gui/kstandardshortcut.cpp:71 +msgctxt "KStandardShortcut|@action" +msgid "Print" +msgstr "Siggez" + +#: gui/kstandardshortcut.cpp:72 +msgctxt "KStandardShortcut|@action" +msgid "Quit" +msgstr "Ffe??" + +#: gui/kstandardshortcut.cpp:75 +msgctxt "KStandardShortcut|@action" +msgid "Undo" +msgstr "Err-d" + +#: gui/kstandardshortcut.cpp:76 +msgctxt "KStandardShortcut|@action" +msgid "Redo" +msgstr "Err-d" + +#: gui/kstandardshortcut.cpp:79 +msgctxt "KStandardShortcut|@action" +msgid "Cut" +msgstr "Gzem" + +#: gui/kstandardshortcut.cpp:80 +msgctxt "KStandardShortcut|@action" +msgid "Copy" +msgstr "N??el" + +#: gui/kstandardshortcut.cpp:81 +msgctxt "KStandardShortcut|@action" +msgid "Paste" +msgstr "Sen???e???" + +#: gui/kstandardshortcut.cpp:84 +msgctxt "KStandardShortcut|@action" +msgid "Paste Selection" +msgstr "Sen???e??? tafrant" + +#: gui/kstandardshortcut.cpp:91 +msgctxt "KStandardShortcut|@action" +msgid "Select All" +msgstr "Fren akk" + +#: gui/kstandardshortcut.cpp:92 +msgctxt "KStandardShortcut|@action" +msgid "Deselect" +msgstr "Kkes tafrayt" + +#: gui/kstandardshortcut.cpp:95 +msgctxt "KStandardShortcut|@action" +msgid "Delete Word Backwards" +msgstr "" + +#: gui/kstandardshortcut.cpp:103 +msgctxt "KStandardShortcut|@action" +msgid "Delete Word Forward" +msgstr "" + +#: gui/kstandardshortcut.cpp:110 +msgctxt "KStandardShortcut|@action" +msgid "Find" +msgstr "Af" + +#: gui/kstandardshortcut.cpp:111 +msgctxt "KStandardShortcut|@action" +msgid "Find Next" +msgstr "Nadi u???fir" + +#: gui/kstandardshortcut.cpp:112 +msgctxt "KStandardShortcut|@action" +msgid "Find Prev" +msgstr "Nadi uzwir" + +#: gui/kstandardshortcut.cpp:113 +msgctxt "KStandardShortcut|@action" +msgid "Replace" +msgstr "Semselsi" + +#: gui/kstandardshortcut.cpp:118 +msgctxt "KStandardShortcut|@action Go to main page" +msgid "Home" +msgstr "Agejdan" + +#: gui/kstandardshortcut.cpp:126 +msgctxt "KStandardShortcut|@action Beginning of document" +msgid "Begin" +msgstr "Bdu" + +#: gui/kstandardshortcut.cpp:132 +msgctxt "KStandardShortcut|@action End of document" +msgid "End" +msgstr "Tagara" + +#: gui/kstandardshortcut.cpp:133 +msgctxt "KStandardShortcut|@action" +msgid "Prior" +msgstr "" + +#: gui/kstandardshortcut.cpp:136 +msgctxt "KStandardShortcut|@action Opposite to Prior" +msgid "Next" +msgstr "??er zdat" + +#: gui/kstandardshortcut.cpp:143 +msgctxt "KStandardShortcut|@action" +msgid "Up" +msgstr "Asawen" + +#: gui/kstandardshortcut.cpp:144 +msgctxt "KStandardShortcut|@action" +msgid "Back" +msgstr "??er deffir" + +#: gui/kstandardshortcut.cpp:147 +msgctxt "KStandardShortcut|@action" +msgid "Forward" +msgstr "??er zdat" + +#: gui/kstandardshortcut.cpp:155 +msgctxt "KStandardShortcut|@action" +msgid "Reload" +msgstr "Smiren" + +#: gui/kstandardshortcut.cpp:164 +msgctxt "KStandardShortcut|@action" +msgid "Beginning of Line" +msgstr "Tazwara n yizirig" + +#: gui/kstandardshortcut.cpp:172 +msgctxt "KStandardShortcut|@action" +msgid "End of Line" +msgstr "Taggara n yizirig" + +#: gui/kstandardshortcut.cpp:178 +msgctxt "KStandardShortcut|@action" +msgid "Go to Line" +msgstr "Ddu ??er izirig" + +#: gui/kstandardshortcut.cpp:181 +msgctxt "KStandardShortcut|@action" +msgid "Backward Word" +msgstr "" + +#: gui/kstandardshortcut.cpp:189 +msgctxt "KStandardShortcut|@action" +msgid "Forward Word" +msgstr "" + +#: gui/kstandardshortcut.cpp:198 +msgctxt "KStandardShortcut|@action" +msgid "Add Bookmark" +msgstr "Rnu tacre???t n usebter" + +#: gui/kstandardshortcut.cpp:204 +msgctxt "KStandardShortcut|@action" +msgid "Zoom In" +msgstr "Sem??e???" + +#: gui/kstandardshortcut.cpp:205 +msgctxt "KStandardShortcut|@action" +msgid "Zoom Out" +msgstr "Sim???i" + +#: gui/kstandardshortcut.cpp:208 +msgctxt "KStandardShortcut|@action" +msgid "Full Screen Mode" +msgstr "" + +#: gui/kstandardshortcut.cpp:215 +msgctxt "KStandardShortcut|@action" +msgid "Show Menu Bar" +msgstr "Sken afeggag n wumu??" + +#: gui/kstandardshortcut.cpp:218 +msgctxt "KStandardShortcut|@action" +msgid "Activate Next Tab" +msgstr "Rmed iccer d-iteddun" + +#: gui/kstandardshortcut.cpp:226 +msgctxt "KStandardShortcut|@action" +msgid "Activate Previous Tab" +msgstr "Rmed iccer yezrin" + +#: gui/kstandardshortcut.cpp:234 +msgctxt "KStandardShortcut|@action" +msgid "Help" +msgstr "Tallalt" + +#: gui/kstandardshortcut.cpp:235 +msgctxt "KStandardShortcut|@action" +msgid "What's This" +msgstr "D acu wa" + +#: gui/kstandardshortcut.cpp:240 +msgctxt "KStandardShortcut|@action" +msgid "Text Completion" +msgstr "Akemmel n u???ris" + +#: gui/kstandardshortcut.cpp:248 +msgctxt "KStandardShortcut|@action" +msgid "Previous Completion Match" +msgstr "" + +#: gui/kstandardshortcut.cpp:256 +msgctxt "KStandardShortcut|@action" +msgid "Next Completion Match" +msgstr "" + +#: gui/kstandardshortcut.cpp:264 +msgctxt "KStandardShortcut|@action" +msgid "Substring Completion" +msgstr "" + +#: gui/kstandardshortcut.cpp:273 +msgctxt "KStandardShortcut|@action" +msgid "Previous Item in List" +msgstr "" + +#: gui/kstandardshortcut.cpp:281 +msgctxt "KStandardShortcut|@action" +msgid "Next Item in List" +msgstr "" + +#: gui/kstandardshortcut.cpp:288 +msgctxt "KStandardShortcut|@action" +msgid "Open Recent" +msgstr "Ldi ineggura" + +#: gui/kstandardshortcut.cpp:289 +msgctxt "KStandardShortcut|@action" +msgid "Save As" +msgstr "Sekles am" + +#: gui/kstandardshortcut.cpp:290 +msgctxt "KStandardShortcut|@action" +msgid "Revert" +msgstr "Erred" + +#: gui/kstandardshortcut.cpp:291 +msgctxt "KStandardShortcut|@action" +msgid "Print Preview" +msgstr "Siggez taskant" + +#: gui/kstandardshortcut.cpp:292 +msgctxt "KStandardShortcut|@action" +msgid "Mail" +msgstr "Imayl" + +#: gui/kstandardshortcut.cpp:293 +msgctxt "KStandardShortcut|@action" +msgid "Clear" +msgstr "Sfe???" + +#: gui/kstandardshortcut.cpp:294 +msgctxt "KStandardShortcut|@action" +msgid "Actual Size" +msgstr "Te??zi tamirant" + +#: gui/kstandardshortcut.cpp:295 +msgctxt "KStandardShortcut|@action" +msgid "Fit To Page" +msgstr "" + +#: gui/kstandardshortcut.cpp:296 +msgctxt "KStandardShortcut|@action" +msgid "Fit To Width" +msgstr "" + +#: gui/kstandardshortcut.cpp:297 +msgctxt "KStandardShortcut|@action" +msgid "Fit To Height" +msgstr "" + +#: gui/kstandardshortcut.cpp:298 +msgctxt "KStandardShortcut|@action" +msgid "Zoom" +msgstr "Sem??e???" + +#: gui/kstandardshortcut.cpp:299 +msgctxt "KStandardShortcut|@action" +msgid "Goto" +msgstr "Ddu ??er" + +#: gui/kstandardshortcut.cpp:300 +msgctxt "KStandardShortcut|@action" +msgid "Goto Page" +msgstr "Ddu ??er usebter" + +#: gui/kstandardshortcut.cpp:303 +msgctxt "KStandardShortcut|@action" +msgid "Document Back" +msgstr "" + +#: gui/kstandardshortcut.cpp:311 +msgctxt "KStandardShortcut|@action" +msgid "Document Forward" +msgstr "" + +#: gui/kstandardshortcut.cpp:319 +msgctxt "KStandardShortcut|@action" +msgid "Edit Bookmarks" +msgstr "Modifier les signets" + +#: gui/kstandardshortcut.cpp:325 +msgctxt "KStandardShortcut|@action" +msgid "Spelling" +msgstr "Ta??dira" + +#: gui/kstandardshortcut.cpp:326 +msgctxt "KStandardShortcut|@action" +msgid "Show Toolbar" +msgstr "Sken tafeggagt n ifecka" + +#: gui/kstandardshortcut.cpp:327 +msgctxt "KStandardShortcut|@action" +msgid "Show Statusbar" +msgstr "" + +#: gui/kstandardshortcut.cpp:329 +msgctxt "KStandardShortcut|@action" +msgid "Save Options" +msgstr "Sekles i??ewwa???en" + +#: gui/kstandardshortcut.cpp:334 +msgctxt "KStandardShortcut|@action" +msgid "Key Bindings" +msgstr "" + +#: gui/kstandardshortcut.cpp:337 +msgctxt "KStandardShortcut|@action" +msgid "Configure Application" +msgstr "" + +#: gui/kstandardshortcut.cpp:345 +msgctxt "KStandardShortcut|@action" +msgid "Configure Toolbars" +msgstr "Swel ifeggagen n yifecka" + +#: gui/kstandardshortcut.cpp:353 +msgctxt "KStandardShortcut|@action" +msgid "Configure Notifications" +msgstr "" + +#: gui/kstandardshortcut.cpp:359 +msgctxt "KStandardShortcut|@action" +msgid "Tip Of Day" +msgstr "" + +#: gui/kstandardshortcut.cpp:360 +msgctxt "KStandardShortcut|@action" +msgid "Report Bug" +msgstr "Azen abug" + +#: gui/kstandardshortcut.cpp:363 +msgctxt "KStandardShortcut|@action" +msgid "Configure Language..." +msgstr "" + +#: gui/kstandardshortcut.cpp:369 +msgctxt "KStandardShortcut|@action" +msgid "About Application" +msgstr "??ef usnas" + +#: gui/kstandardshortcut.cpp:370 +msgctxt "KStandardShortcut|@action" +msgid "About KDE" +msgstr "??ef KDE" + +#: gui/kstandardshortcut.cpp:373 +msgctxt "KStandardShortcut|@action" +msgid "Delete" +msgstr "Kkes" + +#: gui/kstandardshortcut.cpp:374 +msgctxt "KStandardShortcut|@action" +msgid "Rename" +msgstr "Beddel isem" + +#: gui/kstandardshortcut.cpp:377 +msgctxt "KStandardShortcut|@action" +msgid "Move to Trash" +msgstr "Err ??er tqecwalt" + +#: gui/kstandardshortcut.cpp:383 +msgctxt "KStandardShortcut|@action" +msgid "Donate" +msgstr "Mudd tawsa" + +#: gui/kstandardshortcut.cpp:386 +msgctxt "KStandardShortcut|@action" +msgid "Show/Hide Hidden Files" +msgstr "" + +#: gui/kstandardshortcut.cpp:394 +msgctxt "KStandardShortcut|@action" +msgid "Create Folder" +msgstr "Rnu akaram" + +#: kconf_update/kconf_update.cpp:953 +msgctxt "main|" +msgid "KDE Tool for updating user configuration files" +msgstr "Afecku KDE i uleqqem n yifuyla n twila n useqdac" + +#: kconf_update/kconf_update.cpp:955 +msgctxt "main|" +msgid "Keep output results from scripts" +msgstr "E???? igma??? n tff??a n yisekripten" + +#: kconf_update/kconf_update.cpp:958 +msgctxt "main|" +msgid "" +"For unit tests only: use test directories to stay away from the user's real " +"files" +msgstr "" + +#: kconf_update/kconf_update.cpp:960 +msgctxt "main|" +msgid "Check whether config file itself requires updating" +msgstr "Senqed ma yella afaylu n uswel yesra aleqqem" + +#: kconf_update/kconf_update.cpp:963 +msgctxt "main|" +msgid "File(s) to read update instructions from" +msgstr "" + +#: kconfig_compiler/kconfig_compiler.cpp:706 +msgctxt "main|" +msgid "Directory to generate files in [.]" +msgstr "" + +#: kconfig_compiler/kconfig_compiler.cpp:707 +msgctxt "main|" +msgid "directory" +msgstr "akaram" + +#: kconfig_compiler/kconfig_compiler.cpp:711 +msgctxt "main|" +msgid "Display software license." +msgstr "" + +#: kreadconfig/kreadconfig.cpp:45 kreadconfig/kwriteconfig.cpp:25 +msgctxt "main|" +msgid "Use <file> instead of global config" +msgstr "" + +#: kreadconfig/kreadconfig.cpp:47 kreadconfig/kwriteconfig.cpp:27 +msgctxt "main|" +msgid "Group to look in. Use repeatedly for nested groups." +msgstr "" + +#: kreadconfig/kreadconfig.cpp:50 kreadconfig/kwriteconfig.cpp:30 +msgctxt "main|" +msgid "Key to look for" +msgstr "" + +#: kreadconfig/kreadconfig.cpp:51 +msgctxt "main|" +msgid "Default value" +msgstr "Valeur par d??faut" + +#: kreadconfig/kreadconfig.cpp:52 +msgctxt "main|" +msgid "Type of variable" +msgstr "" + +#: kreadconfig/kwriteconfig.cpp:33 +msgctxt "main|" +msgid "" +"Type of variable. Use \"bool\" for a boolean, otherwise it is treated as a " +"string" +msgstr "" + +#: kreadconfig/kwriteconfig.cpp:35 +msgctxt "main|" +msgid "Delete the designated key if enabled" +msgstr "" + +#: kreadconfig/kwriteconfig.cpp:36 +msgctxt "main|" +msgid "The value to write. Mandatory, on a shell use '' for empty" +msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/po/zh_CN/kconfig5_qt.po new/kconfig-5.83.0/po/zh_CN/kconfig5_qt.po --- old/kconfig-5.82.0/po/zh_CN/kconfig5_qt.po 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/po/zh_CN/kconfig5_qt.po 2021-06-05 11:14:10.000000000 +0200 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2021-04-24 15:42\n" +"PO-Revision-Date: 2021-06-03 16:05\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -411,7 +411,7 @@ #: gui/kstandardshortcut.cpp:360 msgctxt "KStandardShortcut|@action" msgid "Report Bug" -msgstr "????????????" +msgstr "??????????????????" #: gui/kstandardshortcut.cpp:363 msgctxt "KStandardShortcut|@action" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/core/CMakeLists.txt new/kconfig-5.83.0/src/core/CMakeLists.txt --- old/kconfig-5.82.0/src/core/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/core/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -1,4 +1,7 @@ -set(libkconfigcore_SRCS +add_library(KF5ConfigCore) +add_library(KF5::ConfigCore ALIAS KF5ConfigCore) + +target_sources(KF5ConfigCore PRIVATE kconfig.cpp kconfigbase.cpp kconfigdata.cpp @@ -13,7 +16,7 @@ kconfigwatcher.cpp ) -ecm_qt_declare_logging_category(libkconfigcore_SRCS +ecm_qt_declare_logging_category(KF5ConfigCore HEADER kconfig_core_log_settings.h IDENTIFIER KCONFIG_CORE_LOG CATEGORY_NAME kf.config.core @@ -24,8 +27,6 @@ configure_file(config-kconfig.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kconfig.h ) -add_library(KF5ConfigCore ${libkconfigcore_SRCS}) -add_library(KF5::ConfigCore ALIAS KF5ConfigCore) ecm_generate_export_header(KF5ConfigCore BASE_NAME KConfigCore GROUP_BASE_NAME KF @@ -48,7 +49,7 @@ target_link_libraries(KF5ConfigCore PRIVATE Qt5::DBus) endif() -set_target_properties(KF5ConfigCore PROPERTIES VERSION ${KCONFIG_VERSION_STRING} +set_target_properties(KF5ConfigCore PROPERTIES VERSION ${KCONFIG_VERSION} SOVERSION ${KCONFIG_SOVERSION} EXPORT_NAME ConfigCore ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/core/kauthorized.h new/kconfig-5.83.0/src/core/kauthorized.h --- old/kconfig-5.82.0/src/core/kauthorized.h 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/core/kauthorized.h 2021-06-05 11:14:10.000000000 +0200 @@ -110,8 +110,9 @@ * @see authorize() * @deprecated since 5.24, use authorizeAction() instead. */ +KCONFIGCORE_EXPORT KCONFIGCORE_DEPRECATED_VERSION(5, 24, "Use KAuthorized::authorizeAction(const QString&)") -KCONFIGCORE_EXPORT bool authorizeKAction(const QString &action); +bool authorizeKAction(const QString &action); #endif /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/core/ksharedconfig.h new/kconfig-5.83.0/src/core/ksharedconfig.h --- old/kconfig-5.82.0/src/core/ksharedconfig.h 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/core/ksharedconfig.h 2021-06-05 11:14:10.000000000 +0200 @@ -25,7 +25,7 @@ * The openConfig() method is threadsafe: every thread gets a separate repository * of shared KConfig objects. This means, however, that you'll be responsible for * synchronizing the instances of KConfig for the same filename between threads, - * using reparseConfiguration after a manual change notification, just like you have + * using KConfig::reparseConfiguration() after a manual change notification, just like you have * to do between processes. */ class KCONFIGCORE_EXPORT KSharedConfig : public KConfig, public QSharedData // krazy:exclude=dpointer (only for refcounting) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/gui/CMakeLists.txt new/kconfig-5.83.0/src/gui/CMakeLists.txt --- old/kconfig-5.82.0/src/gui/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/gui/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -1,15 +1,17 @@ -set(libkconfiggui_SRCS - kconfiggui.cpp - kconfiggroupgui.cpp - kconfigloader.cpp - kconfigskeleton.cpp - kstandardshortcut.cpp - kwindowconfig.cpp +add_library(KF5ConfigGui) +add_library(KF5::ConfigGui ALIAS KF5ConfigGui) + +ecm_create_qm_loader(KF5ConfigGui kconfig5_qt) + +target_sources(KF5ConfigGui PRIVATE + kconfiggui.cpp + kconfiggroupgui.cpp + kconfigloader.cpp + kconfigskeleton.cpp + kstandardshortcut.cpp + kwindowconfig.cpp ) -ecm_create_qm_loader(libkconfiggui_SRCS kconfig5_qt) -add_library(KF5ConfigGui ${libkconfiggui_SRCS}) -add_library(KF5::ConfigGui ALIAS KF5ConfigGui) ecm_generate_export_header(KF5ConfigGui BASE_NAME KConfigGui GROUP_BASE_NAME KF @@ -23,7 +25,7 @@ target_link_libraries(KF5ConfigGui PUBLIC Qt5::Gui Qt5::Xml KF5::ConfigCore) -set_target_properties(KF5ConfigGui PROPERTIES VERSION ${KCONFIG_VERSION_STRING} +set_target_properties(KF5ConfigGui PROPERTIES VERSION ${KCONFIG_VERSION} SOVERSION ${KCONFIG_SOVERSION} EXPORT_NAME ConfigGui ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/gui/kconfiggui.h new/kconfig-5.83.0/src/gui/kconfiggui.h --- old/kconfig-5.82.0/src/gui/kconfiggui.h 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/gui/kconfiggui.h 2021-06-05 11:14:10.000000000 +0200 @@ -53,8 +53,9 @@ * @return the application session name * @deprecated since 5.11, use sessionConfig()->name() */ +KCONFIGGUI_EXPORT KCONFIGGUI_DEPRECATED_VERSION(5, 11, "Use KConfigGui::sessionConfig()->name()") -KCONFIGGUI_EXPORT QString sessionConfigName(); +QString sessionConfigName(); #endif } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/gui/kstandardshortcut.h new/kconfig-5.83.0/src/gui/kstandardshortcut.h --- old/kconfig-5.82.0/src/gui/kstandardshortcut.h 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/gui/kstandardshortcut.h 2021-06-05 11:14:10.000000000 +0200 @@ -211,8 +211,9 @@ * is none * @deprecated since 5.71, use findByName(const QString &name) instead */ +KCONFIGGUI_EXPORT KCONFIGGUI_DEPRECATED_VERSION(5, 71, "Use findByName(const QString &name) instead") -KCONFIGGUI_EXPORT StandardShortcut find(const char *keyName); +StandardShortcut find(const char *keyName); #endif /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/gui/kwindowconfig.cpp new/kconfig-5.83.0/src/gui/kwindowconfig.cpp --- old/kconfig-5.82.0/src/gui/kwindowconfig.cpp 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/gui/kwindowconfig.cpp 2021-06-05 11:14:10.000000000 +0200 @@ -140,6 +140,12 @@ return; } + // If the window is maximized, saving the position will only serve to mis-position + // it once de-maximized, so let's not do that + if (window->windowState() & Qt::WindowMaximized) { + return; + } + const QRect desk = window->screen()->geometry(); config.writeEntry(windowXPositionString(desk), window->x(), options); config.writeEntry(windowYPositionString(desk), window->y(), options); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/kconf_update/CMakeLists.txt new/kconfig-5.83.0/src/kconf_update/CMakeLists.txt --- old/kconfig-5.82.0/src/kconf_update/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/kconf_update/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -1,11 +1,12 @@ -########### next target ############### +add_executable(kconf_update) +add_executable(KF5::kconf_update ALIAS kconf_update) -set(kconf_update_SRCS +target_sources(kconf_update PRIVATE kconf_update.cpp kconfigutils.cpp - ) +) -ecm_qt_declare_logging_category(kconf_update_SRCS +ecm_qt_declare_logging_category(kconf_update HEADER kconf_update_debug.h IDENTIFIER KCONF_UPDATE_LOG CATEGORY_NAME kf.config.kconf_update @@ -14,8 +15,6 @@ EXPORT KCONFIG ) -add_executable(kconf_update ${kconf_update_SRCS}) -add_executable(KF5::kconf_update ALIAS kconf_update) target_link_libraries(kconf_update Qt5::Core KF5::ConfigCore) include(ECMMarkNonGuiExecutable) ecm_mark_nongui_executable(kconf_update) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfig-5.82.0/src/kconfig_compiler/CMakeLists.txt new/kconfig-5.83.0/src/kconfig_compiler/CMakeLists.txt --- old/kconfig-5.82.0/src/kconfig_compiler/CMakeLists.txt 2021-05-01 14:30:13.000000000 +0200 +++ new/kconfig-5.83.0/src/kconfig_compiler/CMakeLists.txt 2021-06-05 11:14:10.000000000 +0200 @@ -1,6 +1,14 @@ +add_executable(kconfig_compiler) +if(CMAKE_TOOLCHAIN_FILE) + if(BUILD_TESTING) + message(WARNING "Testing should be disabled on cross-compilation") + endif() +else() + add_executable(KF5::kconfig_compiler ALIAS kconfig_compiler) +endif() -set(kconfig_compiler_SRCS +target_sources(kconfig_compiler PRIVATE KConfigParameters.cpp KConfigCodeGeneratorBase.cpp KConfigHeaderGenerator.cpp @@ -9,20 +17,10 @@ kconfig_compiler.cpp ) - -add_executable(kconfig_compiler ${kconfig_compiler_SRCS}) set_target_properties(kconfig_compiler PROPERTIES OUTPUT_NAME "kconfig_compiler_kf5" ) -if(CMAKE_TOOLCHAIN_FILE) - if(BUILD_TESTING) - message(WARNING "Testing should be disabled on cross-compilation") - endif() -else() - add_executable(KF5::kconfig_compiler ALIAS kconfig_compiler) -endif() - target_link_libraries(kconfig_compiler Qt5::Xml) ecm_mark_nongui_executable(kconfig_compiler)
