Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 12 Aug 2017 13:02:09
Message-Id: 1502542889.724b5e839621ec1fb3135c30913782330a721cfc.asturm@gentoo
1 commit: 724b5e839621ec1fb3135c30913782330a721cfc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 22 15:29:57 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 12 13:01:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724b5e83
7
8 kde5-functions.eclass: Drop 5.9999 version dep exception
9
10 eclass/kde5-functions.eclass | 7 +------
11 1 file changed, 1 insertion(+), 6 deletions(-)
12
13 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
14 index 2ac6526adc2..4641e0605cc 100644
15 --- a/eclass/kde5-functions.eclass
16 +++ b/eclass/kde5-functions.eclass
17 @@ -244,12 +244,7 @@ add_kdeapps_dep() {
18 elif [[ ${CATEGORY} = kde-apps ]]; then
19 version=${PV}
20 elif [[ -z "${version}" ]] ; then
21 - # In KDE applications world, 5.9999 > yy.mm.x
22 - if [[ ${PV} = 5.9999 || ${PV} = 9999 ]]; then
23 - version=5.9999
24 - else
25 - version=${KDE_APPS_MINIMAL}
26 - fi
27 + version=${KDE_APPS_MINIMAL}
28 fi
29
30 _add_category_dep kde-apps "${1}" "${2}" "${version}" "${4}"