Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-solid for openSUSE:Factory checked in at 2026-04-11 22:24:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-solid (Old) and /work/SRC/openSUSE:Factory/.kf6-solid.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-solid" Sat Apr 11 22:24:35 2026 rev:27 rq:1345926 version:6.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-solid/kf6-solid.changes 2026-03-16 14:19:07.165744657 +0100 +++ /work/SRC/openSUSE:Factory/.kf6-solid.new.21863/kf6-solid.changes 2026-04-11 22:29:08.659188412 +0200 @@ -1,0 +2,12 @@ +Tue Apr 7 19:19:40 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 + * fstab: Use qCCritical instead of qCritical + * Update version to 6.25.0 + +------------------------------------------------------------------- Old: ---- solid-6.24.0.tar.xz solid-6.24.0.tar.xz.sig New: ---- solid-6.25.0.tar.xz solid-6.25.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-solid.spec ++++++ --- /var/tmp/diff_new_pack.UwmGkh/_old 2026-04-11 22:29:09.175209517 +0200 +++ /var/tmp/diff_new_pack.UwmGkh/_new 2026-04-11 22:29:09.175209517 +0200 @@ -21,7 +21,7 @@ %define rname solid %bcond_without released Name: kf6-solid -Version: 6.24.0 +Version: 6.25.0 Release: 0 Summary: KDE Desktop hardware abstraction License: LGPL-2.1-or-later ++++++ solid-6.24.0.tar.xz -> solid-6.25.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-6.24.0/CMakeLists.txt new/solid-6.25.0/CMakeLists.txt --- old/solid-6.24.0/CMakeLists.txt 2026-03-07 21:33:49.000000000 +0100 +++ new/solid-6.25.0/CMakeLists.txt 2026-04-03 19:12:40.000000000 +0200 @@ -1,10 +1,10 @@ -cmake_minimum_required(VERSION 3.27) +cmake_minimum_required(VERSION 3.29) -set(KF_VERSION "6.24.0") # handled by release scripts +set(KF_VERSION "6.25.0") # handled by release scripts project(Solid VERSION ${KF_VERSION}) 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) @@ -20,7 +20,7 @@ include(ECMDeprecationSettings) include(ECMGenerateQDoc) -set(REQUIRED_QT_VERSION 6.8.0) +set(REQUIRED_QT_VERSION 6.9.0) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Xml Gui) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/solid-6.24.0/src/solid/devices/backends/fstab/fstabwatcher.cpp new/solid-6.25.0/src/solid/devices/backends/fstab/fstabwatcher.cpp --- old/solid-6.24.0/src/solid/devices/backends/fstab/fstabwatcher.cpp 2026-03-07 21:33:49.000000000 +0100 +++ new/solid-6.25.0/src/solid/devices/backends/fstab/fstabwatcher.cpp 2026-04-03 19:12:40.000000000 +0200 @@ -31,7 +31,7 @@ auto mountMonitor = mnt_new_monitor(); if (!mountMonitor) { - qCritical(FSTAB_LOG) << "could not start mount monitor"; + qCCritical(FSTAB_LOG) << "could not start mount monitor"; return; } m_mountMonitor = mountMonitor; @@ -39,19 +39,19 @@ auto r = mnt_monitor_enable_kernel(m_mountMonitor, true); if (r < 0) { mnt_unref_monitor(m_mountMonitor); - qCritical(FSTAB_LOG) << "Failed to enable watching of kernel mount events:" << strerror(errno); + qCCritical(FSTAB_LOG) << "Failed to enable watching of kernel mount events:" << strerror(errno); } r = mnt_monitor_enable_userspace(m_mountMonitor, true, NULL); if (r < 0) { mnt_unref_monitor(m_mountMonitor); - qCritical(FSTAB_LOG) << "Failed to enable watching of userspace mount events:" << strerror(errno); + qCCritical(FSTAB_LOG) << "Failed to enable watching of userspace mount events:" << strerror(errno); } auto fd = mnt_monitor_get_fd(m_mountMonitor); if (fd < 0) { mnt_unref_monitor(m_mountMonitor); - qCritical(FSTAB_LOG) << "Failed to acquire watch file descriptor" << strerror(errno); + qCCritical(FSTAB_LOG) << "Failed to acquire watch file descriptor" << strerror(errno); m_mountMonitor = nullptr; return; }
