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: Thu, 07 Feb 2019 13:01:04
Message-Id: 1549544393.992576f88442769c317fe79610f60e55ebdb1f2e.asturm@gentoo
1 commit: 992576f88442769c317fe79610f60e55ebdb1f2e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 26 20:49:25 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 7 12:59:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=992576f8
7
8 kde5-functions.eclass: add_qt_dep: Drop obsolete qtwebkit ver check
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/kde5-functions.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
16 index 28446ed82f1..8098020c5f2 100644
17 --- a/eclass/kde5-functions.eclass
18 +++ b/eclass/kde5-functions.eclass
19 @@ -264,8 +264,8 @@ add_qt_dep() {
20 local slot=${4}
21
22 if [[ -z ${version} ]]; then
23 - if [[ ${1} = qtwebkit && $(ver_cut 2 ${QT_MINIMAL}) -ge 9 ]]; then
24 - version=5.9.1 # no more upstream release, need bug #624404
25 + if [[ ${1} = qtwebkit ]]; then
26 + version=5.9.1 # no more upstream release
27 else
28 version=${QT_MINIMAL}
29 fi