diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-06-28 01:53:03 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-06-28 01:56:02 -0700 |
commit | 240bcc0be5412ff36dc338af3c34717b96a9a4e4 (patch) | |
tree | 1d8e3c3b58e7b3e3eab92afd518e0414114edeea /metadata | |
parent | mail-mta/postfix: [QA] Fix missing eend arg (diff) | |
download | gentoo-240bcc0be5412ff36dc338af3c34717b96a9a4e4.tar.gz gentoo-240bcc0be5412ff36dc338af3c34717b96a9a4e4.tar.bz2 gentoo-240bcc0be5412ff36dc338af3c34717b96a9a4e4.zip |
metadata/install-qa-check.d: add "QA Notice:" string to some checks
Bug: https://bugs.gentoo.org/728046
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'metadata')
-rw-r--r-- | metadata/install-qa-check.d/60appdata-path | 5 | ||||
-rw-r--r-- | metadata/install-qa-check.d/60libcrypt-deps | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/metadata/install-qa-check.d/60appdata-path b/metadata/install-qa-check.d/60appdata-path index 578137a3e9e7..a2403083a491 100644 --- a/metadata/install-qa-check.d/60appdata-path +++ b/metadata/install-qa-check.d/60appdata-path @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # QA check: ensure that metadata files are installed in /usr/share/metainfo @@ -13,8 +13,7 @@ appdata_path_check() { done < <(find "${ED%/}/usr/share/appdata" -name '*.xml' -print0 || die) if [[ ${found[@]} ]]; then - eqawarn - eqawarn "This package seems to install metainfo files into the following" + eqawarn "QA Notice: This package seems to install metainfo files into the following" eqawarn "location(s):" eqawarn eqatag -v appdata.invalid-path "${found[@]#${D%/}}" diff --git a/metadata/install-qa-check.d/60libcrypt-deps b/metadata/install-qa-check.d/60libcrypt-deps index 3ea1b5372ce8..26120f7cb8e7 100644 --- a/metadata/install-qa-check.d/60libcrypt-deps +++ b/metadata/install-qa-check.d/60libcrypt-deps @@ -28,7 +28,7 @@ libcrypt_check() { -print0 | xargs -0 scanelf -qyRF '%F %n' | grep 'libcrypt\.so' 2>/dev/null ) if [[ -n ${libcrypt_consumers[@]} ]]; then - eqawarn "Binary files linked to libcrypt.so found" + eqawarn "QA Notice: Binary files linked to libcrypt.so found" eqawarn "But a dependency on virtual/libcrypt is not declared!" eqawarn eqatag -v virtual-libcrypt.missing "${libcrypt_consumers[@]%% *}" |