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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9136F15800A for ; Sat, 29 Jul 2023 03:57:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0597E0ACB; Sat, 29 Jul 2023 03:57:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B6281E0ACB for ; Sat, 29 Jul 2023 03:57:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E4F47335C36 for ; Sat, 29 Jul 2023 03:57:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C7BFE77 for ; Sat, 29 Jul 2023 03:57:50 +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: <1690602920.da9e55236ef40ab4887415814c7f6ddd2abf083c.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/60openrc X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: da9e55236ef40ab4887415814c7f6ddd2abf083c X-VCS-Branch: master Date: Sat, 29 Jul 2023 03:57:50 +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: 3bef5ace-8a4b-4c7c-bc9f-b091c2df0023 X-Archives-Hash: f1b01b01b08b0127af88a45c14880412 commit: da9e55236ef40ab4887415814c7f6ddd2abf083c Author: Florian Schmaus gentoo org> AuthorDate: Wed Jul 26 10:22:01 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 29 03:55:20 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=da9e5523 install-qa-check.d/60openrc: be explicit about OpenRC Be explicit that this is not some arbitrary shell script that is checked by the QA check, but an OpenRC runscript. Signed-off-by: Florian Schmaus gentoo.org> Closes: https://github.com/gentoo/portage/pull/1074 Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/60openrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-qa-check.d/60openrc b/bin/install-qa-check.d/60openrc index 0ab27f646..4d6199432 100644 --- a/bin/install-qa-check.d/60openrc +++ b/bin/install-qa-check.d/60openrc @@ -32,7 +32,7 @@ openrc_check() { [[ -L ${i} ]] && continue f=$("${checkbashisms}" -n -f "${i}" 2>&1) [[ $? != 0 && -n ${f} ]] || continue - eqawarn "QA Notice: shell script appears to use non-POSIX feature(s):" + eqawarn "QA Notice: OpenRC shell script appears to use non-POSIX feature(s):" while read -r ; do eqawarn " ${REPLY}" done <<< "${f//${ED}}"