Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-kcoreaddons for openSUSE:Factory checked in at 2025-05-12 16:43:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kcoreaddons (Old) and /work/SRC/openSUSE:Factory/.kf6-kcoreaddons.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kcoreaddons" Mon May 12 16:43:27 2025 rev:15 rq:1276363 version:6.14.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kcoreaddons/kf6-kcoreaddons.changes 2025-04-15 16:45:40.918541228 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-kcoreaddons.new.30101/kf6-kcoreaddons.changes 2025-05-12 16:46:29.370644528 +0200 @@ -1,0 +2,14 @@ +Sun May 4 19:05:18 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 6.14.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.14.0 +- Changes since 6.13.0: + * Update dependency version to 6.14.0 + * Add pkg-config file + * Update version to 6.14.0 + * Remove conditions for no longer supported Qt versions + * python: install typesystem file + +------------------------------------------------------------------- Old: ---- kcoreaddons-6.13.0.tar.xz kcoreaddons-6.13.0.tar.xz.sig New: ---- kcoreaddons-6.14.0.tar.xz kcoreaddons-6.14.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kcoreaddons.spec ++++++ --- /var/tmp/diff_new_pack.mahO0f/_old 2025-05-12 16:46:30.754703364 +0200 +++ /var/tmp/diff_new_pack.mahO0f/_new 2025-05-12 16:46:30.770704045 +0200 @@ -32,13 +32,13 @@ %define mypython_sitearch %{expand:%%%{mypython}_sitearch} %endif -# Full KF6 version (e.g. 6.13.0) +# Full KF6 version (e.g. 6.14.0) %{!?_kf6_version: %global _kf6_version %{version}} # Last major and minor KF6 version (e.g. 6.0) %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-kcoreaddons -Version: 6.13.0 +Version: 6.14.0 Release: 0 Summary: Utilities for core application functionality and accessing the OS License: LGPL-2.1-or-later @@ -155,10 +155,17 @@ %dir %{_kf6_datadir}/jsonschema %{_kf6_datadir}/jsonschema/kpluginmetadata.schema.json %{_kf6_libdir}/libKF6CoreAddons.so +%{_kf6_pkgconfigdir}/KF6CoreAddons.pc +%if %{with kde_python_bindings} +%dir %{_includedir}/PySide6/ +%{_includedir}/PySide6/KCoreAddons/ +%endif + %if %{with kde_python_bindings} %files -n python3-kf6-kcoreaddons %{mypython_sitearch}/*.so +%{_kf6_sharedir}/PySide6/typesystems/typesystem_kcoreaddons.xml %endif %files lang -f kf6-kcoreaddons.lang ++++++ kcoreaddons-6.13.0.tar.xz -> kcoreaddons-6.14.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/CMakeLists.txt new/kcoreaddons-6.14.0/CMakeLists.txt --- old/kcoreaddons-6.13.0/CMakeLists.txt 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/CMakeLists.txt 2025-05-02 16:16:38.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.13.0") # handled by release scripts +set(KF_VERSION "6.14.0") # handled by release scripts project(KCoreAddons VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 6.13.0 NO_MODULE) +find_package(ECM 6.14.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) @@ -20,6 +20,7 @@ include(CMakePackageConfigHelpers) include(ECMSetupVersion) include(ECMGenerateHeaders) +include(ECMGeneratePkgConfigFile) include(ECMQtDeclareLoggingCategory) include(ECMAddQch) include(ECMSetupQtPluginMacroNames) @@ -34,7 +35,7 @@ option(ENABLE_PCH "Enable precompile headers for faster builds" ON) option(KCOREADDONS_USE_QML "Build the QML plugin" ON) -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.7.0) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core) if (KCOREADDONS_USE_QML) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Qml Network) @@ -184,6 +185,14 @@ install(FILES ${kcoreaddons_version_header} DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KCoreAddons COMPONENT Devel) +if (NOT WIN32) + ecm_generate_pkgconfig_file(BASE_NAME KF6CoreAddons + INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF}/KCoreAddons + DEPS Qt6Core + INSTALL + ) +endif() + include(ECMFeatureSummary) ecm_feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/poqm/ar/kcoreaddons6_qt.po new/kcoreaddons-6.14.0/poqm/ar/kcoreaddons6_qt.po --- old/kcoreaddons-6.13.0/poqm/ar/kcoreaddons6_qt.po 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/poqm/ar/kcoreaddons6_qt.po 2025-05-02 16:16:38.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-28 15:38+0300\n" -"PO-Revision-Date: 2025-01-23 16:36+0400\n" +"PO-Revision-Date: 2025-04-18 21:52+0400\n" "Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n" "Language-Team: ar\n" "Language: ar\n" @@ -258,15 +258,16 @@ "internationalization visit <a href=\"https://l10n.kde.org\">https://l10n.kde." "org</a></p>" msgstr "" -"<p>يعمل أفراد طاقم عربآيز على ترجمة واجهة كِيدِي إلى اللغة العربية، وهذا بفضل " -"جهود مترجمين متطوّعين من كافة الدول العربية وغيرها.</p>\n" -"<p>لمزيد من المعلومات عن ترجمة كِيدِي إلى العربةي، زُر <a href=\"https://www." -"arabeyes.org\">الموقع الرسمي للفريق</a>. رجاءً أبلغ عن أخطاء الترجمة على " -"العنوان الآتي: <a href=\"mailto:cont...@arabeyes.org\">cont...@arabeyes.org</" -"a></p>\n" -"<p>تُترجم كِيدِي إلى لغات عديدة بفضل مختلف طواقم الترجمة من العالم بأسره.</p>\n" -"<p>لمزيد من المعلومات زُر <a href=\"https://l10n.kde.org\">https://l10n.kde." -"org</a>.</p>" +"<p>يقوم المتطوعون بتعريب سطح مكتب بلازما وبرامج كيدي حتى يتمكن الناطقون " +"بالعربية من الاستفادة والتفاعل مع مجتمع كيدي العالمي.</p>\n" +"<p>بدأت عملية التعريب مع بداية الألفية بواسطة <a href=\"https://www.arabeyes." +"org\">فريق عربآيز</a>وهو فريق من متطوّعين من كافة الدول العربية وغيرها . فلهم " +"جزيل الشكر والعرفان</p>\n" +"<p>تُدار عملية التعريب حاليا على موقع كيدي الرسمي .</p><p>لمزيد من المعلومات " +"زُر <a href=\"https://l10n.kde.org/team-infos.php?teamcode=ar\">https://l10n." +"kde.org/team-infos.php?teamcode=ar</a>.</p><p>رجاءً أبلغ عن أخطاء الترجمة على " +"<a href=\"https://mail.kde.org/cgi-bin/mailman/listinfo/kde-l10n-ar" +"\">القائمة البريدية العربية</a></p>" #: lib/kaboutdata.cpp:1226 msgctxt "KAboutData CLI|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/poqm/ko/kcoreaddons6_qt.po new/kcoreaddons-6.14.0/poqm/ko/kcoreaddons6_qt.po --- old/kcoreaddons-6.13.0/poqm/ko/kcoreaddons6_qt.po 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/poqm/ko/kcoreaddons6_qt.po 2025-05-02 16:16:38.000000000 +0200 @@ -1,14 +1,14 @@ # Korean messages for kdelibs. # Copyright (C) Free Software Foundation, Inc. # Cho Sung Jae <cho.sung...@gmail.com>, 2007. -# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Shinjo Park <k...@peremen.name> +# SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 Shinjo Park <k...@peremen.name> # 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: 2024-12-24 16:40+0100\n" +"PO-Revision-Date: 2025-04-06 22:59+0200\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <kde...@kde.org>\n" "Language: ko\n" @@ -233,15 +233,12 @@ #: lib/kaboutdata.cpp:403 msgctxt "KAboutLicense|@item license (short name)" msgid "MPL 2.0" -msgstr "" +msgstr "MPL 2.0" #: lib/kaboutdata.cpp:404 -#, fuzzy -#| msgctxt "KAboutLicense|@item license" -#| msgid "Q Public License" msgctxt "KAboutLicense|@item license" msgid "Mozilla Public License 2.0" -msgstr "Q 공중 라이선스" +msgstr "Mozilla 공중 라이선스 2.0" #: lib/kaboutdata.cpp:408 msgctxt "KAboutLicense|@item license" @@ -678,10 +675,7 @@ #. @item:intext abbreviated amount of days #: lib/util/kformatprivate.cpp:330 -#, fuzzy, qt-format -#| msgctxt "KFormat|" -#| msgid "%n day(s)" -#| msgid_plural "%n day(s)" +#, qt-format msgctxt "KFormat|" msgid "%n d" msgid_plural "%n d" @@ -689,10 +683,7 @@ #. @item:intext abbreviated amount of hours #: lib/util/kformatprivate.cpp:335 -#, fuzzy, qt-format -#| msgctxt "KFormat|" -#| msgid "%n hour(s)" -#| msgid_plural "%n hour(s)" +#, qt-format msgctxt "KFormat|" msgid "%n hr" msgid_plural "%n hr" @@ -700,10 +691,7 @@ #. @item:intext abbreviated amount of minutes #: lib/util/kformatprivate.cpp:340 -#, fuzzy, qt-format -#| msgctxt "KFormat|" -#| msgid "%n minute(s)" -#| msgid_plural "%n minute(s)" +#, qt-format msgctxt "KFormat|" msgid "%n min" msgid_plural "%n min" @@ -711,10 +699,7 @@ #. @item:intext abbreviated amount of seconds #: lib/util/kformatprivate.cpp:345 -#, fuzzy, qt-format -#| msgctxt "KFormat|" -#| msgid "%n second(s)" -#| msgid_plural "%n second(s)" +#, qt-format msgctxt "KFormat|" msgid "%n sec" msgid_plural "%n sec" @@ -759,21 +744,17 @@ #. ---------- #. @item:intext abbreviated amount of hours and abbreviated amount of minutes #: lib/util/kformatprivate.cpp:405 lib/util/kformatprivate.cpp:410 -#, fuzzy, qt-format -#| msgctxt "KFormat|no Prefix" -#| msgid "%1 %2" +#, qt-format msgctxt "KFormat|" msgid "%1 %2" msgstr "%1 %2" #. @item:intext abbreviated amount of hours, abbreviated amount of minutes and abbreviated amount of seconds #: lib/util/kformatprivate.cpp:414 -#, fuzzy, qt-format -#| msgctxt "KFormat|MetricBinaryDialect" -#| msgid "%1 %2%3" +#, qt-format msgctxt "KFormat|" msgid "%1 %2 %3" -msgstr "%1 %2%3" +msgstr "%1 %2 %3" #. @item:intext Duration format minutes, seconds and milliseconds #: lib/util/kformatprivate.cpp:422 @@ -941,29 +922,25 @@ #, qt-format msgctxt "KFormat|distance in feet" msgid "%1 ft" -msgstr "" +msgstr "%1피트" #: lib/util/kformatprivate.cpp:613 lib/util/kformatprivate.cpp:615 -#, fuzzy, qt-format -#| msgctxt "KFormat|" -#| msgid "%1 minutes" +#, qt-format msgctxt "KFormat|distance in miles" msgid "%1 mi" -msgstr "%1분" +msgstr "%1마일" #: lib/util/kformatprivate.cpp:621 #, qt-format msgctxt "KFormat|distance in meter" msgid "%1 m" -msgstr "" +msgstr "%1 m" #: lib/util/kformatprivate.cpp:624 lib/util/kformatprivate.cpp:626 -#, fuzzy, qt-format -#| msgctxt "KFormat|MetricBinaryDialect" -#| msgid "%1 kB" +#, qt-format msgctxt "KFormat|distance in kilometer" msgid "%1 km" -msgstr "%1 kB" +msgstr "%1 km" #: lib/util/klistopenfilesjob_unix.cpp:39 #, qt-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/poqm/pt_BR/kcoreaddons6_qt.po new/kcoreaddons-6.14.0/poqm/pt_BR/kcoreaddons6_qt.po --- old/kcoreaddons-6.13.0/poqm/pt_BR/kcoreaddons6_qt.po 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/poqm/pt_BR/kcoreaddons6_qt.po 2025-05-02 16:16:38.000000000 +0200 @@ -20,7 +20,7 @@ "Project-Id-Version: kcoreaddons5_qt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2014-03-23 01:50+0000\n" -"PO-Revision-Date: 2025-03-23 23:59-0300\n" +"PO-Revision-Date: 2025-03-24 00:12-0300\n" "Last-Translator: Geraldo Simiao <geraldosim...@fedoraproject.org>\n" "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n" "Language: pt_BR\n" @@ -743,7 +743,7 @@ #, qt-format msgctxt "KFormat|" msgid "%1h%2m" -msgstr "%1h%2min" +msgstr "%1h%2" #. @item:intext Duration format hours, minutes, seconds, milliseconds #: lib/util/kformatprivate.cpp:380 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/python/CMakeLists.txt new/kcoreaddons-6.14.0/python/CMakeLists.txt --- old/kcoreaddons-6.13.0/python/CMakeLists.txt 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/python/CMakeLists.txt 2025-05-02 16:16:38.000000000 +0200 @@ -4,7 +4,7 @@ set(bindings_library "KCoreAddons") set(wrapped_header ${CMAKE_CURRENT_SOURCE_DIR}/bindings.h) -set(typesystem_file ${CMAKE_CURRENT_SOURCE_DIR}/bindings.xml) +set(typesystem_file ${CMAKE_CURRENT_SOURCE_DIR}/typesystem_kcoreaddons.xml) set(generated_sources ${CMAKE_CURRENT_BINARY_DIR}/KCoreAddons/kcoreaddons_module_wrapper.cpp @@ -61,6 +61,7 @@ VERSION ${KF_VERSION} WRAPPED_HEADER ${wrapped_header} TYPESYSTEM ${typesystem_file} + EXPORT_TYPESYSTEM GENERATED_SOURCES ${generated_sources} DEPENDENCIES KF6::CoreAddons QT_VERSION ${REQUIRED_QT_VERSION} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/python/bindings.xml new/kcoreaddons-6.14.0/python/bindings.xml --- old/kcoreaddons-6.13.0/python/bindings.xml 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/python/bindings.xml 1970-01-01 01:00:00.000000000 +0100 @@ -1,116 +0,0 @@ -<?xml version="1.0"?> -<typesystem package="KCoreAddons"> -<!-- -SPDX-FileCopyrightText: 2024 Manuel Alcaraz Zambrano <manuelalcaraz...@gmail.com> -SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL ---> - <load-typesystem name="typesystem_core.xml" generate="no"/> - - <namespace-type name="KCoreAddons" /> - <namespace-type name="KFuzzyMatcher"> - <enum-type name="RangeType" /> - <value-type name="Range" /> - <value-type name="Result" /> - </namespace-type> - <namespace-type name="KProcessList"> - <object-type name="KProcessInfo" /> - </namespace-type> - <namespace-type name="KSandbox"> - <object-type name="ProcessContext" /> - <modify-function signature="startHostProcess(QProcess &, QFlags<QIODeviceBase::OpenModeFlag>)"> - <modify-argument index="2"> - <replace-default-expression with="QProcess::ReadWrite" /> - </modify-argument> - </modify-function> - </namespace-type> - <object-type name="KAboutComponent" /> - <object-type name="KAboutData" /> - <object-type name="KAboutLicense"> - <enum-type name="LicenseKey" /> - <enum-type name="NameFormat" /> - <enum-type name="VersionRestriction" /> - </object-type> - <object-type name="KAboutPerson" /> - <object-type name="KAutoSaveFile" /> - <namespace-type name="KBackup" /> - <object-type name="KCharMacroExpander" /> - <object-type name="KCompositeJob" /> - <object-type name="KDirWatch"> - <enum-type name="Method" /> - <enum-type name="WatchMode" flags="WatchModes" /> - </object-type> - <namespace-type name="KFileSystemType"> - <enum-type name="Type" /> - </namespace-type> - <namespace-type name="KFileUtils" /> - <object-type name="KFormat"> - <enum-type name="BinarySizeUnits" /> - <enum-type name="BinaryUnitDialect" /> - <enum-type name="DistanceFormatOption" flags="DistanceFormatOptions" /> - <enum-type name="DurationFormatOption" flags="DurationFormatOptions" /> - <enum-type name="Unit" /> - <enum-type name="UnitPrefix" /> - </object-type> - <object-type name="KGroupId" /> - <object-type name="KJob"> - <enum-type name="Capability" flags="Capabilities" /> - <enum-type name="KillVerbosity" /> - <enum-type name="Unit" /> - </object-type> - <object-type name="KJobTrackerInterface" /> - <object-type name="KJobUiDelegate"> - <enum-type name="Flag" flags="Flags" /> - </object-type> - <namespace-type name="KJsonUtils" /> - <namespace-type name="KLibexec" /> - <object-type name="KListOpenFilesJob"> - <enum-type name="Error" /> - </object-type> - <namespace-type name="KMacroExpander" /> - <object-type name="KMacroExpanderBase" /> - <object-type name="KMemoryInfo" /> - <object-type name="KNetworkMounts"> - <enum-type name="KNetworkMountOption" /> - <enum-type name="KNetworkMountsType" /> - </object-type> - <object-type name="KOSRelease" /> - <object-type name="KPluginFactory"> - <enum-type name="ResultErrorReason" /> - </object-type> - <object-type name="KPluginMetaData" hash-function="qHash"> - <enum-type name="KPluginMetaDataOption" flags="KPluginMetaDataOptions" /> - </object-type> - <object-type name="KProcess"> - <enum-type name="OutputChannelMode" /> - </object-type> - <namespace-type name="KRandom" /> - <namespace-type name="KRuntimePlatform" /> - <object-type name="KSharedDataCache"> - <enum-type name="EvictionPolicy" /> - </object-type> - <namespace-type name="KShell"> - <enum-type name="Errors" /> - <enum-type name="Option" flags="Options" /> - <modify-function signature="splitArgs(QString, KShell::Options, KShell::Errors*)"> - <modify-argument index="3"> - <remove-argument /> - </modify-argument> - </modify-function> - </namespace-type> - <object-type name="KSignalHandler" /> - <namespace-type name="KStringHandler" /> - <namespace-type name="KTextToHTML"> - <enum-type name="Option" flags="Options" /> - </namespace-type> - <namespace-type name="KUrlMimeData"> - <enum-type name="DecodeOption" flags="DecodeOptions" /> - </namespace-type> - <object-type name="KUser"> - <enum-type name="UIDMode" /> - <enum-type name="UserProperty" /> - </object-type> - <object-type name="KUserGroup" /> - <object-type name="KUserId" /> - <object-type name="KWordMacroExpander" /> - -</typesystem> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/python/typesystem_kcoreaddons.xml new/kcoreaddons-6.14.0/python/typesystem_kcoreaddons.xml --- old/kcoreaddons-6.13.0/python/typesystem_kcoreaddons.xml 1970-01-01 01:00:00.000000000 +0100 +++ new/kcoreaddons-6.14.0/python/typesystem_kcoreaddons.xml 2025-05-02 16:16:38.000000000 +0200 @@ -0,0 +1,116 @@ +<?xml version="1.0"?> +<typesystem package="KCoreAddons"> +<!-- +SPDX-FileCopyrightText: 2024 Manuel Alcaraz Zambrano <manuelalcaraz...@gmail.com> +SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL +--> + <load-typesystem name="typesystem_core.xml" generate="no"/> + + <namespace-type name="KCoreAddons" /> + <namespace-type name="KFuzzyMatcher"> + <enum-type name="RangeType" /> + <value-type name="Range" /> + <value-type name="Result" /> + </namespace-type> + <namespace-type name="KProcessList"> + <object-type name="KProcessInfo" /> + </namespace-type> + <namespace-type name="KSandbox"> + <object-type name="ProcessContext" /> + <modify-function signature="startHostProcess(QProcess &, QFlags<QIODeviceBase::OpenModeFlag>)"> + <modify-argument index="2"> + <replace-default-expression with="QProcess::ReadWrite" /> + </modify-argument> + </modify-function> + </namespace-type> + <object-type name="KAboutComponent" /> + <object-type name="KAboutData" /> + <object-type name="KAboutLicense"> + <enum-type name="LicenseKey" /> + <enum-type name="NameFormat" /> + <enum-type name="VersionRestriction" /> + </object-type> + <object-type name="KAboutPerson" /> + <object-type name="KAutoSaveFile" /> + <namespace-type name="KBackup" /> + <object-type name="KCharMacroExpander" /> + <object-type name="KCompositeJob" /> + <object-type name="KDirWatch"> + <enum-type name="Method" /> + <enum-type name="WatchMode" flags="WatchModes" /> + </object-type> + <namespace-type name="KFileSystemType"> + <enum-type name="Type" /> + </namespace-type> + <namespace-type name="KFileUtils" /> + <object-type name="KFormat"> + <enum-type name="BinarySizeUnits" /> + <enum-type name="BinaryUnitDialect" /> + <enum-type name="DistanceFormatOption" flags="DistanceFormatOptions" /> + <enum-type name="DurationFormatOption" flags="DurationFormatOptions" /> + <enum-type name="Unit" /> + <enum-type name="UnitPrefix" /> + </object-type> + <object-type name="KGroupId" /> + <object-type name="KJob"> + <enum-type name="Capability" flags="Capabilities" /> + <enum-type name="KillVerbosity" /> + <enum-type name="Unit" /> + </object-type> + <object-type name="KJobTrackerInterface" /> + <object-type name="KJobUiDelegate"> + <enum-type name="Flag" flags="Flags" /> + </object-type> + <namespace-type name="KJsonUtils" /> + <namespace-type name="KLibexec" /> + <object-type name="KListOpenFilesJob"> + <enum-type name="Error" /> + </object-type> + <namespace-type name="KMacroExpander" /> + <object-type name="KMacroExpanderBase" /> + <object-type name="KMemoryInfo" /> + <object-type name="KNetworkMounts"> + <enum-type name="KNetworkMountOption" /> + <enum-type name="KNetworkMountsType" /> + </object-type> + <object-type name="KOSRelease" /> + <object-type name="KPluginFactory"> + <enum-type name="ResultErrorReason" /> + </object-type> + <object-type name="KPluginMetaData" hash-function="qHash"> + <enum-type name="KPluginMetaDataOption" flags="KPluginMetaDataOptions" /> + </object-type> + <object-type name="KProcess"> + <enum-type name="OutputChannelMode" /> + </object-type> + <namespace-type name="KRandom" /> + <namespace-type name="KRuntimePlatform" /> + <object-type name="KSharedDataCache"> + <enum-type name="EvictionPolicy" /> + </object-type> + <namespace-type name="KShell"> + <enum-type name="Errors" /> + <enum-type name="Option" flags="Options" /> + <modify-function signature="splitArgs(QString, KShell::Options, KShell::Errors*)"> + <modify-argument index="3"> + <remove-argument /> + </modify-argument> + </modify-function> + </namespace-type> + <object-type name="KSignalHandler" /> + <namespace-type name="KStringHandler" /> + <namespace-type name="KTextToHTML"> + <enum-type name="Option" flags="Options" /> + </namespace-type> + <namespace-type name="KUrlMimeData"> + <enum-type name="DecodeOption" flags="DecodeOptions" /> + </namespace-type> + <object-type name="KUser"> + <enum-type name="UIDMode" /> + <enum-type name="UserProperty" /> + </object-type> + <object-type name="KUserGroup" /> + <object-type name="KUserId" /> + <object-type name="KWordMacroExpander" /> + +</typesystem> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/src/mimetypes/kde6.xml new/kcoreaddons-6.14.0/src/mimetypes/kde6.xml --- old/kcoreaddons-6.13.0/src/mimetypes/kde6.xml 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/src/mimetypes/kde6.xml 2025-05-02 16:16:38.000000000 +0200 @@ -2218,7 +2218,7 @@ <comment xml:lang="eu">Geo Dk. irudia</comment> <comment xml:lang="fa">تصویر دکتر جئو</comment> <comment xml:lang="fi">Dr. Geo -kuvio</comment> - <comment xml:lang="fr">Figure pour « Dr. Geo »</comment> + <comment xml:lang="fr">Figure pour « Dr. Géo »</comment> <comment xml:lang="gl">Figura de Dr. Geo</comment> <comment xml:lang="he">דמות של Dr. Geo</comment> <comment xml:lang="hi">डॉ. जिओ आकृति</comment> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcoreaddons-6.13.0/src/qml/formats.cpp new/kcoreaddons-6.14.0/src/qml/formats.cpp --- old/kcoreaddons-6.13.0/src/qml/formats.cpp 2025-04-04 15:59:52.000000000 +0200 +++ new/kcoreaddons-6.14.0/src/qml/formats.cpp 2025-05-02 16:16:38.000000000 +0200 @@ -8,11 +8,9 @@ static void markCurrentFunctionAsTranslationBinding(const QObject *obj) { -#if QT_VERSION > QT_VERSION_CHECK(6, 6, 0) if (auto engine = qmlEngine(obj); engine) { engine->markCurrentFunctionAsTranslationBinding(); } -#endif } QString Formats::formatByteSize(double size, int precision) const