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 707F5158030 for ; Tue, 28 Feb 2023 03:10:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A71CEE070D; Tue, 28 Feb 2023 03:10:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8F174E070D for ; Tue, 28 Feb 2023 03:10:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99E7F340D50 for ; Tue, 28 Feb 2023 03:10:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FD168AA for ; Tue, 28 Feb 2023 03:10:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1677553826.eca90b6049a9ce42ec6868f64abcab403c9f4190.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/90config-impl-decl X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eca90b6049a9ce42ec6868f64abcab403c9f4190 X-VCS-Branch: master Date: Tue, 28 Feb 2023 03:10:46 +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: c590761e-c079-4345-a3c8-9e56737b023c X-Archives-Hash: a5cec9d3142a3b49111ce7cdb1bd6486 commit: eca90b6049a9ce42ec6868f64abcab403c9f4190 Author: Sam James gentoo org> AuthorDate: Tue Feb 28 03:10:26 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 28 03:10:26 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=eca90b60 install-qa-check.d/90config-impl-decl: prefix warning with 'QA Notice' ... so tinderboxes can pick it up more easily. Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/90config-impl-decl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/install-qa-check.d/90config-impl-decl b/bin/install-qa-check.d/90config-impl-decl index d1bc0e067..0e758e87d 100644 --- a/bin/install-qa-check.d/90config-impl-decl +++ b/bin/install-qa-check.d/90config-impl-decl @@ -92,12 +92,13 @@ config_impl_decl_check() { # Drop out early if no impl decls found (all the arrays are the same size) [[ ${#files[@]} -eq 0 ]] && return - eqawarn 'Found the following implicit function declarations in configure logs:' + eqawarn 'QA Notice: Found the following implicit function declarations in configure logs:' for l in "${!files[@]}"; do eqawarn " ${files[l]}:${lines[l]} - ${funcs[l]}" eqatag 'config.log-impl-decl' "line=${lines[l]}" "func=${funcs[l]}" "${files[l]}" done eqawarn 'Check that no features were accidentally disabled.' + eqawarn 'See https://wiki.gentoo.org/wiki/Modern_C_porting.' } config_impl_decl_check