commit: e838026204d9e8ff63cac5c33a86b0b1f179f3e1 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sun Jun 14 19:10:21 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sun Jun 14 19:10:59 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e8380262
ecompress: prefix eqawarn messages with QA Notice (bug 728046) Reported-by: Agostino Sarubbo <ago <AT> gentoo.org> Bug: https://bugs.gentoo.org/728046 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> bin/ecompress | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/ecompress b/bin/ecompress index 2d74ed07a..7aabc8e4c 100755 --- a/bin/ecompress +++ b/bin/ecompress @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 source "${PORTAGE_BIN_PATH}"/isolated-functions.sh || exit 1 @@ -88,7 +88,7 @@ while [[ $# -gt 0 ]] ; do done < <(find "${find_args[@]}" -print0 || die) if [[ ${#collisions[@]} -gt 0 ]]; then - eqawarn "Colliding files found by ecompress:" + eqawarn "QA Notice: Colliding files found by ecompress:" eqawarn for x in "${!collisions[@]}"; do eqawarn " ${x}" @@ -189,9 +189,9 @@ find "${ED}" -name '*.ecompress' -delete -print0 | ret=${?} if [[ -s ${T}/.ecompress_had_precompressed ]]; then - eqawarn "One or more compressed files were found in docompress-ed directories." - eqawarn "Please fix the ebuild not to install compressed files (manpages," - eqawarn "documentation) when automatic compression is used:" + eqawarn "QA Notice: One or more compressed files were found in docompress-ed" + eqawarn "directories. Please fix the ebuild not to install compressed files" + eqawarn "(manpages, documentation) when automatic compression is used:" eqawarn n=0 while read -r f; do
