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 65A88139335 for ; Mon, 28 Jun 2021 08:56:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD7B2E0958; Mon, 28 Jun 2021 08:56:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 94C1BE0958 for ; Mon, 28 Jun 2021 08:56:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9BAED335DAC for ; Mon, 28 Jun 2021 08:56:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E929A63F for ; Mon, 28 Jun 2021 08:56:17 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1624870562.240bcc0be5412ff36dc338af3c34717b96a9a4e4.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: metadata/install-qa-check.d/ X-VCS-Repository: repo/gentoo X-VCS-Files: metadata/install-qa-check.d/60appdata-path metadata/install-qa-check.d/60libcrypt-deps X-VCS-Directories: metadata/install-qa-check.d/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 240bcc0be5412ff36dc338af3c34717b96a9a4e4 X-VCS-Branch: master Date: Mon, 28 Jun 2021 08:56:17 +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: 15e42cb8-c2ba-4170-924c-98ce1f0f6cde X-Archives-Hash: 798e427cd2aa1fa8f4a986904392aba6 commit: 240bcc0be5412ff36dc338af3c34717b96a9a4e4 Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Jun 28 08:53:03 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Jun 28 08:56:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=240bcc0b metadata/install-qa-check.d: add "QA Notice:" string to some checks Bug: https://bugs.gentoo.org/728046 Signed-off-by: Georgy Yakovlev gentoo.org> metadata/install-qa-check.d/60appdata-path | 5 ++--- 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 578137a3e9e..a2403083a49 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 3ea1b5372ce..26120f7cb8e 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[@]%% *}"