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 8D7DF15ACFC for ; Mon, 1 May 2023 07:22:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE189E0855; Mon, 1 May 2023 07:22:02 +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 9E8EDE0855 for ; Mon, 1 May 2023 07:22:02 +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 B54BF3414C7 for ; Mon, 1 May 2023 07:22:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0626AA5E for ; Mon, 1 May 2023 07:21:59 +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.e1f8478c666de6c2310381457e846b4fe8fa8b39.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/sync/modules/webrsync/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/sync/modules/webrsync/webrsync.py X-VCS-Directories: lib/portage/sync/modules/webrsync/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e1f8478c666de6c2310381457e846b4fe8fa8b39 X-VCS-Branch: master Date: Mon, 1 May 2023 07:21:59 +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: 728df9aa-e1e6-4d45-9bd0-ad6b33c69aaa X-Archives-Hash: 6abeb4bcd54ee9db956f4eb6a8f7545b commit: e1f8478c666de6c2310381457e846b4fe8fa8b39 Author: Sam James gentoo org> AuthorDate: Mon May 1 06:49:30 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=e1f8478c sync: webrsync: export PORTAGE_GPG_KEY_SERVER Set PORTAGE_GPG_KEY_SERVER to sync-openpgp-keyserver configured by the user for use by emerge-webrsync to pass to gemato. Similar to previous commit for PORTAGE_GPG_KEY. Bug: https://bugs.gentoo.org/905358 Signed-off-by: Sam James gentoo.org> lib/portage/sync/modules/webrsync/webrsync.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/portage/sync/modules/webrsync/webrsync.py b/lib/portage/sync/modules/webrsync/webrsync.py index 8de7c08ad..093efe8b0 100644 --- a/lib/portage/sync/modules/webrsync/webrsync.py +++ b/lib/portage/sync/modules/webrsync/webrsync.py @@ -112,6 +112,9 @@ class WebRsync(SyncBase): self.spawn_kwargs["env"][ "PORTAGE_GPG_KEY" ] = self.repo.sync_openpgp_key_path + self.spawn_kwargs["env"][ + "PORTAGE_GPG_KEY_SERVER" + ] = self.repo.sync_openpgp_key_server except (GematoException, asyncio.TimeoutError) as e: writemsg_level( f"!!! Verification impossible due to keyring problem:\n{e}\n",