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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D7A2158094 for ; Thu, 30 Jun 2022 03:49:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B49AE0984; Thu, 30 Jun 2022 03:49:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7268E0984 for ; Thu, 30 Jun 2022 03:49:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4188D3414E4 for ; Thu, 30 Jun 2022 03:49:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B5A3448 for ; Thu, 30 Jun 2022 03:49:37 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1656560967.b76e4454383d1a8694d6c34a5a70deb2b923fc13.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cadence/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/cadence/files/cadence-0.9.1-fix-qt5.15.patch X-VCS-Directories: media-sound/cadence/files/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: b76e4454383d1a8694d6c34a5a70deb2b923fc13 X-VCS-Branch: master Date: Thu, 30 Jun 2022 03:49:37 +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: 63cbecc7-d8ac-469c-86fb-0d6ec70292a5 X-Archives-Hash: 36e7d97341dd87bd098e984ba6823b4e commit: b76e4454383d1a8694d6c34a5a70deb2b923fc13 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Jun 29 09:00:32 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Jun 30 03:49:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b76e4454 media-sound/cadence: remove unused patch Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/26135 Signed-off-by: Miroslav Šulc gentoo.org> .../cadence/files/cadence-0.9.1-fix-qt5.15.patch | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/media-sound/cadence/files/cadence-0.9.1-fix-qt5.15.patch b/media-sound/cadence/files/cadence-0.9.1-fix-qt5.15.patch deleted file mode 100644 index b9c52167e375..000000000000 --- a/media-sound/cadence/files/cadence-0.9.1-fix-qt5.15.patch +++ /dev/null @@ -1,34 +0,0 @@ -From c167f35fbb76c4246c730b29262a59da73010412 Mon Sep 17 00:00:00 2001 -From: Alex Tsitsimpis -Date: Thu, 4 Jun 2020 12:49:40 +0300 -Subject: [PATCH] Fix build with Qt 5.15+ -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Building with Qt 5.15 failed with the following error: - -../widgets/pixmapdial.cpp:231:26: error: aggregate ‘QPainterPath ballPath’ has incomplete type and cannot be defined - 231 | QPainterPath ballPath; - | ^~~~~~~~ -../widgets/pixmapdial.cpp:278:26: error: aggregate ‘QPainterPath ballPath’ has incomplete type and cannot be defined - 278 | QPainterPath ballPath; - | ^~~~~~~~ - -Signed-off-by: Alex Tsitsimpis ---- - c++/widgets/pixmapdial.cpp | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/c++/widgets/pixmapdial.cpp b/c++/widgets/pixmapdial.cpp -index 37dcffd..0b5e0f5 100644 ---- a/c++/widgets/pixmapdial.cpp -+++ b/c++/widgets/pixmapdial.cpp -@@ -22,6 +22,7 @@ - #include - #include - #include -+#include - - PixmapDial::PixmapDial(QWidget* parent) - : QDial(parent),