Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkleo for openSUSE:Factory checked in at 2024-11-08 11:55:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkleo (Old) and /work/SRC/openSUSE:Factory/.libkleo.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkleo" Fri Nov 8 11:55:19 2024 rev:106 rq:1222398 version:24.08.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libkleo/libkleo.changes 2024-10-12 13:31:49.811459325 +0200 +++ /work/SRC/openSUSE:Factory/.libkleo.new.2017/libkleo.changes 2024-11-08 11:57:33.884920435 +0100 @@ -1,0 +2,10 @@ +Tue Nov 5 10:44:05 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 24.08.3 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/24.08.3/ +- Changes since 24.08.2: + * Watch the keyboxd database file for changes + +------------------------------------------------------------------- Old: ---- libkleo-24.08.2.tar.xz libkleo-24.08.2.tar.xz.sig New: ---- libkleo-24.08.3.tar.xz libkleo-24.08.3.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkleo.spec ++++++ --- /var/tmp/diff_new_pack.oJh1uD/_old 2024-11-08 11:57:34.620951127 +0100 +++ /var/tmp/diff_new_pack.oJh1uD/_new 2024-11-08 11:57:34.620951127 +0100 @@ -22,7 +22,7 @@ %bcond_without released Name: libkleo -Version: 24.08.2 +Version: 24.08.3 Release: 0 Summary: Base package of Kleopatra, a key manager by KDE License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ libkleo-24.08.2.tar.xz -> libkleo-24.08.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkleo-24.08.2/CMakeLists.txt new/libkleo-24.08.3/CMakeLists.txt --- old/libkleo-24.08.2/CMakeLists.txt 2024-10-07 05:05:27.000000000 +0200 +++ new/libkleo-24.08.3/CMakeLists.txt 2024-10-16 22:19:36.000000000 +0200 @@ -1,7 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 # SPDX-FileCopyrightText: none cmake_minimum_required(VERSION 3.16 FATAL_ERROR) -set(PIM_VERSION "6.2.2") +set(PIM_VERSION "6.2.3") project(libkleo VERSION ${PIM_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkleo-24.08.2/src/utils/gnupg.cpp new/libkleo-24.08.3/src/utils/gnupg.cpp --- old/libkleo-24.08.2/src/utils/gnupg.cpp 2024-10-07 05:05:27.000000000 +0200 +++ new/libkleo-24.08.3/src/utils/gnupg.cpp 2024-10-16 22:19:36.000000000 +0200 @@ -114,6 +114,8 @@ QStringLiteral("secring.gpg"), // Secret keys (living under private-keys-v1.d/) QStringLiteral("*.key"), + // the keyboxd database + QStringLiteral("pubring.db"), // Changes to the trustmodel / compliance mode might // affect validity so we check this, too. // Globbing for gpg.conf* here will trigger too often @@ -132,6 +134,8 @@ return { gnupgHome.path(), gnupgPrivateKeysDirectory(), + // for the keyboxd database + gnupgHome.filePath(QStringLiteral("public-keys.d")), }; }