Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: eclass/
Date: Fri, 23 Mar 2018 18:52:04
Message-Id: 1521831064.0d701084f7babd5f3c477548c4a71e5cdf697fc4.asturm@gentoo
1 commit: 0d701084f7babd5f3c477548c4a71e5cdf697fc4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 18:35:35 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 18:51:04 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0d701084
7
8 kde5-functions.eclass: Fix FRAMEWORKS_MINIMAL for kde-apps-18.03.x
9
10 eclass/kde5-functions.eclass | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
14 index edfe2142cb..1dfb1817cb 100644
15 --- a/eclass/kde5-functions.eclass
16 +++ b/eclass/kde5-functions.eclass
17 @@ -45,10 +45,10 @@ case ${CATEGORY} in
18 fi
19 ;;
20 kde-apps)
21 - if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 18.04* ]]; then
22 + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 18* ]]; then
23 : ${FRAMEWORKS_MINIMAL:=5.44.0}
24 fi
25 - if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* ]]; then
26 + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* || ${PV} = 18* ]]; then
27 : ${QT_MINIMAL:=5.9.1}
28 fi
29 ;;