Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kcodecs for openSUSE:Factory checked in at 2024-01-15 22:12:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcodecs (Old) and /work/SRC/openSUSE:Factory/.kcodecs.new.21961 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcodecs" Mon Jan 15 22:12:04 2024 rev:123 rq:1138896 version:5.114.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kcodecs/kcodecs.changes 2023-12-17 21:31:10.783088435 +0100 +++ /work/SRC/openSUSE:Factory/.kcodecs.new.21961/kcodecs.changes 2024-01-15 22:14:03.847502136 +0100 @@ -1,0 +2,11 @@ +Sat Jan 13 11:21:22 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 5.114.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.114.0 +- Changes since 5.113.0: + * KEmailAddress: Add autotests for improved whitespace trimming + * KEmailAddress: Only trim surrounding whitespace between E-Mail addresses instead of also replacing all whitespace within E-Mail address names with a single ASCII space + +------------------------------------------------------------------- Old: ---- kcodecs-5.113.0.tar.xz kcodecs-5.113.0.tar.xz.sig New: ---- kcodecs-5.114.0.tar.xz kcodecs-5.114.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcodecs.spec ++++++ --- /var/tmp/diff_new_pack.gYa6OB/_old 2024-01-15 22:14:05.547564248 +0100 +++ /var/tmp/diff_new_pack.gYa6OB/_new 2024-01-15 22:14:05.559564687 +0100 @@ -24,7 +24,7 @@ %define qt5_version 5.15.2 %bcond_without released Name: kcodecs -Version: 5.113.0 +Version: 5.114.0 Release: 0 Summary: Method collection to manipulate strings using various encodings License: LGPL-2.1-or-later ++++++ kcodecs-5.113.0.tar.xz -> kcodecs-5.114.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/.gitlab-ci.yml new/kcodecs-5.114.0/.gitlab-ci.yml --- old/kcodecs-5.113.0/.gitlab-ci.yml 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/.gitlab-ci.yml 2024-01-06 09:50:44.000000000 +0100 @@ -2,9 +2,11 @@ # SPDX-License-Identifier: CC0-1.0 include: - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux.yml - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-static.yml - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android.yml - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd.yml - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml - - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows-static.yml + - project: sysadmin/ci-utilities + file: + - /gitlab-templates/linux.yml + - /gitlab-templates/linux-static.yml + - /gitlab-templates/android.yml + - /gitlab-templates/freebsd.yml + - /gitlab-templates/windows.yml + - /gitlab-templates/windows-static.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/CMakeLists.txt new/kcodecs-5.114.0/CMakeLists.txt --- old/kcodecs-5.113.0/CMakeLists.txt 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/CMakeLists.txt 2024-01-06 09:50:44.000000000 +0100 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.113.0") # handled by release scripts +set(KF_VERSION "5.114.0") # handled by release scripts project(KCodecs VERSION ${KF_VERSION}) include(FeatureSummary) -find_package(ECM 5.113.0 NO_MODULE) +find_package(ECM 5.114.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/kcodecs-5.113.0/autotests/kemailaddresstest.cpp new/kcodecs-5.114.0/autotests/kemailaddresstest.cpp --- old/kcodecs-5.113.0/autotests/kemailaddresstest.cpp 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/autotests/kemailaddresstest.cpp 2024-01-06 09:50:44.000000000 +0100 @@ -481,6 +481,15 @@ << (QStringList() << QStringLiteral("\"Matt, Douhan\" <m...@fruitsalad.org>") << QStringLiteral("Foo Bar <f...@bar.com>")); QTest::newRow("") << "\"Lastname\\, Firstname\" <firstname.lastn...@example.com>" << (QStringList() << QStringLiteral("\"Lastname\\, Firstname\" <firstname.lastn...@example.com>")); + QTest::newRow("") << "FirstâCollectiveâLast <collectivename.lastn...@example.com>" // Uses non-ASCII spacing + << (QStringList() << QStringLiteral("FirstâCollectiveâLast <collectivename.lastn...@example.com>")); + QTest::newRow("") << "Foo Bar <f...@bar.com>, FirstâCollectiveâLast <collectivename.lastn...@example.com>" // Uses non-ASCII spacing + << (QStringList() << QStringLiteral("Foo Bar <f...@bar.com>") + << QStringLiteral("FirstâCollectiveâLast <collectivename.lastn...@example.com>")); + QTest::newRow("") + << "Foo Bar <f...@bar.com>, \" First Collective Last \" <collectivename.lastn...@example.com>" // Uses multiple and quoted surrounding spaces + << (QStringList() << QStringLiteral("Foo Bar <f...@bar.com>") + << QStringLiteral("\" First Collective Last \" <collectivename.lastn...@example.com>")); } void KEmailAddressTest::testNormalizeAddressesAndEncodeIDNs() @@ -508,6 +517,14 @@ << "\"jongel,fibbel\" <m...@fruitsalad.org>"; QTest::newRow("") << "m...@fruitsalad.org (\"jongel,fibbel\")" << "\"jongel,fibbel\" <m...@fruitsalad.org>"; + + QTest::newRow("") << "FirstâCollectiveâLast <collectivename.lastn...@example.com>" // Uses non-ASCII spacing + << "FirstâCollectiveâLast <collectivename.lastn...@example.com>"; + QTest::newRow("") << "Foo Bar <f...@bar.com> , FirstâCollectiveâLast <collectivename.lastn...@example.com>" // Uses non-ASCII spacing + << "Foo Bar <f...@bar.com>, FirstâCollectiveâLast <collectivename.lastn...@example.com>"; + QTest::newRow("") + << "Foo Bar <f...@bar.com>, \" First Collective Last \" <collectivename.lastn...@example.com>" // Uses multiple and quoted surrounding spaces + << "Foo Bar <f...@bar.com>, \" First Collective Last \" <collectivename.lastn...@example.com>"; } void KEmailAddressTest::testNormalizeAddressesAndDecodeIDNs() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/poqm/fr/kcodecs5_qt.po new/kcodecs-5.114.0/poqm/fr/kcodecs5_qt.po --- old/kcodecs-5.113.0/poqm/fr/kcodecs5_qt.po 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/poqm/fr/kcodecs5_qt.po 2024-01-06 09:50:44.000000000 +0100 @@ -17,7 +17,7 @@ # Joëlle Cornavin <jc...@free.fr>, 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Sebastien Renard <ren...@kde.org>, 2013, 2014. # Vincent Pinon <vpi...@kde.org>, 2016. -# Xavier Besnard <xavier.besn...@neuf.fr>, 2020, 2021. +# Xavier Besnard <xavier.besn...@kde.org>, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/poqm/tr/kcodecs5_qt.po new/kcodecs-5.114.0/poqm/tr/kcodecs5_qt.po --- old/kcodecs-5.113.0/poqm/tr/kcodecs5_qt.po 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/poqm/tr/kcodecs5_qt.po 2024-01-06 09:50:44.000000000 +0100 @@ -17,13 +17,13 @@ # Serdar SOYTETİR <tulli...@gmail.com>, 2010, 2012. # Volkan Gezer <volkange...@gmail.com>, 2013, 2014. # Kaan Ozdincer <kaanozdin...@gmail.com>, 2014. -# Emir SARI <emir_s...@icloud.com>, 2022. +# Emir SARI <emir_s...@icloud.com>, 2022, 2023. 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: 2022-12-11 12:35+0300\n" +"PO-Revision-Date: 2023-12-03 13:07+0300\n" "Last-Translator: Emir SARI <emir_s...@icloud.com>\n" "Language-Team: Turkish <kde-l10n...@kde.org>\n" "Language: tr\n" @@ -31,7 +31,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 22.12.0\n" +"X-Generator: Lokalize 23.11.70\n" "X-Qt-Contexts: true\n" #: kcharsets.cpp:155 @@ -170,7 +170,8 @@ "The email address you entered is not valid because it does not contain a " "domain part." msgstr "" -"GirdiÄiniz e-posta adresi bir alan adı bölümü içermediÄi için geçerli deÄil." +"GirdiÄiniz e-posta adresi bir etki alanı bölümü içermediÄi için geçerli " +"deÄil." #: kemailaddress.cpp:525 msgctxt "QObject|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/poqm/zh_CN/kcodecs5_qt.po new/kcodecs-5.114.0/poqm/zh_CN/kcodecs5_qt.po --- old/kcodecs-5.113.0/poqm/zh_CN/kcodecs5_qt.po 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/poqm/zh_CN/kcodecs5_qt.po 2024-01-06 09:50:44.000000000 +0100 @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2023-11-25 02:29\n" +"PO-Revision-Date: 2023-12-30 13:41\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcodecs-5.113.0/src/kemailaddress.cpp new/kcodecs-5.114.0/src/kemailaddress.cpp --- old/kcodecs-5.113.0/src/kemailaddress.cpp 2023-12-02 10:24:29.000000000 +0100 +++ new/kcodecs-5.114.0/src/kemailaddress.cpp 2024-01-06 09:50:44.000000000 +0100 @@ -65,7 +65,7 @@ if (!insidequote && (commentlevel == 0)) { addr = aStr.mid(addrstart, index - addrstart); if (!addr.isEmpty()) { - list += addr.simplified(); + list += addr.trimmed(); } addrstart = index + 1; } @@ -76,7 +76,7 @@ if (!insidequote && (commentlevel == 0)) { addr = aStr.mid(addrstart, aStr.length() - addrstart); if (!addr.isEmpty()) { - list += addr.simplified(); + list += addr.trimmed(); } }