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 B98CE15ACFC for ; Mon, 1 May 2023 07:22:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A1E1E084E; Mon, 1 May 2023 07:22:01 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 6CE82E084E for ; Mon, 1 May 2023 07:22:01 +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 632603414C7 for ; Mon, 1 May 2023 07:22:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9AAA3A4F for ; Mon, 1 May 2023 07:21:58 +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: <1682925657.1af922156c439fff5e9ebb1eb296ad66d857f5e7.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/emerge-webrsync X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1af922156c439fff5e9ebb1eb296ad66d857f5e7 X-VCS-Branch: master Date: Mon, 1 May 2023 07:21:58 +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: d96c44d2-affa-44ce-8eb0-dd945adf43be X-Archives-Hash: daef83ceec423811b0ed0c6a97c5142f commit: 1af922156c439fff5e9ebb1eb296ad66d857f5e7 Author: Sam James gentoo org> AuthorDate: Sun Apr 30 05:18:47 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 1 07:20:57 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1af92215 emerge-webrsync: use EPREFIX for gemato keyring path Bug: https://bugs.gentoo.org/905358 Signed-off-by: Sam James gentoo.org> bin/emerge-webrsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index faf7bb752..11d6937cd 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -274,7 +274,7 @@ check_file_signature_gemato() { if type -P gemato > /dev/null; then local gemato_args=( openpgp-verify-detached - -K /usr/share/openpgp-keys/gentoo-release.asc + -K "${EPREFIX:-/}"/usr/share/openpgp-keys/gentoo-release.asc ) [[ ${PORTAGE_QUIET} == 1 ]] && gemato_args+=( --quiet )