From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 821111580E0 for ; Sun, 01 Jun 2025 21:48:02 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6B4773430B6 for ; Sun, 01 Jun 2025 21:48:02 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 63EC91104A7; Sun, 01 Jun 2025 21:47:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5ACDC1104A7 for ; Sun, 01 Jun 2025 21:47:45 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E57A23430AB for ; Sun, 01 Jun 2025 21:47:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B640F289D for ; Sun, 01 Jun 2025 21:47:42 +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: <1748814122.343992ab493e616f0c94123b8b219916363244c6.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/eapi7-ver-funcs.sh bin/estrip bin/isolated-functions.sh bin/misc-functions.sh bin/phase-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 343992ab493e616f0c94123b8b219916363244c6 X-VCS-Branch: master Date: Sun, 01 Jun 2025 21:47:42 +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: e849ae6b-6455-4319-b24e-b2a5d77b0f39 X-Archives-Hash: c925df1060e42389c6cc959a9b086118 commit: 343992ab493e616f0c94123b8b219916363244c6 Author: Kerin Millar plushkava net> AuthorDate: Sun Jun 1 03:04:14 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 1 21:42:02 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=343992ab Suppress SC2128 warnings for several units To expand the FUNCNAME shell variable as "${FUNCNAME}" triggers the SC2128 warning. Suppress it for now. Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/eapi7-ver-funcs.sh | 1 + bin/estrip | 1 + bin/isolated-functions.sh | 1 + bin/misc-functions.sh | 2 ++ bin/phase-functions.sh | 1 + 5 files changed, 6 insertions(+) diff --git a/bin/eapi7-ver-funcs.sh b/bin/eapi7-ver-funcs.sh index fa61b6cce3..45a8285b70 100644 --- a/bin/eapi7-ver-funcs.sh +++ b/bin/eapi7-ver-funcs.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# shellcheck disable=SC2128 __eapi7_ver_parse_range() { local range=${1} diff --git a/bin/estrip b/bin/estrip index 136615eaaa..b4145645a3 100755 --- a/bin/estrip +++ b/bin/estrip @@ -1,6 +1,7 @@ #!/usr/bin/env bash # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# shellcheck disable=SC2128 source "${PORTAGE_BIN_PATH}"/helper-functions.sh || exit 1 diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 73a94dac7e..a1ff58816e 100644 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# shellcheck disable=SC2128 source "${PORTAGE_BIN_PATH}/eapi.sh" || exit 1 diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index da7ff2da47..9510116c3c 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -1,4 +1,6 @@ #!/usr/bin/env bash +# shellcheck disable=SC2128 + # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh index 830ba451cf..9749f65f60 100644 --- a/bin/phase-functions.sh +++ b/bin/phase-functions.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash # Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# shellcheck disable=SC2128 # Hardcoded bash lists are needed for backward compatibility with #