Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-sonnet for openSUSE:Factory checked in at 2025-05-12 16:45:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-sonnet (Old) and /work/SRC/openSUSE:Factory/.kf6-sonnet.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-sonnet" Mon May 12 16:45:11 2025 rev:15 rq:1276413 version:6.14.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-sonnet/kf6-sonnet.changes 2025-04-15 16:47:17.726594855 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-sonnet.new.30101/kf6-sonnet.changes 2025-05-12 16:48:09.234844657 +0200 @@ -1,0 +2,12 @@ +Sun May 4 19:05:34 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 6.14.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.14.0 +- Changes since 6.13.0: + * Update dependency version to 6.14.0 + * hunspell: actually use non-alias symlinks to dictionaries + * Update version to 6.14.0 + +------------------------------------------------------------------- Old: ---- sonnet-6.13.0.tar.xz sonnet-6.13.0.tar.xz.sig New: ---- sonnet-6.14.0.tar.xz sonnet-6.14.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-sonnet.spec ++++++ --- /var/tmp/diff_new_pack.YaKg1N/_old 2025-05-12 16:48:09.778867468 +0200 +++ /var/tmp/diff_new_pack.YaKg1N/_new 2025-05-12 16:48:09.778867468 +0200 @@ -19,13 +19,13 @@ %define qt6_version 6.7.0 %define rname sonnet -# Full KF6 version (e.g. 6.13.0) +# Full KF6 version (e.g. 6.14.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-sonnet -Version: 6.13.0 +Version: 6.14.0 Release: 0 Summary: KDE spell checking library License: LGPL-2.1-or-later ++++++ sonnet-6.13.0.tar.xz -> sonnet-6.14.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-6.13.0/CMakeLists.txt new/sonnet-6.14.0/CMakeLists.txt --- old/sonnet-6.13.0/CMakeLists.txt 2025-04-04 16:04:21.000000000 +0200 +++ new/sonnet-6.14.0/CMakeLists.txt 2025-05-02 16:26:54.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.13.0") # handled by release scripts +set(KF_VERSION "6.14.0") # handled by release scripts project(Sonnet VERSION ${KF_VERSION}) include(FeatureSummary) include(CMakeDependentOption) -find_package(ECM 6.13.0 NO_MODULE) +find_package(ECM 6.14.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) @@ -29,7 +29,7 @@ set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].") -set(REQUIRED_QT_VERSION 6.6.0) +set(REQUIRED_QT_VERSION 6.7.0) option(SONNET_USE_WIDGETS "Build components using Qt6Widgets" ON) option(SONNET_USE_QML "Build components using Qt6Quick" ON) option(SONNET_NO_BACKENDS "Do not fail when no backends are built (to be used for cross-build host tooling)" OFF) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sonnet-6.13.0/src/plugins/hunspell/hunspellclient.cpp new/sonnet-6.14.0/src/plugins/hunspell/hunspellclient.cpp --- old/sonnet-6.13.0/src/plugins/hunspell/hunspellclient.cpp 2025-04-04 16:04:22.000000000 +0200 +++ new/sonnet-6.14.0/src/plugins/hunspell/hunspellclient.cpp 2025-05-02 16:26:54.000000000 +0200 @@ -66,9 +66,8 @@ m_languageAliases.insert(language, alias); continue; } - } else { - m_languagePaths.insert(language, dict.canonicalPath()); } + m_languagePaths.insert(language, dict.canonicalPath()); } } }