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 96754138334 for ; Wed, 2 Oct 2019 20:27:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4AEFE0898; Wed, 2 Oct 2019 20:27:41 +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 B002DE0898 for ; Wed, 2 Oct 2019 20:27:41 +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 6CCD234B7BA for ; Wed, 2 Oct 2019 20:27:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47A617FE for ; Wed, 2 Oct 2019 20:27:38 +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: <1570048055.deb0943d59970cc531d30502195d2fa0aae2e7e7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-10.0.0.9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: deb0943d59970cc531d30502195d2fa0aae2e7e7 X-VCS-Branch: master Date: Wed, 2 Oct 2019 20:27:38 +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: 39edffb0-dbe3-4421-bfb8-4923e1e69768 X-Archives-Hash: 9258b156a3b0614b8e45b3035540b60c commit: deb0943d59970cc531d30502195d2fa0aae2e7e7 Author: Michał Górny gentoo org> AuthorDate: Wed Oct 2 20:25:00 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 2 20:27:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb0943d sys-devel/llvm: Switch outdated target reports to eqawarn Signed-off-by: Michał Górny gentoo.org> sys-devel/llvm/llvm-10.0.0.9999.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sys-devel/llvm/llvm-10.0.0.9999.ebuild b/sys-devel/llvm/llvm-10.0.0.9999.ebuild index eccfd8a533b..bd137968658 100644 --- a/sys-devel/llvm/llvm-10.0.0.9999.ebuild +++ b/sys-devel/llvm/llvm-10.0.0.9999.ebuild @@ -109,16 +109,16 @@ check_live_ebuild() { all_targets=( "${prod_targets[@]}" "${exp_targets[@]}" ) if [[ ${exp_targets[*]} != ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]} ]]; then - ewarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!" - ewarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}" - ewarn "Expected: ${exp_targets[*]}" - ewarn + eqawarn "ALL_LLVM_EXPERIMENTAL_TARGETS is outdated!" + eqawarn " Have: ${ALL_LLVM_EXPERIMENTAL_TARGETS[*]}" + eqawarn "Expected: ${exp_targets[*]}" + eqawarn fi if [[ ${all_targets[*]} != ${ALL_LLVM_TARGETS[*]#llvm_targets_} ]]; then - ewarn "ALL_LLVM_TARGETS is outdated!" - ewarn " Have: ${ALL_LLVM_TARGETS[*]#llvm_targets_}" - ewarn "Expected: ${all_targets[*]}" + eqawarn "ALL_LLVM_TARGETS is outdated!" + eqawarn " Have: ${ALL_LLVM_TARGETS[*]#llvm_targets_}" + eqawarn "Expected: ${all_targets[*]}" fi }