Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/minuet/, kde-apps/minuet/files/
Date: Mon, 12 Aug 2019 16:27:05
Message-Id: 1565627098.dcf75bf661a92c64f92e1a608935289784ea1fab.asturm@gentoo
1 commit: dcf75bf661a92c64f92e1a608935289784ea1fab
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 16:16:20 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 16:24:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcf75bf6
7
8 kde-apps/minuet: Fix missing header with Frameworks 5.61
9
10 Closes: https://bugs.gentoo.org/692000
11 Package-Manager: Portage-2.3.71, Repoman-2.3.17
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 .../files/minuet-19.04.3-missing-header.patch | 23 ++++++++++++++++++++++
15 kde-apps/minuet/minuet-19.04.3.ebuild | 2 ++
16 2 files changed, 25 insertions(+)
17
18 diff --git a/kde-apps/minuet/files/minuet-19.04.3-missing-header.patch b/kde-apps/minuet/files/minuet-19.04.3-missing-header.patch
19 new file mode 100644
20 index 00000000000..9524f4f3564
21 --- /dev/null
22 +++ b/kde-apps/minuet/files/minuet-19.04.3-missing-header.patch
23 @@ -0,0 +1,23 @@
24 +From 0ed28414428a6e19017ae7c5605ca09aaf0debea Mon Sep 17 00:00:00 2001
25 +From: Albert Astals Cid <aacid@×××.org>
26 +Date: Wed, 17 Jul 2019 22:56:58 +0200
27 +Subject: Fix build on CI
28 +
29 +---
30 + src/app/plugincontroller.h | 1 +
31 + 1 file changed, 1 insertion(+)
32 +
33 +diff --git a/src/app/plugincontroller.h b/src/app/plugincontroller.h
34 +index 19c6c89..3acd1d4 100644
35 +--- a/src/app/plugincontroller.h
36 ++++ b/src/app/plugincontroller.h
37 +@@ -27,6 +27,7 @@
38 +
39 + #ifndef Q_OS_ANDROID
40 + #include <KPluginMetaData>
41 ++#include <QVector>
42 + #endif
43 +
44 + namespace Minuet
45 +--
46 +cgit v1.1
47
48 diff --git a/kde-apps/minuet/minuet-19.04.3.ebuild b/kde-apps/minuet/minuet-19.04.3.ebuild
49 index f64a0819e81..5b8c1fa2e8d 100644
50 --- a/kde-apps/minuet/minuet-19.04.3.ebuild
51 +++ b/kde-apps/minuet/minuet-19.04.3.ebuild
52 @@ -25,3 +25,5 @@ DEPEND="
53 media-sound/fluidsynth:=
54 "
55 RDEPEND="${DEPEND}"
56 +
57 +PATCHES=( "${FILESDIR}/${P}-missing-header.patch" )