Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
Date: Tue, 13 Aug 2019 06:38:46
Message-Id: 1565678302.e2636b51ef8d6a4245cdf5e481f28565c9b242f0.mgorny@gentoo
1 commit: e2636b51ef8d6a4245cdf5e481f28565c9b242f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 06:38:22 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 06:38:22 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e2636b51
7
8 keyrings: Fetch all signatures properly
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 keyrings.inc.bash | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/keyrings.inc.bash b/keyrings.inc.bash
16 index 05d40ae..39a0aec 100644
17 --- a/keyrings.inc.bash
18 +++ b/keyrings.inc.bash
19 @@ -34,7 +34,9 @@ grab_keys() {
20 [ "${#KEYSERVERS[@]}" -eq 0 ] && return
21 while :; do
22 for ks in "${KEYSERVERS[@]}" ; do
23 - timeout ${KEYSERVER_TIMEOUT} gpg --keyserver "$ks" -q --recv-keys "${remaining[@]}" || :
24 + timeout ${KEYSERVER_TIMEOUT} gpg \
25 + --keyserver-options no-import-clean,no-self-sigs-only \
26 + --keyserver "$ks" -q --recv-keys "${remaining[@]}" || :
27 done
28 missing=()
29 for key in "${remaining[@]}"; do