commit: bd55acfb7cfc04a00233d4594e5b4cbe72bf5ea1 Author: Johannes Huber <johu <AT> gentoo <DOT> org> AuthorDate: Sun Oct 8 07:57:26 2017 +0000 Commit: Johannes Huber <johu <AT> gentoo <DOT> org> CommitDate: Sun Oct 8 07:57:26 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=bd55acfb
kde5-functions.eclass: Raise minimal versions Closes: https://bugs.gentoo.org/633330 eclass/kde5-functions.eclass | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 5e0dc3aa96..7a52044de8 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -42,7 +42,20 @@ case ${CATEGORY} in kde-plasma) [[ ${PV} = 5.10.95 ]] && : ${FRAMEWORKS_MINIMAL:=5.38.0} [[ ${PV} = 5.11* ]] && : ${FRAMEWORKS_MINIMAL:=5.38.0} - [[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999} + if [[ ${PV} = 5.12* ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=5.38.0} + fi + if [[ ${KDE_BUILD_TYPE} = live ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=9999} + fi + ;; + kde-apps) + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=5.38.0} + fi ;; esac
