Hello community,
here is the log from the commit of package kdepim-runtime for openSUSE:Factory checked in at 2017-06-01 16:23:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdepim-runtime (Old) and /work/SRC/openSUSE:Factory/.kdepim-runtime.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdepim-runtime"
Thu Jun 1 16:23:43 2017 rev:24 rq:497337 version:17.04.1
Changes: -------- --- /work/SRC/openSUSE:Factory/kdepim-runtime/kdepim-runtime.changes 2017-05-22 10:40:13.570302206 +0200 +++ /work/SRC/openSUSE:Factory/.kdepim-runtime.new/kdepim-runtime.changes 2017-06-01 16:24:24.269597271 +0200 @@ -1,0 +2,8 @@ +Mon May 22 12:32:34 UTC 2017 - wbauer@tmo.at + +- Add add-missing-include.patch and + fix-crash-when-configuring-IMAP-resources.patch to fix IMAP + resources crashing when trying to open settings + (kde#379155, boo#1040086) + +-------------------------------------------------------------------
New: ---- add-missing-include.patch fix-crash-when-configuring-IMAP-resources.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences: ------------------ ++++++ kdepim-runtime.spec ++++++ --- /var/tmp/diff_new_pack.KZpsYe/_old 2017-06-01 16:24:24.785524521 +0200 +++ /var/tmp/diff_new_pack.KZpsYe/_new 2017-06-01 16:24:24.789523957 +0200 @@ -29,6 +29,9 @@ Group: System/GUI/KDE Url: http://www.kde.org Source: kdepim-runtime-%{version}.tar.xz +#PATCH-FIX-UPSTREAM +Patch0: add-missing-include.patch +Patch1: fix-crash-when-configuring-IMAP-resources.patch BuildRequires: akonadi-calendar-devel >= %{_kapp_version} BuildRequires: akonadi-contact-devel >= %{_kapp_version} BuildRequires: akonadi-mime-devel >= %{_kapp_version} @@ -91,6 +94,8 @@
%prep %setup -q -n kdepim-runtime-%{version} +%patch0 -p1 +%patch1 -p1
%build %cmake_kf5 -d build -- -DBUILD_TESTING=ON -DKF5_INCLUDE_INSTALL_DIR=%{_kf5_includedir}
++++++ add-missing-include.patch ++++++
From e8b131fe179f474af9de12f1289ea70cd99e90e4 Mon Sep 17 00:00:00 2001
From: Antonio Rojas arojas@archlinux.org Date: Fri, 12 May 2017 16:56:40 +0200 Subject: Add missing include
Otherwise WITH_GMAIL_XOAUTH2 is always undefined
BUG: 379155 Differential Revision: https://phabricator.kde.org/D5819 --- resources/imap/setupserver.cpp | 1 + 1 file changed, 1 insertion(+)
diff --git a/resources/imap/setupserver.cpp b/resources/imap/setupserver.cpp index 12a37ae..afaa678 100644 --- a/resources/imap/setupserver.cpp +++ b/resources/imap/setupserver.cpp @@ -34,6 +34,7 @@ #include "serverinfodialog.h" #include "folderarchivesettingpage.h" #include "utils.h" +#include "config.h"
#include <mailtransport/transport.h> #include <mailtransport/servertest.h>