Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kdepim-runtime for openSUSE:Factory checked in at 2022-02-17 23:39:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdepim-runtime (Old) and /work/SRC/openSUSE:Factory/.kdepim-runtime.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdepim-runtime" Thu Feb 17 23:39:53 2022 rev:89 rq:955387 version:21.12.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kdepim-runtime/kdepim-runtime.changes 2022-02-04 21:47:22.293214756 +0100 +++ /work/SRC/openSUSE:Factory/.kdepim-runtime.new.1958/kdepim-runtime.changes 2022-02-17 23:40:39.323700851 +0100 @@ -1,0 +2,7 @@ +Wed Feb 16 10:06:06 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de> + +- Add patch to Work around google calendar events breaking due to + dropped Contacts API (kde#449024): + * 0001-Apply-patch-for-disable-sync-contact-as-it-don-t-por.patch + +------------------------------------------------------------------- New: ---- 0001-Apply-patch-for-disable-sync-contact-as-it-don-t-por.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdepim-runtime.spec ++++++ --- /var/tmp/diff_new_pack.i0HzyN/_old 2022-02-17 23:40:39.939700846 +0100 +++ /var/tmp/diff_new_pack.i0HzyN/_new 2022-02-17 23:40:39.947700845 +0100 @@ -1,7 +1,7 @@ # # spec file for package kdepim-runtime # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -32,6 +32,8 @@ Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch1: 0001-Apply-patch-for-disable-sync-contact-as-it-don-t-por.patch BuildRequires: cyrus-sasl-devel BuildRequires: extra-cmake-modules BuildRequires: kf5-filesystem @@ -86,7 +88,7 @@ Requires: akonadi-plugin-kalarmcal Requires: akonadi-plugin-mime Requires(post): shared-mime-info -Requires(postun): shared-mime-info +Requires(postun):shared-mime-info Provides: kio-pimlibs = %{version} Obsoletes: kdepim4-runtime < %{version} Obsoletes: kio-pimlibs < %{version} ++++++ 0001-Apply-patch-for-disable-sync-contact-as-it-don-t-por.patch ++++++ >From 624ef213e50ae4712bfe2a254c5f444caaacfa22 Mon Sep 17 00:00:00 2001 From: Laurent Montel <mon...@kde.org> Date: Mon, 7 Feb 2022 06:58:43 +0100 Subject: [PATCH] Apply patch for disable sync contact as it don't ported yet. BUG:449024 --- resources/google-groupware/googleresource.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/google-groupware/googleresource.cpp b/resources/google-groupware/googleresource.cpp index 62b08fab0..a0d74e738 100644 --- a/resources/google-groupware/googleresource.cpp +++ b/resources/google-groupware/googleresource.cpp @@ -104,7 +104,9 @@ GoogleResource::GoogleResource(const QString &id) m_freeBusyHandler = std::make_unique<FreeBusyHandler>(m_iface, m_settings); m_handlers.clear(); m_handlers.push_back(GenericHandler::Ptr(new CalendarHandler(m_iface, m_settings))); +#ifdef DISABLE_UNTIL_LIBKGAPI_PORTED m_handlers.push_back(GenericHandler::Ptr(new ContactHandler(m_iface, m_settings))); +#endif m_handlers.push_back(GenericHandler::Ptr(new TaskHandler(m_iface, m_settings))); new SettingsAdaptor(m_settings); -- 2.34.0