Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kf6-kiconthemes for openSUSE:Factory
checked in at 2026-02-16 13:02:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kiconthemes (Old)
and /work/SRC/openSUSE:Factory/.kf6-kiconthemes.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kiconthemes"
Mon Feb 16 13:02:16 2026 rev:24 rq:1332932 version:6.23.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kiconthemes/kf6-kiconthemes.changes
2026-01-12 10:15:49.255923931 +0100
+++
/work/SRC/openSUSE:Factory/.kf6-kiconthemes.new.1977/kf6-kiconthemes.changes
2026-02-16 13:05:29.024482742 +0100
@@ -1,0 +2,15 @@
+Fri Feb 6 14:25:52 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.23.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.23.0
+- Changes since 6.22.0:
+ * Update dependency version to 6.23.0
+ * kicontheme.cpp edit comment Q_COREAPP_STARTUP_FUNCTION is not above
+ * Enable LSAN in CI
+ * kiconengine: clean old Qt version check
+ * KIconTheme: Prefer SVG files over PNG files (kde#502273)
+ * Update version to 6.23.0
+
+-------------------------------------------------------------------
Old:
----
kiconthemes-6.22.0.tar.xz
kiconthemes-6.22.0.tar.xz.sig
New:
----
kiconthemes-6.23.0.tar.xz
kiconthemes-6.23.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-kiconthemes.spec ++++++
--- /var/tmp/diff_new_pack.vOGpwT/_old 2026-02-16 13:05:30.228532650 +0100
+++ /var/tmp/diff_new_pack.vOGpwT/_new 2026-02-16 13:05:30.232532815 +0100
@@ -19,11 +19,11 @@
%define qt6_version 6.8.0
%define rname kiconthemes
-# Full KF6 version (e.g. 6.22.0)
+# Full KF6 version (e.g. 6.23.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-kiconthemes
-Version: 6.22.0
+Version: 6.23.0
Release: 0
Summary: Icon GUI utilities
License: LGPL-2.1-or-later AND GPL-2.0-or-later
++++++ kiconthemes-6.22.0.tar.xz -> kiconthemes-6.23.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.22.0/.kde-ci.yml
new/kiconthemes-6.23.0/.kde-ci.yml
--- old/kiconthemes-6.22.0/.kde-ci.yml 2026-01-02 18:42:12.000000000 +0100
+++ new/kiconthemes-6.23.0/.kde-ci.yml 2026-02-06 13:14:45.000000000 +0100
@@ -15,3 +15,4 @@
Options:
test-before-installing: True
require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows', 'Android']
+ enable-lsan: True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.22.0/CMakeLists.txt
new/kiconthemes-6.23.0/CMakeLists.txt
--- old/kiconthemes-6.22.0/CMakeLists.txt 2026-01-02 18:42:12.000000000
+0100
+++ new/kiconthemes-6.23.0/CMakeLists.txt 2026-02-06 13:14:45.000000000
+0100
@@ -1,12 +1,12 @@
-cmake_minimum_required(VERSION 3.16)
+cmake_minimum_required(VERSION 3.27)
-set(KF_VERSION "6.22.0") # handled by release scripts
-set(KF_DEP_VERSION "6.22.0") # handled by release scripts
+set(KF_VERSION "6.23.0") # handled by release scripts
+set(KF_DEP_VERSION "6.23.0") # handled by release scripts
project(KIconThemes VERSION ${KF_VERSION})
# ECM setup
include(FeatureSummary)
-find_package(ECM 6.22.0 NO_MODULE)
+find_package(ECM 6.23.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/kiconthemes-6.22.0/src/kiconengine.cpp
new/kiconthemes-6.23.0/src/kiconengine.cpp
--- old/kiconthemes-6.22.0/src/kiconengine.cpp 2026-01-02 18:42:12.000000000
+0100
+++ new/kiconthemes-6.23.0/src/kiconengine.cpp 2026-02-06 13:14:45.000000000
+0100
@@ -13,7 +13,6 @@
#include "kiconcolors.h"
#include <KIconTheme>
#include <QFileInfo>
-#include <QLibraryInfo>
#include <QPainter>
#include <qscopeguard.h>
@@ -150,12 +149,7 @@
QPixmap KIconEngine::scaledPixmap(const QSize &size, QIcon::Mode mode,
QIcon::State state, qreal scale)
{
- // Since https://codereview.qt-project.org/c/qt/qtbase/+/563553 size is in
logical pixels
- if (QLibraryInfo::version() >= QVersionNumber(6, 8, 0)) {
- return createPixmap(size, scale, mode, state);
- } else {
- return createPixmap(size / scale, scale, mode, state);
- }
+ return createPixmap(size, scale, mode, state);
}
QString KIconEngine::iconName()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.22.0/src/kicontheme.cpp
new/kiconthemes-6.23.0/src/kicontheme.cpp
--- old/kiconthemes-6.22.0/src/kicontheme.cpp 2026-01-02 18:42:12.000000000
+0100
+++ new/kiconthemes-6.23.0/src/kicontheme.cpp 2026-02-06 13:14:45.000000000
+0100
@@ -135,7 +135,7 @@
}
}
- // initThemeHelper will do the remaining work via
Q_COREAPP_STARTUP_FUNCTION(initThemeHelper) above
+ // initThemeHelper will do the remaining work via
Q_COREAPP_STARTUP_FUNCTION(initThemeHelper)
initThemeUsed = true;
}
@@ -436,7 +436,7 @@
d->example = cfg.readPathEntry("Example", QString());
d->screenshot = cfg.readPathEntry("ScreenShot", QString());
d->mExtensions =
- cfg.readEntry("KDE-Extensions", QStringList{QStringLiteral(".png"),
QStringLiteral(".svgz"), QStringLiteral(".svg"), QStringLiteral(".xpm")});
+ cfg.readEntry("KDE-Extensions", QStringList{QStringLiteral(".svgz"),
QStringLiteral(".svg"), QStringLiteral(".png"), QStringLiteral(".xpm")});
QSet<QString> addedDirs; // Used for avoiding duplicates.
const QStringList dirs = cfg.readPathEntry("Directories", QStringList()) +
cfg.readPathEntry("ScaledDirectories", QStringList());