From owner-svn-ports-head@freebsd.org Tue Sep 4 10:56:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D036DFEB606; Tue, 4 Sep 2018 10:56:58 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8324492B6D; Tue, 4 Sep 2018 10:56:58 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7DF371617C; Tue, 4 Sep 2018 10:56:58 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w84AuwEB013728; Tue, 4 Sep 2018 10:56:58 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w84AuwF5013727; Tue, 4 Sep 2018 10:56:58 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201809041056.w84AuwF5013727@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Tue, 4 Sep 2018 10:56:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478948 - head/editors/calligra/files X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: head/editors/calligra/files X-SVN-Commit-Revision: 478948 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Sep 2018 10:56:59 -0000 Author: jhale Date: Tue Sep 4 10:56:57 2018 New Revision: 478948 URL: https://svnweb.freebsd.org/changeset/ports/478948 Log: Fix build with Qt 5.11 PR: 230884 Obtained from: upstream Added: head/editors/calligra/files/patch-git_70be8c4 (contents, props changed) head/editors/calligra/files/patch-git_a7ebecb (contents, props changed) Added: head/editors/calligra/files/patch-git_70be8c4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/calligra/files/patch-git_70be8c4 Tue Sep 4 10:56:57 2018 (r478948) @@ -0,0 +1,17 @@ +From 70be8c437406a74c1ec560d1f2cc538e8ede2b8d Mon Sep 17 00:00:00 2001 +From: Dan Leinir Turthra Jensen +Date: Tue, 19 Jun 2018 09:52:41 +0100 +Subject: [PATCH] Missing include for QFrame + +This was causing build breakage on the binary factory + +--- stage/part/KPrPresentationTool.cpp.orig 2018-01-26 09:24:44 UTC ++++ stage/part/KPrPresentationTool.cpp +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + + #include + #include Added: head/editors/calligra/files/patch-git_a7ebecb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/calligra/files/patch-git_a7ebecb Tue Sep 4 10:56:57 2018 (r478948) @@ -0,0 +1,87 @@ +From a7ebecb9fbee2190e649c44ed53f1299013baa30 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 18 Mar 2018 11:56:57 +0100 +Subject: [PATCH] Fix build with Qt 5.11 (missing headers) + +Reviewers: #calligra:_3.0, anthonyfieroni, danders + +Reviewed By: #calligra:_3.0, anthonyfieroni, danders + +Subscribers: anthonyfieroni, danders + +Tags: #calligra:_3.0 + +Differential Revision: https://phabricator.kde.org/D11454 + +--- libs/widgets/KoCsvImportDialog.cpp.orig 2018-01-26 09:24:44 UTC ++++ libs/widgets/KoCsvImportDialog.cpp +@@ -21,6 +21,7 @@ + #include "KoCsvImportDialog.h" + + // Qt ++#include + #include + #include + +--- libs/widgets/KoPageLayoutWidget.cpp.orig 2018-01-26 09:24:44 UTC ++++ libs/widgets/KoPageLayoutWidget.cpp +@@ -23,6 +23,8 @@ + + #include + ++#include ++ + class Q_DECL_HIDDEN KoPageLayoutWidget::Private + { + public: +--- plugins/chartshape/dialogs/TableEditorDialog.cpp.orig 2018-01-26 09:24:44 UTC ++++ plugins/chartshape/dialogs/TableEditorDialog.cpp +@@ -24,6 +24,7 @@ + + // Qt + #include ++#include + + // Calligra + #include +--- plugins/formulashape/FormulaToolWidget.cpp.orig 2018-01-26 09:24:44 UTC ++++ plugins/formulashape/FormulaToolWidget.cpp +@@ -30,6 +30,7 @@ + #include + #include + #include ++#include + #include + + FormulaToolWidget::FormulaToolWidget( KoFormulaTool* tool, QWidget* parent ) +--- sheets/dialogs/LayoutDialog.cpp.orig 2018-01-26 09:24:44 UTC ++++ sheets/dialogs/LayoutDialog.cpp +@@ -36,6 +36,7 @@ + #include + + #include ++#include + #include + #include + #include +--- words/part/dialogs/KWAnchoringProperties.cpp.orig 2018-01-26 09:24:44 UTC ++++ words/part/dialogs/KWAnchoringProperties.cpp +@@ -35,6 +35,7 @@ + + #include + ++#include + #include + + const int KWAnchoringProperties::vertRels[4][20] = { +--- words/part/dialogs/KWRunAroundProperties.cpp.orig 2018-01-26 09:24:44 UTC ++++ words/part/dialogs/KWRunAroundProperties.cpp +@@ -28,6 +28,8 @@ + + #include + ++#include ++ + KWRunAroundProperties::KWRunAroundProperties(FrameConfigSharedState *state) + : m_state(state) + {