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 A92D81382C5 for ; Mon, 8 Jun 2020 17:46:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E24DEE0903; Mon, 8 Jun 2020 17:46:07 +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 C544CE0903 for ; Mon, 8 Jun 2020 17:46:07 +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 4BEF63432C1 for ; Mon, 8 Jun 2020 17:46:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D92E6275 for ; Mon, 8 Jun 2020 17:46:04 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1591638356.72be8cee8b4fb6b8a2632ca7ad035409ff3b9c40.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/edb-debugger/, dev-util/edb-debugger/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/edb-debugger/edb-debugger-1.2.0.ebuild dev-util/edb-debugger/files/edb-debugger-1.2.0-qt-5.15.patch X-VCS-Directories: dev-util/edb-debugger/ dev-util/edb-debugger/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 72be8cee8b4fb6b8a2632ca7ad035409ff3b9c40 X-VCS-Branch: master Date: Mon, 8 Jun 2020 17:46:04 +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: 88687e32-5b38-49d6-a4d2-e6121c76a145 X-Archives-Hash: 8abc88606fa7f5948b6c64569c6023dc commit: 72be8cee8b4fb6b8a2632ca7ad035409ff3b9c40 Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Jun 8 17:45:43 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Jun 8 17:45:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72be8cee dev-util/edb-debugger: tweak for qt-5.15 Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/727530 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich gentoo.org> dev-util/edb-debugger/edb-debugger-1.2.0.ebuild | 2 ++ .../files/edb-debugger-1.2.0-qt-5.15.patch | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-util/edb-debugger/edb-debugger-1.2.0.ebuild b/dev-util/edb-debugger/edb-debugger-1.2.0.ebuild index 21c906d4859..9fd3eb915ec 100644 --- a/dev-util/edb-debugger/edb-debugger-1.2.0.ebuild +++ b/dev-util/edb-debugger/edb-debugger-1.2.0.ebuild @@ -34,6 +34,8 @@ DEPEND=" ${RDEPEND} " +PATCHES=("${FILESDIR}"/${PN}-1.2.0-qt-5.15.patch) + S=${WORKDIR}/${PN} src_prepare() { diff --git a/dev-util/edb-debugger/files/edb-debugger-1.2.0-qt-5.15.patch b/dev-util/edb-debugger/files/edb-debugger-1.2.0-qt-5.15.patch new file mode 100644 index 00000000000..795cb8fce68 --- /dev/null +++ b/dev-util/edb-debugger/files/edb-debugger-1.2.0-qt-5.15.patch @@ -0,0 +1,20 @@ +https://bugs.gentoo.org/727530 +https://github.com/eteran/edb-debugger/pull/766 + +Fix build failure on qt-5.15. Typical build error is: + +src/widgets/QDisassemblyView.cpp:1503:17: + error: aggregate ‘QPainterPath path’ has incomplete type and cannot be defined + 1503 | QPainterPath path; + | ^~~~ + +--- a/src/widgets/QDisassemblyView.h ++++ b/src/widgets/QDisassemblyView.h +@@ -25,6 +25,7 @@ along with this program. If not, see . + #include + #include + #include ++#include + #include + #include +