From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1105365-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id A65F4138334
	for <garchives@archives.gentoo.org>; Tue, 13 Aug 2019 06:38:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B5CF4E077C;
	Tue, 13 Aug 2019 06:38:45 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 9CC9DE077C
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2019 06:38:45 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id ABEE3349A17
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2019 06:38:44 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id AF0A773C
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Aug 2019 06:38:42 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1565678302.e2636b51ef8d6a4245cdf5e481f28565c9b242f0.mgorny@gentoo>
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
X-VCS-Repository: proj/qa-scripts
X-VCS-Files: keyrings.inc.bash
X-VCS-Directories: /
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: e2636b51ef8d6a4245cdf5e481f28565c9b242f0
X-VCS-Branch: master
Date: Tue, 13 Aug 2019 06:38:42 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: ff09a6e7-1ac1-4e30-afd8-d77fd1b1dd19
X-Archives-Hash: d3b0d03893888e92782ee88ae590bd7b

commit:     e2636b51ef8d6a4245cdf5e481f28565c9b242f0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 13 06:38:22 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug 13 06:38:22 2019 +0000
URL:        https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e2636b51

keyrings: Fetch all signatures properly

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 keyrings.inc.bash | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/keyrings.inc.bash b/keyrings.inc.bash
index 05d40ae..39a0aec 100644
--- a/keyrings.inc.bash
+++ b/keyrings.inc.bash
@@ -34,7 +34,9 @@ grab_keys() {
 	[ "${#KEYSERVERS[@]}" -eq 0 ] && return
 	while :; do
 		for ks in "${KEYSERVERS[@]}" ; do
-			timeout ${KEYSERVER_TIMEOUT} gpg --keyserver "$ks" -q --recv-keys "${remaining[@]}" || :
+			timeout ${KEYSERVER_TIMEOUT} gpg \
+				--keyserver-options no-import-clean,no-self-sigs-only \
+				--keyserver "$ks" -q --recv-keys "${remaining[@]}" || :
 		done
 		missing=()
 		for key in "${remaining[@]}"; do