diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-06 20:10:36 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-07 13:59:55 +0100 |
commit | 1fc1d64b755d9dbbb604527327a7ae93c810d5b9 (patch) | |
tree | c15d21dd241ba2687b110602c38df19cf1832b78 /eclass | |
parent | kde5-functions.eclass: Cleanup _add_category_dep slot def (diff) | |
download | gentoo-1fc1d64b755d9dbbb604527327a7ae93c810d5b9.tar.gz gentoo-1fc1d64b755d9dbbb604527327a7ae93c810d5b9.tar.bz2 gentoo-1fc1d64b755d9dbbb604527327a7ae93c810d5b9.zip |
kde5-functions: Raise FRAMEWORKS_MINIMAL to 5.54.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5-functions.eclass | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 895db2968ccd..71686d1a0331 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -36,15 +36,18 @@ export KDE_BUILD_TYPE case ${CATEGORY} in kde-frameworks) [[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999} - [[ ${PV} = 5.52.0* ]] && : ${QT_MINIMAL:=5.9.4} ;; kde-plasma) + [[ ${PV} = 5.14.5 ]] && : ${FRAMEWORKS_MINIMAL:=5.52.0} if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then : ${FRAMEWORKS_MINIMAL:=9999} fi ;; kde-apps) - [[ ${PV} = 18.08.3* ]] && : ${QT_MINIMAL:=5.9.4} + if [[ ${PV} = 18.08.3* ]]; then + : ${QT_MINIMAL:=5.9.4} + : ${FRAMEWORKS_MINIMAL:=5.52.0} + fi ;; esac @@ -56,7 +59,7 @@ esac # @ECLASS-VARIABLE: FRAMEWORKS_MINIMAL # @DESCRIPTION: # Minimum version of Frameworks to require. This affects add_frameworks_dep. -: ${FRAMEWORKS_MINIMAL:=5.52.0} +: ${FRAMEWORKS_MINIMAL:=5.54.0} # @ECLASS-VARIABLE: PLASMA_MINIMAL # @DESCRIPTION: |