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 BDAD91382C5 for ; Fri, 1 Jan 2021 18:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 088D3E082D; Fri, 1 Jan 2021 18:58:24 +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 E5782E082D for ; Fri, 1 Jan 2021 18:58:23 +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 0498633BF08 for ; Fri, 1 Jan 2021 18:58:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 808444C for ; Fri, 1 Jan 2021 18:58:21 +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: <1609522196.c47eda67b875e004e765d1b5a11d67eff51823ee.asturm@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: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c47eda67b875e004e765d1b5a11d67eff51823ee X-VCS-Branch: master Date: Fri, 1 Jan 2021 18:58:21 +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: e1e496fb-89b4-4261-a66c-d3d1731f27c8 X-Archives-Hash: 092cae91b76cdd29c388ada179f19283 commit: c47eda67b875e004e765d1b5a11d67eff51823ee Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jan 1 17:29:56 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jan 1 17:29:56 2021 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=c47eda67 qt5-build.eclass: Add missing RESTRICT+=" !test? ( test )" Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 503d0c3f..8e586c83 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: qt5-build.eclass @@ -103,7 +103,11 @@ EGIT_REPO_URI=( IUSE="debug test" -[[ ${QT5_BUILD_TYPE} == release ]] && RESTRICT+=" test" # bug 457182 +if [[ ${QT5_BUILD_TYPE} == release ]]; then + RESTRICT+=" test" # bug 457182 +else + RESTRICT+=" !test? ( test )" +fi BDEPEND=" dev-lang/perl