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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CB61158086 for ; Fri, 24 Dec 2021 23:08:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AAE732BC038; Fri, 24 Dec 2021 23:08:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3EF202BC034 for ; Fri, 24 Dec 2021 23:08:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D41E343262 for ; Fri, 24 Dec 2021 23:08:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A263263 for ; Fri, 24 Dec 2021 23:08:42 +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: <1640366157.3c50b1281e86e34074558790346289b0c43e82f1.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt6-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3c50b1281e86e34074558790346289b0c43e82f1 X-VCS-Branch: master Date: Fri, 24 Dec 2021 23:08:42 +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: b67ad4cf-6c4f-4252-9377-cdc6f43ec092 X-Archives-Hash: 89ab63fccd764f1c04b69b7aa7b9bc52 commit: 3c50b1281e86e34074558790346289b0c43e82f1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 24 16:36:05 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 24 17:15:57 2021 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=3c50b128 qt6-build.eclass: Add missing RESTRICT="!test? ( test )" Follow-up to c47eda67b875e004e765d1b5a11d67eff51823ee but for Qt6. Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt6-build.eclass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index fa82952e..3711a0ae 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -84,7 +84,11 @@ EGIT_REPO_URI=( IUSE="debug test" -[[ ${QT6_BUILD_TYPE} == release ]] && RESTRICT+=" test" # bug 457182 +if [[ ${QT6_BUILD_TYPE} == release ]]; then + RESTRICT="test" # bug 457182 +else + RESTRICT="!test? ( test )" +fi BDEPEND=" dev-lang/perl