diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2024-10-12 16:37:43 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2024-10-14 23:15:59 +0100 |
commit | 1e3d0054703a0a1394c556d34a2b620d14ea78d3 (patch) | |
tree | 1fdb74cc7a955f6a1a0e3aea91dab82951b9b974 /sec-keys/openpgp-keys-gentoo-developers/files | |
parent | dev-lang/algol68g: bump to 3.5.8 (diff) | |
download | gentoo-1e3d0054703a0a1394c556d34a2b620d14ea78d3.tar.gz gentoo-1e3d0054703a0a1394c556d34a2b620d14ea78d3.tar.bz2 gentoo-1e3d0054703a0a1394c556d34a2b620d14ea78d3.zip |
sec-keys/openpgp-keys-gentoo-developers: always update information about the Web of Trust
Installing this package may fail if no-auto-check-trustdb is defined in
/etc/gnupg/gpg.conf. This commit circumvent the issue by forcing
--auto-check-trustdb which takes precedence over configuration file.
Closes: https://bugs.gentoo.org/940913
Signed-off-by: Bertrand Jacquin <bertrand@jacquin.bzh>
Closes: https://github.com/gentoo/gentoo/pull/38954
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'sec-keys/openpgp-keys-gentoo-developers/files')
-rw-r--r-- | sec-keys/openpgp-keys-gentoo-developers/files/keyring-mangler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sec-keys/openpgp-keys-gentoo-developers/files/keyring-mangler.py b/sec-keys/openpgp-keys-gentoo-developers/files/keyring-mangler.py index 81e7886af56e..9019a7b3da88 100644 --- a/sec-keys/openpgp-keys-gentoo-developers/files/keyring-mangler.py +++ b/sec-keys/openpgp-keys-gentoo-developers/files/keyring-mangler.py @@ -35,7 +35,7 @@ gentoo_auth = sys.argv[1] active_devs = sys.argv[2] armored_output = sys.argv[3] -gpg = gnupg.GPG(verbose=False, gnupghome=os.environ["GNUPGHOME"]) +gpg = gnupg.GPG(verbose=False, gnupghome=os.environ["GNUPGHOME"], options="--auto-check-trustdb") gpg.encoding = "utf-8" with open(gentoo_auth, "r", encoding="utf8") as keyring: |