Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 16 Oct 2018 21:43:43
Message-Id: 1539726205.ebdaf769a4570ffa4f8bfee2aa97638675c4d340.asturm@gentoo
1 commit: ebdaf769a4570ffa4f8bfee2aa97638675c4d340
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 16 21:42:05 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 16 21:43:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebdaf769
7
8 kde5-functions.eclass: Fix KDE Plasma 5.13.5 QT_MINIMAL
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/kde5-functions.eclass | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
16 index e921e30fa12..2551741637a 100644
17 --- a/eclass/kde5-functions.eclass
18 +++ b/eclass/kde5-functions.eclass
19 @@ -41,11 +41,15 @@ case ${CATEGORY} in
20 : ${FRAMEWORKS_MINIMAL:=5.43.0}
21 : ${QT_MINIMAL:=5.9.1}
22 fi
23 - if [[ ${PV} = 5.12* || ${PV} = 5.13.5 ]]; then
24 + if [[ ${PV} = 5.12* ]]; then
25 : ${FRAMEWORKS_MINIMAL:=5.46.0}
26 : ${KDE_APPS_MINIMAL:=17.12.3}
27 : ${QT_MINIMAL:=5.9.4}
28 fi
29 + if [[ ${PV} = 5.13.5 ]]; then
30 + : ${FRAMEWORKS_MINIMAL:=5.46.0}
31 + : ${KDE_APPS_MINIMAL:=17.12.3}
32 + fi
33 if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then
34 : ${FRAMEWORKS_MINIMAL:=9999}
35 fi