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/palapeli/, kde-apps/palapeli/files/
Date: Sun, 11 Aug 2019 08:19:48
Message-Id: 1565511564.fdc8519bb5ca806bca4fe9b0af16f528ff66b73e.asturm@gentoo
1 commit: fdc8519bb5ca806bca4fe9b0af16f528ff66b73e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 11 06:45:51 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 11 08:19:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc8519b
7
8 kde-apps/palapeli: Fix missing header with Frameworks 5.61
9
10 Reported-by: <klaus818 <AT> googlemail.com>
11 Closes: https://bugs.gentoo.org/691924
12 Package-Manager: Portage-2.3.71, Repoman-2.3.17
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 .../files/palapeli-19.04.3-missing-header.patch | 24 ++++++++++++++++++++++
16 kde-apps/palapeli/palapeli-19.04.3.ebuild | 2 ++
17 2 files changed, 26 insertions(+)
18
19 diff --git a/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch b/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch
20 new file mode 100644
21 index 00000000000..23f9b0d7328
22 --- /dev/null
23 +++ b/kde-apps/palapeli/files/palapeli-19.04.3-missing-header.patch
24 @@ -0,0 +1,24 @@
25 +From 017a6325de82f3872b36ddb35052e1845fb97ff8 Mon Sep 17 00:00:00 2001
26 +From: Luca Beltrame <lbeltrame@×××.org>
27 +Date: Fri, 19 Jul 2019 07:31:17 +0200
28 +Subject: Include QMap header explicitly
29 +
30 +Seems no longer included transitively in Qt 5.13.
31 +---
32 + src/engine/gameplay.h | 1 +
33 + 1 file changed, 1 insertion(+)
34 +
35 +diff --git a/src/engine/gameplay.h b/src/engine/gameplay.h
36 +index a759f8f..af18373 100644
37 +--- a/src/engine/gameplay.h
38 ++++ b/src/engine/gameplay.h
39 +@@ -26,6 +26,7 @@ class QStackedWidget;
40 +
41 + #include "../window/mainwindow.h"
42 +
43 ++#include <QMap>
44 + #include <QTime> // IDW test.
45 +
46 + namespace Palapeli
47 +--
48 +cgit v1.1
49
50 diff --git a/kde-apps/palapeli/palapeli-19.04.3.ebuild b/kde-apps/palapeli/palapeli-19.04.3.ebuild
51 index f4a1faf9928..a96a015e4b0 100644
52 --- a/kde-apps/palapeli/palapeli-19.04.3.ebuild
53 +++ b/kde-apps/palapeli/palapeli-19.04.3.ebuild
54 @@ -33,3 +33,5 @@ RDEPEND="
55 DEPEND="${RDEPEND}
56 $(add_qt_dep qtconcurrent)
57 "
58 +
59 +PATCHES=( "${FILESDIR}/${P}-missing-header.patch" )