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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3ACE7138239 for ; Wed, 18 Jul 2018 13:59:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FC38E08FE; Wed, 18 Jul 2018 13:59:30 +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 10A5CE08FE for ; Wed, 18 Jul 2018 13:59:29 +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 207E6335C7A for ; Wed, 18 Jul 2018 13:59:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FF482AA for ; Wed, 18 Jul 2018 13:59:25 +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: <1531922361.fabe5d056d65ea6b2e6b79b61c1aa512d71066dd.mgorny@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: create-dev-keyrings.bash X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fabe5d056d65ea6b2e6b79b61c1aa512d71066dd X-VCS-Branch: master Date: Wed, 18 Jul 2018 13:59:25 +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-Archives-Salt: ffb5936d-fef0-4e9d-af9b-50a4adfe09cc X-Archives-Hash: 651d1ec3c743450ae45694a3ce53ed79 commit: fabe5d056d65ea6b2e6b79b61c1aa512d71066dd Author: Michał Górny gentoo org> AuthorDate: Wed Jul 18 13:55:09 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 18 13:59:21 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=fabe5d05 create-dev-keyrings: Use a single 'gpg --recv-keys' call create-dev-keyrings.bash | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/create-dev-keyrings.bash b/create-dev-keyrings.bash index ea31587..4e66655 100755 --- a/create-dev-keyrings.bash +++ b/create-dev-keyrings.bash @@ -52,10 +52,9 @@ NONCOMMITTING_DEVS=( $(grab_ldap_fingerprints "${NONCOMMIT_RULE}") ) export GNUPGHOME=$(mktemp -d) trap 'rm -rf "${GNUPGHOME}"' EXIT -grab_keys "${COMMITTING_DEVS[@]}" -gpg --export > "${OUTPUT_DIR}"/committing-devs.gpg -grab_keys "${NONCOMMITTING_DEVS[@]}" -gpg --export > "${OUTPUT_DIR}"/active-devs.gpg +grab_keys "${COMMITTING_DEVS[@]}" "${NONCOMMITTING_DEVS[@]}" +gpg --export "${COMMITTING_DEVS[@]}" > "${OUTPUT_DIR}"/committing-devs.gpg +gpg --export "${COMMITTING_DEVS[@]}" "${NONCOMMITTING_DEVS[@]}" > "${OUTPUT_DIR}"/active-devs.gpg # -- not all are on keyservers #grab_keys "${RETIRED_DEVS[@]}" #gpg --export > "${OUTPUT_DIR}"/all-devs.gpg