Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-baloo for openSUSE:Factory checked in at 2024-11-09 20:53:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-baloo (Old) and /work/SRC/openSUSE:Factory/.kf6-baloo.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-baloo" Sat Nov 9 20:53:00 2024 rev:9 rq:1222757 version:6.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-baloo/kf6-baloo.changes 2024-10-12 13:25:27.979631975 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-baloo.new.2017/kf6-baloo.changes 2024-11-09 20:53:09.557411854 +0100 @@ -1,0 +2,12 @@ +Mon Nov 4 11:17:54 UTC 2024 - Christophe Marin <[email protected]> + +- Update to 6.8.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.8.0 +- Changes since 6.7.0: + * Update dependency version to 6.8.0 + * [excludeMimeTypes] Exclude model/obj and text/rust from content indexing + * Update version to 6.8.0 + +------------------------------------------------------------------- Old: ---- baloo-6.7.0.tar.xz baloo-6.7.0.tar.xz.sig New: ---- baloo-6.8.0.tar.xz baloo-6.8.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-baloo.spec ++++++ --- /var/tmp/diff_new_pack.WE73zY/_old 2024-11-09 20:53:10.117435156 +0100 +++ /var/tmp/diff_new_pack.WE73zY/_new 2024-11-09 20:53:10.121435322 +0100 @@ -19,13 +19,13 @@ %define qt6_version 6.7.0 %define rname baloo -# Full KF6 version (e.g. 6.7.0) +# Full KF6 version (e.g. 6.8.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-baloo -Version: 6.7.0 +Version: 6.8.0 Release: 0 Summary: Framework for searching and managing metadata License: GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only ++++++ baloo-6.7.0.tar.xz -> baloo-6.8.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/baloo-6.7.0/CMakeLists.txt new/baloo-6.8.0/CMakeLists.txt --- old/baloo-6.7.0/CMakeLists.txt 2024-10-04 17:04:56.000000000 +0200 +++ new/baloo-6.8.0/CMakeLists.txt 2024-11-02 16:44:38.000000000 +0100 @@ -1,8 +1,8 @@ # set minimum version requirements cmake_minimum_required(VERSION 3.16) set(REQUIRED_QT_VERSION 6.5.0) -set(KF_VERSION "6.7.0") # handled by release scripts -set(KF_DEP_VERSION "6.7.0") # handled by release scripts +set(KF_VERSION "6.8.0") # handled by release scripts +set(KF_DEP_VERSION "6.8.0") # handled by release scripts # set up project project(Baloo VERSION ${KF_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/baloo-6.7.0/src/file/fileexcludefilters.cpp new/baloo-6.8.0/src/file/fileexcludefilters.cpp --- old/baloo-6.7.0/src/file/fileexcludefilters.cpp 2024-10-04 17:04:56.000000000 +0200 +++ new/baloo-6.8.0/src/file/fileexcludefilters.cpp 2024-11-02 16:44:38.000000000 +0100 @@ -141,7 +141,7 @@ const int s_defaultFolderExcludeFiltersVersion = 4; -const char* const s_sourceCodeMimeTypes[] = { +const char *const s_sourceCodeMimeTypes[] = { "text/css", "text/x-c++src", "text/x-c++hdr", @@ -167,6 +167,7 @@ "text/asp", "text/jsx", "text/csx", + "text/rust", // Rust source (often .rs) "text/vnd.trolltech.linguist", "application/x-awk", "application/x-cgi", @@ -189,10 +190,13 @@ // Not really source code, but inherited from text/plain "application/pgp-encrypted", // pgp encrypted, with or without ASCII Armor + // model/obj subtype of text/plain + "model/obj", // OBJ 3D model + // end of list - nullptr + nullptr, }; -const int s_sourceCodeMimeTypesVersion = 3; +const int s_sourceCodeMimeTypesVersion = 4; } QStringList Baloo::defaultExcludeFilterList()
