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 C0AFB158074 for ; Wed, 02 Jul 2025 08:21:04 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id AB567342002 for ; Wed, 02 Jul 2025 08:21:04 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DCF5E11055D; Wed, 02 Jul 2025 08:20:57 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id D8FE811055D for ; Wed, 02 Jul 2025 08:20:57 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97256341EDB for ; Wed, 02 Jul 2025 08:20:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 337222CC6 for ; Wed, 02 Jul 2025 08:20:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1751443937.c7f15c0c01477466bae965eec6bb1d624e87e439.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/verify-sig.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c7f15c0c01477466bae965eec6bb1d624e87e439 X-VCS-Branch: master Date: Wed, 02 Jul 2025 08:20:56 +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: 3986b938-a49b-4475-adcc-2e5d9ed1612c X-Archives-Hash: 1be5e52f11c4dce6f767eed66f886f69 commit: c7f15c0c01477466bae965eec6bb1d624e87e439 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 2 06:19:31 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 2 08:12:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f15c0c verify-sig.eclass: Fix multi-file verify-sig_verify_signed_checksums Fix a regression in verify-sig_verify_signed_checksums() that caused it to incorrectly explode arguments when multiple filenames were passed to the `files` argument. Fixes: 6f570b3d2d9f (verify-sig.eclass: add app-crypt/signify support) Signed-off-by: Michał Górny gentoo.org> eclass/verify-sig.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass index 12b689f0f4b2..1cd3e1010ae5 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass @@ -412,7 +412,7 @@ verify-sig_verify_signed_checksums() { case ${VERIFY_SIG_METHOD} in openpgp) _gpg_verify_signed_checksums \ - "${checksum_file}" "${algo}" "${files[@]}" "${key}" + "${checksum_file}" "${algo}" "${files[*]}" "${key}" ;; signify) signify -C -p "${key}" \