Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-ki18n for openSUSE:Factory checked in at 2025-01-12 11:13:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-ki18n (Old) and /work/SRC/openSUSE:Factory/.kf6-ki18n.new.1881 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-ki18n" Sun Jan 12 11:13:07 2025 rev:12 rq:1236624 version:6.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-ki18n/kf6-ki18n.changes 2024-12-15 12:38:40.989943801 +0100 +++ /work/SRC/openSUSE:Factory/.kf6-ki18n.new.1881/kf6-ki18n.changes 2025-01-12 11:18:37.573463461 +0100 @@ -1,0 +2,12 @@ +Thu Jan 9 17:12:30 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 6.10.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.10.0 +- Changes since 6.9.0: + * Update dependency version to 6.10.0 + * Add context to missing argument warnings in i18n QML calls + * Update version to 6.10.0 + +------------------------------------------------------------------- Old: ---- ki18n-6.9.0.tar.xz ki18n-6.9.0.tar.xz.sig New: ---- ki18n-6.10.0.tar.xz ki18n-6.10.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-ki18n.spec ++++++ --- /var/tmp/diff_new_pack.MqCEaS/_old 2025-01-12 11:18:38.889517594 +0100 +++ /var/tmp/diff_new_pack.MqCEaS/_new 2025-01-12 11:18:38.893517758 +0100 @@ -25,7 +25,7 @@ %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-ki18n -Version: 6.9.0 +Version: 6.10.0 Release: 0 Summary: KDE Gettext-based UI text internationalization License: LGPL-2.1-or-later ++++++ ki18n-6.9.0.tar.xz -> ki18n-6.10.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ki18n-6.9.0/CMakeLists.txt new/ki18n-6.10.0/CMakeLists.txt --- old/ki18n-6.9.0/CMakeLists.txt 2024-12-06 12:51:46.000000000 +0100 +++ new/ki18n-6.10.0/CMakeLists.txt 2025-01-03 16:26:31.000000000 +0100 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.9.0") # handled by release scripts +set(KF_VERSION "6.10.0") # handled by release scripts project(KI18n VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 6.9.0 NO_MODULE) +find_package(ECM 6.10.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/ki18n-6.9.0/po/sa/ki18n6.po new/ki18n-6.10.0/po/sa/ki18n6.po --- old/ki18n-6.9.0/po/sa/ki18n6.po 2024-12-06 12:51:46.000000000 +0100 +++ new/ki18n-6.10.0/po/sa/ki18n6.po 2025-01-03 16:26:31.000000000 +0100 @@ -10,7 +10,7 @@ "POT-Creation-Date: 2023-10-25 01:48+0000\n" "PO-Revision-Date: 2023-10-01 12:51+0530\n" "Last-Translator: \n" -"Language-Team: Sanskrit\n" +"Language-Team: Sanskrit <kde-i18n-...@kde.org>\n" "Language: sa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ki18n-6.9.0/src/i18n-qml/klocalizedqmlcontext.cpp new/ki18n-6.10.0/src/i18n-qml/klocalizedqmlcontext.cpp --- old/ki18n-6.9.0/src/i18n-qml/klocalizedqmlcontext.cpp 2024-12-06 12:51:46.000000000 +0100 +++ new/ki18n-6.10.0/src/i18n-qml/klocalizedqmlcontext.cpp 2025-01-03 16:26:32.000000000 +0100 @@ -176,7 +176,7 @@ const QVariant ¶m10) const { if (context.isEmpty() || message.isEmpty()) { - qCWarning(KI18N) << "i18nc() needs at least two arguments"; + qCWarning(KI18N).noquote().nospace() << "i18nc(\"" << context << message << "\") needs at least two arguments"; return QString(); } @@ -207,7 +207,7 @@ const QVariant ¶m10) const { if (singular.isEmpty() || plural.isEmpty()) { - qCWarning(KI18N) << "i18np() needs at least two arguments"; + qCWarning(KI18N).noquote().nospace() << "i18np(\"" << singular << plural << "\") needs at least two arguments"; return QString(); } @@ -273,7 +273,7 @@ const QVariant ¶m10) const { if (domain.isEmpty() || message.isEmpty()) { - qCWarning(KI18N) << "i18nd() needs at least two parameters"; + qCWarning(KI18N).noquote().nospace() << "i18nd(\"" << domain << message << "\") needs at least two parameters"; return QString(); } @@ -416,7 +416,7 @@ const QVariant ¶m10) const { if (context.isEmpty() || message.isEmpty()) { - qCWarning(KI18N) << "xi18nc() needs at least two arguments"; + qCWarning(KI18N).noquote().nospace() << "xi18nc(\"" << context << message << "\") needs at least two arguments"; return QString(); } @@ -447,7 +447,7 @@ const QVariant ¶m10) const { if (singular.isEmpty() || plural.isEmpty()) { - qCWarning(KI18N) << "xi18np() needs at least two arguments"; + qCWarning(KI18N).noquote().nospace() << "xi18np(\"" << singular << plural << "\") needs at least two arguments"; return QString(); } @@ -513,7 +513,7 @@ const QVariant ¶m10) const { if (domain.isEmpty() || message.isEmpty()) { - qCWarning(KI18N) << "xi18nd() needs at least two parameters"; + qCWarning(KI18N).noquote().nospace() << "xi18nd(\"" << domain << message << "\") needs at least two parameters"; return QString(); }