Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kget for openSUSE:Factory checked in at 2025-06-17 18:21:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kget (Old) and /work/SRC/openSUSE:Factory/.kget.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kget" Tue Jun 17 18:21:02 2025 rev:150 rq:1286074 version:25.04.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kget/kget.changes 2025-06-10 09:06:13.373761354 +0200 +++ /work/SRC/openSUSE:Factory/.kget.new.19631/kget.changes 2025-06-17 18:21:27.008380100 +0200 @@ -1,0 +2,6 @@ +Mon Jun 16 11:41:19 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Add gpgme 2.0 build fix (boo#1244636) + * 0001-Fix-build-with-GPGME-2.0.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-GPGME-2.0.patch ----------(New B)---------- New:- Add gpgme 2.0 build fix (boo#1244636) * 0001-Fix-build-with-GPGME-2.0.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kget.spec ++++++ --- /var/tmp/diff_new_pack.nWtvCy/_old 2025-06-17 18:21:27.592404392 +0200 +++ /var/tmp/diff_new_pack.nWtvCy/_new 2025-06-17 18:21:27.592404392 +0200 @@ -30,6 +30,8 @@ Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-build-with-GPGME-2.0.patch BuildRequires: kf6-extra-cmake-modules >= %{kf6_version} BuildRequires: libboost_headers-devel BuildRequires: pkgconfig ++++++ 0001-Fix-build-with-GPGME-2.0.patch ++++++ >From 6254c0cefa17fe82f44842bc21f5e5c241f66aec Mon Sep 17 00:00:00 2001 From: Antonio Rojas <aro...@archlinux.org> Date: Tue, 3 Jun 2025 23:13:39 +0200 Subject: [PATCH] Fix build with GPGME++ 2.0 GpgME::Error is no longer implicitly converted to a string --- ui/signaturedlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/signaturedlg.cpp b/ui/signaturedlg.cpp index 7c4a97f1..0b6a0785 100644 --- a/ui/signaturedlg.cpp +++ b/ui/signaturedlg.cpp @@ -185,7 +185,7 @@ void SignatureDlg::updateData() QByteArray fingerprint = fingerprintString.toLatin1(); const GpgME::Key key = context->key(fingerprint.constData(), err); if (err || key.isNull() || !key.numUserIDs() || !key.numSubkeys()) { - qCDebug(KGET_DEBUG) << "There was an error while loading the key:" << err; + qCDebug(KGET_DEBUG) << "There was an error while loading the key:" << err.asStdString(); } else { static const QStringList OWNERTRUST = QStringList() << i18nc("trust level", "Unknown") << i18nc("trust level", "Undefined") << i18nc("trust level", "Never") << i18nc("trust level", "Marginal") -- 2.49.0