Hello community, here is the log from the commit of package konversation for openSUSE:Factory checked in at 2018-05-01 22:55:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/konversation (Old) and /work/SRC/openSUSE:Factory/.konversation.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "konversation" Tue May 1 22:55:50 2018 rev:54 rq:601819 version:1.7.4 Changes: -------- --- /work/SRC/openSUSE:Factory/konversation/konversation.changes 2017-11-19 11:09:42.855056044 +0100 +++ /work/SRC/openSUSE:Factory/.konversation.new/konversation.changes 2018-05-01 22:55:55.252949883 +0200 @@ -1,0 +2,6 @@ +Fri Apr 27 06:59:28 UTC 2018 - [email protected] + +- Add patch to fix build with Qt 5.11: + * fix-build-qt-5.11.patch + +------------------------------------------------------------------- New: ---- fix-build-qt-5.11.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ konversation.spec ++++++ --- /var/tmp/diff_new_pack.MOrZ0s/_old 2018-05-01 22:55:55.996922777 +0200 +++ /var/tmp/diff_new_pack.MOrZ0s/_new 2018-05-01 22:55:56.000922630 +0200 @@ -1,7 +1,7 @@ # # spec file for package konversation # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,8 @@ Group: Productivity/Networking/IRC Url: http://konversation.kde.org/ Source0: http://download.kde.org/stable/%{name}/%{version}/src/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM +Patch1: fix-build-qt-5.11.patch BuildRequires: extra-cmake-modules BuildRequires: karchive-devel >= %{kf5_version} BuildRequires: kbookmarks-devel >= %{kf5_version} @@ -80,6 +82,7 @@ %prep %setup -q +%patch1 -p1 %build %cmake_kf5 -d build ++++++ fix-build-qt-5.11.patch ++++++ >From 20018b3d0798421c9cb8a9d983e5a5b34bd88e8d Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner <[email protected]> Date: Mon, 19 Mar 2018 17:13:30 +0100 Subject: [PATCH] Fix build with Qt 5.11 (missing QTabWidget) Reviewers: #konversation, hein Reviewed By: #konversation, hein Differential Revision: https://phabricator.kde.org/D11490 --- src/dcc/transferdetailedinfopanel.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dcc/transferdetailedinfopanel.h b/src/dcc/transferdetailedinfopanel.h index e8debbc0..0e7391de 100644 --- a/src/dcc/transferdetailedinfopanel.h +++ b/src/dcc/transferdetailedinfopanel.h @@ -16,6 +16,7 @@ #include "ui_transferdetailedinfopanelui.h" #include "ui_transferdetailedtimeinfopanelui.h" +#include <QTabWidget> class QTimer;
