diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-07-22 17:29:57 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-08-12 15:01:29 +0200 |
commit | 724b5e839621ec1fb3135c30913782330a721cfc (patch) | |
tree | 0fc6e9c11adb576b21c5e074bfa8ce465c4fb3d5 /eclass | |
parent | kde5-meta-pkg.eclass: Block slot 4 unconditionally (diff) | |
download | gentoo-724b5e839621ec1fb3135c30913782330a721cfc.tar.gz gentoo-724b5e839621ec1fb3135c30913782330a721cfc.tar.bz2 gentoo-724b5e839621ec1fb3135c30913782330a721cfc.zip |
kde5-functions.eclass: Drop 5.9999 version dep exception
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5-functions.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 2ac6526adc20..4641e0605cca 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -244,12 +244,7 @@ add_kdeapps_dep() { elif [[ ${CATEGORY} = kde-apps ]]; then version=${PV} elif [[ -z "${version}" ]] ; then - # In KDE applications world, 5.9999 > yy.mm.x - if [[ ${PV} = 5.9999 || ${PV} = 9999 ]]; then - version=5.9999 - else - version=${KDE_APPS_MINIMAL} - fi + version=${KDE_APPS_MINIMAL} fi _add_category_dep kde-apps "${1}" "${2}" "${version}" "${4}" |