In this changeset, I use the following script...
```bash
KEY_IDS="$(xargs < keys.list)"
GNUPGHOME=gpg gpg --keyserver keys.openpgp.org --receive-keys ${KEY_IDS}
for KEY_ID in ${KEY_IDS}; do
if [ -n "${KEY_ID}" ]; then
GNUPGHOME=gpg gpg --export --armor "${KEY_ID}" > "keys/${KEY_ID}.asc"
fi
done
```
...to pull the latest keys from keys.openpgp.org, as of 2021-06-28.
The resulting output is as follows:
```
gpg: key D3A89613643B6201: "Danielle Adams <[email protected]>" not changed
gpg: key 7D33FF9D0246406D: "Timothy J Fontaine (Personal) <[email protected]>" not changed
gpg: key 50A3051F888C628D: "Julien Gilli <[email protected]>" not changed
gpg: key 23EFEFE93C4CFFFE: "Italo A. Casas <[email protected]>" not changed
gpg: key B0A78B0A6C481CF6: "isaacs (http://blog.izs.me/) <[email protected]>" not changed
gpg: key 6D5A82AC7E37093B: "Christopher Dickinson <[email protected]>" not changed
gpg: key 97B01419BD92F80A: "Ruy Adorno <[email protected]>" not changed
gpg: key F13993A75599653C: "Shelley Vohr (security is major key) <[email protected]>" not changed
gpg: key F07496B3EB3C1762: "Ruben Bridgewater <[email protected]>" not changed
gpg: key C273792F7D83545D: "Rod Vagg <[email protected]>" not changed
gpg: key C43CEC45C17AB93C: "Richard Lau <[email protected]>" 1 new user ID
gpg: key C43CEC45C17AB93C: "Richard Lau <[email protected]>" 1 new signature
gpg: key E73BC641CC11F4C8: "Myles Borins <[email protected]>" 1 new user ID
gpg: key E73BC641CC11F4C8: "Myles Borins <[email protected]>" 1 new signature
gpg: key 770F7A9A5AE15600: "Michaël Zasso (Targos) <[email protected]>" not changed
gpg: key 09FE44734EB7990E: "Jeremiah Senkpiel <[email protected]>" not changed
gpg: key C97EC7A07EDE3FC1: "keybase.io/jasnell <[email protected]>" not changed
gpg: key B01FBB92821C587A: "Gibson Fahnestock <[email protected]>" not changed
gpg: key B63B535A4C206CA9: "Evan Lucas <[email protected]>" 1 new user ID
gpg: key B63B535A4C206CA9: "Evan Lucas <[email protected]>" 4 new signatures
gpg: key 92EF661D867B9DFA: "danielleadams <[email protected]>" revocation certificate added
gpg: key 92EF661D867B9DFA: "danielleadams <[email protected]>" 1 new signature
gpg: key 7434390BDBE9B9C5: "Colin Ihrig <[email protected]>" not changed
gpg: key D7062848A1AB005C: "Beth Griggs <[email protected]>" 1 new user ID
gpg: key D7062848A1AB005C: "Beth Griggs <[email protected]>" 8 new signatures
gpg: Total number processed: 20
gpg: unchanged: 15
gpg: new user IDs: 4
gpg: new signatures: 15
```
I then committed the resulting changes, omitting **gpg/pubring.kbx~**,
which should probably be added to .gitignore.