From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BE1A2138334 for ; Sat, 26 Jan 2019 23:45:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A92D5E0C24; Sat, 26 Jan 2019 23:45:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74574E0C24 for ; Sat, 26 Jan 2019 23:45:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E194C335D5F for ; Sat, 26 Jan 2019 23:45:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6C79524 for ; Sat, 26 Jan 2019 23:45:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1548537412.501c3a8e73368fa4bf71544303724d0df04fd181.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5-functions.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 501c3a8e73368fa4bf71544303724d0df04fd181 X-VCS-Branch: master Date: Sat, 26 Jan 2019 23:45:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 185637bf-0689-418b-837f-ae044cad0b5c X-Archives-Hash: 9139162a6f7147b0aadea84720cb933f commit: 501c3a8e73368fa4bf71544303724d0df04fd181 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 26 20:49:25 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 26 21:16:52 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=501c3a8e kde5-functions.eclass: add_qt_dep: Drop obsolete qtwebkit ver check Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde5-functions.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 14cb4db3b0..622c38dd36 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -270,8 +270,8 @@ add_qt_dep() { local slot=${4} if [[ -z ${version} ]]; then - if [[ ${1} = qtwebkit && $(ver_cut 2 ${QT_MINIMAL}) -ge 9 ]]; then - version=5.9.1 # no more upstream release, need bug #624404 + if [[ ${1} = qtwebkit ]]; then + version=5.9.1 # no more upstream release else version=${QT_MINIMAL} fi