From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [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 B55AF138206 for ; Sun, 31 Dec 2017 18:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5A9BE0872; Sun, 31 Dec 2017 18:01:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A2578E086E for ; Sun, 31 Dec 2017 18:01:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9F65A335C0E for ; Sun, 31 Dec 2017 18:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D63E2193 for ; Sun, 31 Dec 2017 18:01:24 +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: <1514742183.cfbd0e399fcd6ccd5c0af3f96b484ca1a5001bda.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: cfbd0e399fcd6ccd5c0af3f96b484ca1a5001bda X-VCS-Branch: master Date: Sun, 31 Dec 2017 18:01:24 +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-Archives-Salt: ef95f23b-9c44-4fc7-9193-83d79f73a1ab X-Archives-Hash: caf11a6299c1f823d7e362f5ff326eca commit: cfbd0e399fcd6ccd5c0af3f96b484ca1a5001bda Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 31 17:43:03 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 31 17:43:03 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=cfbd0e39 kde5-functions.eclass: add_qt_dep qtwebkit exception Upstream stopped at 5.9.1 and releases are going to be independent from there on. eclass/kde5-functions.eclass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index d531908079..fd118d5cce 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -280,7 +280,11 @@ add_qt_dep() { local slot=${4} if [[ -z ${version} ]]; then - version=${QT_MINIMAL} + if [[ ${1} = qtwebkit && ${QT_MINIMAL} = 5.9* ]]; then + version=5.9.1 # no more upstream release, need bug #624404 + else + version=${QT_MINIMAL} + fi fi if [[ -z ${slot} ]]; then slot="5"