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 CC4CE13835A for ; Tue, 25 May 2021 05:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E28ABE0826; Tue, 25 May 2021 05:14:00 +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 C8FC2E0826 for ; Tue, 25 May 2021 05:14:00 +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 DEE95340C72 for ; Tue, 25 May 2021 05:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30C4B7A0 for ; Tue, 25 May 2021 05:13:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1621918627.04b906571525255384ef1538147fa9d1ff5996b9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: metadata/install-qa-check.d/ X-VCS-Repository: repo/gentoo X-VCS-Files: metadata/install-qa-check.d/60distutils-use-setuptools X-VCS-Directories: metadata/install-qa-check.d/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 04b906571525255384ef1538147fa9d1ff5996b9 X-VCS-Branch: master Date: Tue, 25 May 2021 05:13:57 +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: 0cacd085-9e25-435a-b361-f80b37beea5b X-Archives-Hash: d93d72d77ef308cb55387d0a42cc6dc4 commit: 04b906571525255384ef1538147fa9d1ff5996b9 Author: Michał Górny gentoo org> AuthorDate: Tue May 25 04:44:06 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 25 04:57:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04b90657 install-qa-check.d: expect unset DUS for bdepend Signed-off-by: Michał Górny gentoo.org> metadata/install-qa-check.d/60distutils-use-setuptools | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/metadata/install-qa-check.d/60distutils-use-setuptools b/metadata/install-qa-check.d/60distutils-use-setuptools index d5b9f87a21a..effa65358aa 100644 --- a/metadata/install-qa-check.d/60distutils-use-setuptools +++ b/metadata/install-qa-check.d/60distutils-use-setuptools @@ -76,7 +76,11 @@ distutils_use_setuptools_check() { eqawarn "DISTUTILS_USE_SETUPTOOLS value is probably incorrect" eqawarn " have: DISTUTILS_USE_SETUPTOOLS=${DISTUTILS_USE_SETUPTOOLS}${def}" - eqawarn " expected: DISTUTILS_USE_SETUPTOOLS=${expected[0]}" + if [[ ${expected[0]} == bdepend ]]; then + eqawarn " expected: (unset)" + else + eqawarn " expected: DISTUTILS_USE_SETUPTOOLS=${expected[0]}" + fi fi fi }