Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-kservice for openSUSE:Factory checked in at 2026-04-11 22:24:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kservice (Old) and /work/SRC/openSUSE:Factory/.kf6-kservice.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kservice" Sat Apr 11 22:24:20 2026 rev:27 rq:1345909 version:6.25.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kservice/kf6-kservice.changes 2026-03-16 14:18:40.036618464 +0100 +++ /work/SRC/openSUSE:Factory/.kf6-kservice.new.21863/kf6-kservice.changes 2026-04-11 22:28:34.893806824 +0200 @@ -1,0 +2,14 @@ +Tue Apr 7 19:19:25 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 + * Bump sycoca version after changing the hash + * Extract to variable + * Fix a typo in the bitmask used in the hash + * Update version to 6.25.0 + +------------------------------------------------------------------- Old: ---- kservice-6.24.0.tar.xz kservice-6.24.0.tar.xz.sig New: ---- kservice-6.25.0.tar.xz kservice-6.25.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kservice.spec ++++++ --- /var/tmp/diff_new_pack.06LzOM/_old 2026-04-11 22:28:35.481830908 +0200 +++ /var/tmp/diff_new_pack.06LzOM/_new 2026-04-11 22:28:35.481830908 +0200 @@ -19,11 +19,11 @@ %define qt6_version 6.8.0 %define rname kservice -# 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-kservice -Version: 6.24.0 +Version: 6.25.0 Release: 0 Summary: Plugin framework for desktop services License: LGPL-2.1-or-later ++++++ kservice-6.24.0.tar.xz -> kservice-6.25.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kservice-6.24.0/CMakeLists.txt new/kservice-6.25.0/CMakeLists.txt --- old/kservice-6.24.0/CMakeLists.txt 2026-03-07 21:32:35.000000000 +0100 +++ new/kservice-6.25.0/CMakeLists.txt 2026-04-03 19:11:15.000000000 +0200 @@ -1,7 +1,7 @@ -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(KService VERSION ${KF_VERSION}) # Disallow in-source build @@ -11,7 +11,7 @@ # 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) @@ -38,7 +38,7 @@ SOVERSION 6) # Dependencies -set(REQUIRED_QT_VERSION 6.8.0) +set(REQUIRED_QT_VERSION 6.9.0) find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Xml) find_package(KF6Config ${KF_DEP_VERSION} CONFIG REQUIRED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kservice-6.24.0/src/sycoca/ksycoca.cpp new/kservice-6.25.0/src/sycoca/ksycoca.cpp --- old/kservice-6.24.0/src/sycoca/ksycoca.cpp 2026-03-07 21:32:35.000000000 +0100 +++ new/kservice-6.25.0/src/sycoca/ksycoca.cpp 2026-04-03 19:11:15.000000000 +0200 @@ -48,7 +48,7 @@ * However running apps should still be able to read it, so * only add to the data, never remove/modify. */ -#define KSYCOCA_VERSION 306 +#define KSYCOCA_VERSION 307 #if HAVE_MADVISE || HAVE_MMAP #include <sys/mman.h> // This #include was checked when looking for posix_madvise diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kservice-6.24.0/src/sycoca/ksycocadict.cpp new/kservice-6.25.0/src/sycoca/ksycocadict.cpp --- old/kservice-6.24.0/src/sycoca/ksycocadict.cpp 2026-03-07 21:32:35.000000000 +0100 +++ new/kservice-6.25.0/src/sycoca/ksycocadict.cpp 2026-04-03 19:11:15.000000000 +0200 @@ -17,6 +17,8 @@ namespace { +static const uint s_hashBitMask = 0x3fffffff; + struct string_entry { string_entry(const QString &_key, const KSycocaEntry::Ptr &_payload) : hash(0) @@ -219,12 +221,12 @@ } else if (pos < 0) { pos = -pos; if (pos < len) { - h = ((h * 13) + (key[len - pos].cell() % 29)) & 0x3ffffff; + h = ((h * 13) + (key[len - pos].cell() % 29)) & s_hashBitMask; } } else { pos = pos - 1; if (pos < len) { - h = ((h * 13) + (key[pos].cell() % 29)) & 0x3ffffff; + h = ((h * 13) + (key[pos].cell() % 29)) & s_hashBitMask; } } } @@ -262,7 +264,7 @@ for (const auto &entryPtr : *stringlist) { const int rpos = entryPtr->length - pos; if (rpos > 0) { - const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & 0x3ffffff; + const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & s_hashBitMask; matrix.setBit(hash % sz, true); } // if (++numItem == s_maxItems) @@ -272,7 +274,7 @@ pos = inPos - 1; for (const auto &entryPtr : *stringlist) { if (pos < entryPtr->length) { - const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & 0x3ffffff; + const uint hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & s_hashBitMask; matrix.setBit(hash % sz, true); } // if (++numItem == s_maxItems) @@ -295,14 +297,14 @@ for (auto &entryPtr : *stringlist) { const int rpos = entryPtr->length - pos; if (rpos > 0) { - entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & 0x3fffffff; + entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[rpos].cell() % 29)) & s_hashBitMask; } } } else { pos = pos - 1; for (auto &entryPtr : *stringlist) { if (pos < entryPtr->length) { - entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & 0x3fffffff; + entryPtr->hash = ((entryPtr->hash * 13) + (entryPtr->key[pos].cell() % 29)) & s_hashBitMask; } } }
