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 149F91396D9 for ; Thu, 12 Oct 2017 11:27:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A9AA2BC031; Thu, 12 Oct 2017 11:27:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3B6282BC031 for ; Thu, 12 Oct 2017 11:27:20 +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 689FF33BF44 for ; Thu, 12 Oct 2017 11:27:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2F04907B for ; Thu, 12 Oct 2017 11:27:17 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1507807630.d9286ae0951744ebaec48b3b4e896b04830cfcc3.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d9286ae0951744ebaec48b3b4e896b04830cfcc3 X-VCS-Branch: master Date: Thu, 12 Oct 2017 11:27:17 +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: ff867c0c-e843-483a-a322-091977ec87d5 X-Archives-Hash: 7b1cffd8768b7fe1b5dc8c77f271d13b commit: d9286ae0951744ebaec48b3b4e896b04830cfcc3 Author: Michael Palimaka gentoo org> AuthorDate: Thu Oct 12 11:26:44 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Oct 12 11:27:10 2017 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=d9286ae0 qt5-build.eclass: fix test dependency logic Thanks to Arfrever for pointing this out. eclass/qt5-build.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 76dfc9b4..11847bcf 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -114,7 +114,7 @@ DEPEND=" dev-lang/perl virtual/pkgconfig " -if [[ ${PN} != qttest && (${PN} != qtwebkit && ${QT5_MINOR_VERSION} -ge 9) ]]; then +if [[ (${PN} != qttest && ${PN} != qtwebkit) || (${PN} == qtwebkit && ${QT5_MINOR_VERSION} -lt 9) ]]; then DEPEND+=" test? ( ~dev-qt/qttest-${PV} )" fi RDEPEND="