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-04-11 22:24:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kiconthemes (Old)
and /work/SRC/openSUSE:Factory/.kf6-kiconthemes.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kiconthemes"
Sat Apr 11 22:24:06 2026 rev:26 rq:1345891 version:6.25.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kiconthemes/kf6-kiconthemes.changes
2026-03-16 14:18:12.591459687 +0100
+++
/work/SRC/openSUSE:Factory/.kf6-kiconthemes.new.21863/kf6-kiconthemes.changes
2026-04-11 22:28:06.116628198 +0200
@@ -1,0 +2,14 @@
+Tue Apr 7 19:19:07 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.25.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.25.0
+- Changes since 6.24.0:
+ * Update dependency version to 6.25.0
+ * Explain why SVG preference was reverted
+ * Don't try to create KIconTheme with empty theme name
+ * Revert "KIconTheme: Prefer SVG files over PNG files" (kde#516007)
+ * Update version to 6.25.0
+
+-------------------------------------------------------------------
Old:
----
kiconthemes-6.24.0.tar.xz
kiconthemes-6.24.0.tar.xz.sig
New:
----
kiconthemes-6.25.0.tar.xz
kiconthemes-6.25.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-kiconthemes.spec ++++++
--- /var/tmp/diff_new_pack.1hVMiR/_old 2026-04-11 22:28:06.696651954 +0200
+++ /var/tmp/diff_new_pack.1hVMiR/_new 2026-04-11 22:28:06.696651954 +0200
@@ -19,11 +19,11 @@
%define qt6_version 6.8.0
%define rname kiconthemes
-# Full KF6 version (e.g. 6.24.0)
+# Full KF6 version (e.g. 6.25.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-kiconthemes
-Version: 6.24.0
+Version: 6.25.0
Release: 0
Summary: Icon GUI utilities
License: LGPL-2.1-or-later AND GPL-2.0-or-later
++++++ kiconthemes-6.24.0.tar.xz -> kiconthemes-6.25.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.24.0/CMakeLists.txt
new/kiconthemes-6.25.0/CMakeLists.txt
--- old/kiconthemes-6.24.0/CMakeLists.txt 2026-03-07 21:30:51.000000000
+0100
+++ new/kiconthemes-6.25.0/CMakeLists.txt 2026-04-03 19:09:18.000000000
+0200
@@ -1,12 +1,12 @@
-cmake_minimum_required(VERSION 3.27)
+cmake_minimum_required(VERSION 3.29)
-set(KF_VERSION "6.24.0") # handled by release scripts
-set(KF_DEP_VERSION "6.24.0") # handled by release scripts
+set(KF_VERSION "6.25.0") # handled by release scripts
+set(KF_DEP_VERSION "6.25.0") # handled by release scripts
project(KIconThemes VERSION ${KF_VERSION})
# ECM setup
include(FeatureSummary)
-find_package(ECM 6.24.0 NO_MODULE)
+find_package(ECM 6.25.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)
@@ -42,7 +42,7 @@
SOVERSION 6)
# Dependencies
-set(REQUIRED_QT_VERSION 6.8.0)
+set(REQUIRED_QT_VERSION 6.9.0)
find_package(Qt6Widgets ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
find_package(Qt6Svg ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.24.0/src/kiconloader.cpp
new/kiconthemes-6.25.0/src/kiconloader.cpp
--- old/kiconthemes-6.24.0/src/kiconloader.cpp 2026-03-07 21:30:51.000000000
+0100
+++ new/kiconthemes-6.25.0/src/kiconloader.cpp 2026-04-03 19:09:18.000000000
+0200
@@ -515,7 +515,11 @@
// present in an inherited theme, and hicolor goes last.
addInheritedThemes(node, appname);
- addThemeByName(QIcon::fallbackThemeName(), appname);
+
+ if (!QIcon::fallbackThemeName().isEmpty()) {
+ addThemeByName(QIcon::fallbackThemeName(), appname);
+ }
+
addThemeByName(QStringLiteral("hicolor"), appname);
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kiconthemes-6.24.0/src/kicontheme.cpp
new/kiconthemes-6.25.0/src/kicontheme.cpp
--- old/kiconthemes-6.24.0/src/kicontheme.cpp 2026-03-07 21:30:51.000000000
+0100
+++ new/kiconthemes-6.25.0/src/kicontheme.cpp 2026-04-03 19:09:18.000000000
+0200
@@ -337,6 +337,11 @@
KIconTheme::KIconTheme(const QString &name, const QString &appName, const
QString &basePathHint)
: d(new KIconThemePrivate)
{
+ if (name.isEmpty()) {
+ qCWarning(KICONTHEMES) << "KIconTheme created with empty theme name";
+ return;
+ }
+
d->mInternalName = name;
QStringList themeDirs;
@@ -410,7 +415,7 @@
}
if (d->mDir.isEmpty()) {
- qCDebug(KICONTHEMES) << "Icon theme" << name << "not found.";
+ qCWarning(KICONTHEMES) << "Icon theme" << name << "not found.";
return;
}
@@ -435,8 +440,9 @@
d->followsColorScheme = cfg.readEntry("FollowsColorScheme", false);
d->example = cfg.readPathEntry("Example", QString());
d->screenshot = cfg.readPathEntry("ScreenShot", QString());
+ // Prefer png due to svg support being incomplete — QTBUG-115223
d->mExtensions =
- cfg.readEntry("KDE-Extensions", QStringList{QStringLiteral(".svgz"),
QStringLiteral(".svg"), QStringLiteral(".png"), QStringLiteral(".xpm")});
+ cfg.readEntry("KDE-Extensions", QStringList{QStringLiteral(".png"),
QStringLiteral(".svgz"), QStringLiteral(".svg"), QStringLiteral(".xpm")});
QSet<QString> addedDirs; // Used for avoiding duplicates.
const QStringList dirs = cfg.readPathEntry("Directories", QStringList()) +
cfg.readPathEntry("ScaledDirectories", QStringList());