From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EEE1138334 for ; Mon, 17 Dec 2018 19:26:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37669E09C1; Mon, 17 Dec 2018 19:26:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13D89E09C1 for ; Mon, 17 Dec 2018 19:26:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F48F335C07 for ; Mon, 17 Dec 2018 19:26:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 962E44E5 for ; Mon, 17 Dec 2018 19:26:07 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1545074753.45764c663860dd908384a7704b749ad7f950d01c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kpat/files/, kde-apps/kpat/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kpat/files/kpat-18.04.3-qt-5.11.patch kde-apps/kpat/kpat-18.04.3.ebuild X-VCS-Directories: kde-apps/kpat/files/ kde-apps/kpat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 45764c663860dd908384a7704b749ad7f950d01c X-VCS-Branch: master Date: Mon, 17 Dec 2018 19:26:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 843281fe-b08f-4fb5-9375-5636c80939a7 X-Archives-Hash: 5339426c0ccf936d00830dc527cb030d commit: 45764c663860dd908384a7704b749ad7f950d01c Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 17 19:25:35 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 17 19:25:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45764c66 kde-apps/kpat: Fix build with Qt 5.11 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kpat/files/kpat-18.04.3-qt-5.11.patch | 23 +++++++++++++++++++++++ kde-apps/kpat/kpat-18.04.3.ebuild | 4 +++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/kde-apps/kpat/files/kpat-18.04.3-qt-5.11.patch b/kde-apps/kpat/files/kpat-18.04.3-qt-5.11.patch new file mode 100644 index 00000000000..d3c7b784361 --- /dev/null +++ b/kde-apps/kpat/files/kpat-18.04.3-qt-5.11.patch @@ -0,0 +1,23 @@ +From 7a69e3f4b15a902c4008a428d5fbf0335526f49b Mon Sep 17 00:00:00 2001 +From: Jonathan Marten +Date: Sat, 22 Sep 2018 16:56:04 +0100 +Subject: Needs include of for Qt 5.11 + +--- + mainwindow.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/mainwindow.cpp b/mainwindow.cpp +index cec0685..a597717 100644 +--- a/mainwindow.cpp ++++ b/mainwindow.cpp +@@ -78,6 +78,7 @@ + #include + #include + #include ++#include + #include + #include + #include +-- +cgit v1.1 diff --git a/kde-apps/kpat/kpat-18.04.3.ebuild b/kde-apps/kpat/kpat-18.04.3.ebuild index a023a866ad0..f6681caac28 100644 --- a/kde-apps/kpat/kpat-18.04.3.ebuild +++ b/kde-apps/kpat/kpat-18.04.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -34,3 +34,5 @@ DEPEND=" x11-misc/shared-mime-info " RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-qt-5.11.patch" )