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: Sun, 06 Aug 2017 22:30:25
Message-Id: 1502051198.db3062527e532b02e48b486d8d232deb6f52f12d.asturm@gentoo
1 commit: db3062527e532b02e48b486d8d232deb6f52f12d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 6 16:19:46 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 20:26:38 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=db306252
7
8 kde5-functions.eclass: Raise >=KF-5.37 QT_MINIMAL to 5.7.1
9
10 See also:
11 https://mail.kde.org/pipermail/release-team/2017-August/010526.html
12
13 eclass/kde5-functions.eclass | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
17 index 4641e0605c..34bb74ffa4 100644
18 --- a/eclass/kde5-functions.eclass
19 +++ b/eclass/kde5-functions.eclass
20 @@ -33,10 +33,12 @@ export KDE_BUILD_TYPE
21 case ${CATEGORY} in
22 kde-frameworks)
23 [[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999}
24 + [[ ${KDE_BUILD_TYPE} = live || $(get_version_component_range 2) -ge 37 ]] \
25 + && : ${QT_MINIMAL:=5.7.1}
26 ;;
27 kde-plasma)
28 : ${QT_MINIMAL:=5.7.1}
29 - if [[ ${KDE_BUILD_TYPE} = live && $(get_version_component_range 2) -ne 8 ]]; then
30 + if [[ ${KDE_BUILD_TYPE} = live ]]; then
31 : ${FRAMEWORKS_MINIMAL:=9999}
32 fi
33 ;;