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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4B1C915808B for ; Sun, 13 Mar 2022 18:14:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66882E0867; Sun, 13 Mar 2022 18:14:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A9F96E0867 for ; Sun, 13 Mar 2022 18:14:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 5F37B343269 for ; Sun, 13 Mar 2022 18:14:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD398287 for ; Sun, 13 Mar 2022 18:14:51 +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: <1647195166.a607e1af368a7d2b7f2d4ab088b40e129401f0c6.sam@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: check_eclasses_eapis.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a607e1af368a7d2b7f2d4ab088b40e129401f0c6 X-VCS-Branch: master Date: Sun, 13 Mar 2022 18:14:51 +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: a6653ca5-5751-4562-b9f3-c35b65db7db0 X-Archives-Hash: 47b45304b1f6b04dc44aebe35d27e629 commit: a607e1af368a7d2b7f2d4ab088b40e129401f0c6 Author: Sam James gentoo org> AuthorDate: Sun Mar 13 18:12:46 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 13 18:12:46 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=a607e1af check_eclasses_eapis.sh: minor phrasing tweak Signed-off-by: Sam James gentoo.org> check_eclasses_eapis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_eclasses_eapis.sh b/check_eclasses_eapis.sh index 56e2a1b..76c332b 100755 --- a/check_eclasses_eapis.sh +++ b/check_eclasses_eapis.sh @@ -51,7 +51,7 @@ for x in ${ECLASSES}; do mkdir "${x}" awk -F'=' '$3 ~ /[ "]'"${x%.eclass}"'[ "]/ {print $1" "$2}' "${TMPEAPIS}" > "${TMPECLASS}" pushd "${x}" > /dev/null - echo "Overall statistic for eclass \"${x}\":" > "STATS.txt" + echo "Overall statistics for eclass \"${x}\":" > "STATS.txt" for y in ${KNOWN_EAPIS}; do awk -F ' ' '$3 ~ /"'"${y}"'"/ {print $1}' "${TMPECLASS}" > "${y}.txt" tmpval=$(wc -l "${y}.txt" |cut -d' ' -f1)