Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cadence/files/
Date: Thu, 30 Jun 2022 03:49:42
Message-Id: 1656560967.b76e4454383d1a8694d6c34a5a70deb2b923fc13.fordfrog@gentoo
1 commit: b76e4454383d1a8694d6c34a5a70deb2b923fc13
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Wed Jun 29 09:00:32 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 03:49:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b76e4454
7
8 media-sound/cadence: remove unused patch
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/26135
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 .../cadence/files/cadence-0.9.1-fix-qt5.15.patch | 34 ----------------------
16 1 file changed, 34 deletions(-)
17
18 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
19 deleted file mode 100644
20 index b9c52167e375..000000000000
21 --- a/media-sound/cadence/files/cadence-0.9.1-fix-qt5.15.patch
22 +++ /dev/null
23 @@ -1,34 +0,0 @@
24 -From c167f35fbb76c4246c730b29262a59da73010412 Mon Sep 17 00:00:00 2001
25 -From: Alex Tsitsimpis <alex.tsitsimpis@×××××.com>
26 -Date: Thu, 4 Jun 2020 12:49:40 +0300
27 -Subject: [PATCH] Fix build with Qt 5.15+
28 -MIME-Version: 1.0
29 -Content-Type: text/plain; charset=UTF-8
30 -Content-Transfer-Encoding: 8bit
31 -
32 -Building with Qt 5.15 failed with the following error:
33 -
34 -../widgets/pixmapdial.cpp:231:26: error: aggregate ‘QPainterPath ballPath’ has incomplete type and cannot be defined
35 - 231 | QPainterPath ballPath;
36 - | ^~~~~~~~
37 -../widgets/pixmapdial.cpp:278:26: error: aggregate ‘QPainterPath ballPath’ has incomplete type and cannot be defined
38 - 278 | QPainterPath ballPath;
39 - | ^~~~~~~~
40 -
41 -Signed-off-by: Alex Tsitsimpis <alex.tsitsimpis@×××××.com>
42 ----
43 - c++/widgets/pixmapdial.cpp | 1 +
44 - 1 file changed, 1 insertion(+)
45 -
46 -diff --git a/c++/widgets/pixmapdial.cpp b/c++/widgets/pixmapdial.cpp
47 -index 37dcffd..0b5e0f5 100644
48 ---- a/c++/widgets/pixmapdial.cpp
49 -+++ b/c++/widgets/pixmapdial.cpp
50 -@@ -22,6 +22,7 @@
51 - #include <QtCore/QTimer>
52 - #include <QtGui/QPainter>
53 - #include <QtGui/QPaintEvent>
54 -+#include <QtGui/QPainterPath>
55 -
56 - PixmapDial::PixmapDial(QWidget* parent)
57 - : QDial(parent),