summaryrefslogtreecommitdiff
path: root/bin/pacman-make-keyring
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2019-11-26 21:02:49 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2019-11-26 21:02:49 -0500
commit719161d52c71192f59d75742898d61590e99d524 (patch)
treee246a5c25f7a7b2ee5178a99233c83d38b959bd5 /bin/pacman-make-keyring
parentbb3d3cb473e2ab53ee29e6f12d96a0df7a4a6b71 (diff)
wip - import keys from hackers.gitwip-import-keys-from-hackers-git
Diffstat (limited to 'bin/pacman-make-keyring')
-rwxr-xr-xbin/pacman-make-keyring2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/pacman-make-keyring b/bin/pacman-make-keyring
index 702ea69..101f92c 100755
--- a/bin/pacman-make-keyring
+++ b/bin/pacman-make-keyring
@@ -24,6 +24,7 @@ endif
bin := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
yamldir := $(shell ruby -e "load '$(bin)/common.rb'; print cfg['yamldir']")
+keysdir := $(shell ruby -e "load '$(bin)/common.rb'; print cfg['keysdir']")
cachedir := $(shell ruby -e "load '$(bin)/common.rb'; print cfg['keyring_cachedir']")
outputdir = $(cachedir)/$(KEYRING_NAME)-keyring-$(V)
@@ -138,6 +139,7 @@ keyid=$(keyid.$(patsubst %.asc,%,$(notdir $@)))
$(outputdir)/${KEYRING_NAME}-trusted: ${users} | $(outputdir)
$(bin)/pgp-list-keyids | sed -rn 's|^trusted/\S+ (\S+)|\1:4:|p' > $@
$(cachedir)/keys/trusted/%.asc : $(cachedir)/stamp.gpg-init | $(cachedir)/keys/trusted
+ TODO: "if exists ${keysdir}/${keyid}.asc ..." else "the original behavior below"
${GPG} --recv-keys ${keyid} &>/dev/null
printf 'minimize\nquit\ny\n' | ${GPG} --command-fd 0 --edit-key ${keyid}
printf 'y\ny\n' | ${GPG} --command-fd 0 --lsign-key ${keyid} &>/dev/null