Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-kcodecs for openSUSE:Factory 
checked in at 2024-09-15 12:33:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kcodecs (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-kcodecs.new.29891 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-kcodecs"

Sun Sep 15 12:33:44 2024 rev:7 rq:1200999 version:6.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kcodecs/kf6-kcodecs.changes  2024-08-10 
19:09:58.067182315 +0200
+++ /work/SRC/openSUSE:Factory/.kf6-kcodecs.new.29891/kf6-kcodecs.changes       
2024-09-15 12:37:24.811053700 +0200
@@ -1,0 +2,12 @@
+Sat Sep  7 09:03:08 UTC 2024 - Christophe Marin <christo...@krop.fr>
+
+- Update to 6.6.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.6.0
+- Changes since 6.5.0:
+  * Update version to 6.6.0
+  * ci: add Alpine/musl job
+  * ensure we find test data on Windows
+
+-------------------------------------------------------------------

Old:
----
  kcodecs-6.5.0.tar.xz
  kcodecs-6.5.0.tar.xz.sig

New:
----
  kcodecs-6.6.0.tar.xz
  kcodecs-6.6.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kf6-kcodecs.spec ++++++
--- /var/tmp/diff_new_pack.yeIrBb/_old  2024-09-15 12:37:25.471081027 +0200
+++ /var/tmp/diff_new_pack.yeIrBb/_new  2024-09-15 12:37:25.471081027 +0200
@@ -19,13 +19,13 @@
 %define qt6_version 6.6.0
 
 %define rname   kcodecs
-# Full KF6 version (e.g. 6.5.0)
+# Full KF6 version (e.g. 6.6.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-kcodecs
-Version:        6.5.0
+Version:        6.6.0
 Release:        0
 Summary:        Method collection to manipulate strings using various encodings
 License:        LGPL-2.1-or-later


++++++ kcodecs-6.5.0.tar.xz -> kcodecs-6.6.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-6.5.0/.gitlab-ci.yml 
new/kcodecs-6.6.0/.gitlab-ci.yml
--- old/kcodecs-6.5.0/.gitlab-ci.yml    2024-08-02 13:12:03.000000000 +0200
+++ new/kcodecs-6.6.0/.gitlab-ci.yml    2024-09-06 13:36:14.000000000 +0200
@@ -9,3 +9,4 @@
       - /gitlab-templates/android-qt6.yml
       - /gitlab-templates/freebsd-qt6.yml
       - /gitlab-templates/windows-qt6.yml
+      - /gitlab-templates/alpine-qt6.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-6.5.0/CMakeLists.txt 
new/kcodecs-6.6.0/CMakeLists.txt
--- old/kcodecs-6.5.0/CMakeLists.txt    2024-08-02 13:12:03.000000000 +0200
+++ new/kcodecs-6.6.0/CMakeLists.txt    2024-09-06 13:36:14.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "6.5.0") # handled by release scripts
+set(KF_VERSION "6.6.0") # handled by release scripts
 project(KCodecs VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 6.5.0  NO_MODULE)
+find_package(ECM 6.6.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-6.5.0/autotests/codectest.cpp 
new/kcodecs-6.6.0/autotests/codectest.cpp
--- old/kcodecs-6.5.0/autotests/codectest.cpp   2024-08-02 13:12:03.000000000 
+0200
+++ new/kcodecs-6.6.0/autotests/codectest.cpp   2024-09-06 13:36:14.000000000 
+0200
@@ -29,7 +29,10 @@
     QTest::addColumn<QString>("tag");
     QTest::addColumn<Mode>("mode");
 
-    QDir codecBaseDir(QFINDTESTDATA("data"));
+    QString dataDir = QFINDTESTDATA("data/binary_data");
+    QVERIFY(!dataDir.isEmpty());
+    dataDir.chop(QByteArrayView("binary_data").size());
+    QDir codecBaseDir(dataDir);
     const QStringList lst = codecBaseDir.entryList(QStringList(), QDir::Dirs | 
QDir::NoDotAndDotDot, QDir::NoSort);
     for (const QString &dir : lst) {
         if (dir.toLower().startsWith(QLatin1String("codec_"))) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-6.5.0/autotests/kencodingprobertest.cpp 
new/kcodecs-6.6.0/autotests/kencodingprobertest.cpp
--- old/kcodecs-6.5.0/autotests/kencodingprobertest.cpp 2024-08-02 
13:12:03.000000000 +0200
+++ new/kcodecs-6.6.0/autotests/kencodingprobertest.cpp 2024-09-06 
13:36:14.000000000 +0200
@@ -63,8 +63,8 @@
     ep->reset();
 
     // binary data, just make sure we do not crash (cf. crash in bug #357341)
-    const QDir dataDir(QFINDTESTDATA("data"));
-    const QString binaryFile = dataDir.filePath(QStringLiteral("binary_data"));
+    const QString binaryFile = QFINDTESTDATA("data/binary_data");
+    QVERIFY(!binaryFile.isEmpty());
     QFile file(binaryFile);
     QVERIFY(file.open(QIODevice::ReadOnly));
     QByteArray binaryData(file.readAll());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcodecs-6.5.0/poqm/de/kcodecs6_qt.po 
new/kcodecs-6.6.0/poqm/de/kcodecs6_qt.po
--- old/kcodecs-6.5.0/poqm/de/kcodecs6_qt.po    2024-08-02 13:12:03.000000000 
+0200
+++ new/kcodecs-6.6.0/poqm/de/kcodecs6_qt.po    2024-09-06 13:36:14.000000000 
+0200
@@ -11,7 +11,7 @@
 # Rolf Eike Beer <k...@opensource.sf-tec.de>, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: kcodecs6_qt\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
 "PO-Revision-Date: 2020-09-17 09:46+0200\n"

Reply via email to