Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/
Date: Tue, 28 Feb 2023 03:10:49
Message-Id: 1677553826.eca90b6049a9ce42ec6868f64abcab403c9f4190.sam@gentoo
1 commit: eca90b6049a9ce42ec6868f64abcab403c9f4190
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 03:10:26 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 03:10:26 2023 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=eca90b60
7
8 install-qa-check.d/90config-impl-decl: prefix warning with 'QA Notice'
9
10 ... so tinderboxes can pick it up more easily.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 bin/install-qa-check.d/90config-impl-decl | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/bin/install-qa-check.d/90config-impl-decl b/bin/install-qa-check.d/90config-impl-decl
18 index d1bc0e067..0e758e87d 100644
19 --- a/bin/install-qa-check.d/90config-impl-decl
20 +++ b/bin/install-qa-check.d/90config-impl-decl
21 @@ -92,12 +92,13 @@ config_impl_decl_check() {
22 # Drop out early if no impl decls found (all the arrays are the same size)
23 [[ ${#files[@]} -eq 0 ]] && return
24
25 - eqawarn 'Found the following implicit function declarations in configure logs:'
26 + eqawarn 'QA Notice: Found the following implicit function declarations in configure logs:'
27 for l in "${!files[@]}"; do
28 eqawarn " ${files[l]}:${lines[l]} - ${funcs[l]}"
29 eqatag 'config.log-impl-decl' "line=${lines[l]}" "func=${funcs[l]}" "${files[l]}"
30 done
31 eqawarn 'Check that no features were accidentally disabled.'
32 + eqawarn 'See https://wiki.gentoo.org/wiki/Modern_C_porting.'
33 }
34
35 config_impl_decl_check