Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [PATCH] _gpg: Use explicit UIDs for state = public keys.
- X-seq: zsh-workers 43120
- From: Doron Behar <doron.behar@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: [PATCH] _gpg: Use explicit UIDs for state = public keys.
- Date: Thu, 28 Jun 2018 16:43:10 +0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to:user-agent; bh=2dBLPc/dD3tBIBOKrPCVVNGVcCCIOCYPTMxzXFy8U2s=; b=QubFWD+ox0VSIPhGudszeLwWcPgfT38OnJVAPSvy1bcbaWrbE40c96L6FW3QeZiLfn eXi0S73rEfwhxxWbr29K2fgS6Ar7ghEAFmZSdiSl/aTBH/F36CskmNdgMFG+5VHyV9jc xoUumVSjLQZGh+dPMloKiGf/KfD+ZRXKeeWxBR4saery0G2PjLhMtshbcuDkv7Sv+zfW 9aJASn1FYUHNic4kzrXeTj+oZRQM+4eBIfEqIRF02oExmLvt+efUlQPHgfSsDM+jOGSi FKuaAg1OOH7UUJuaVacacpPgJCxO9MP5opqNQJMTYS4t+edIzD3ZqREO4s4XVv4Q6tik F22A==
- In-reply-to: <20180623172637.tt5xittrjfjhwboc@NUC.doronbehar.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mail-followup-to: zsh-workers@xxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20180618194748.4676-1-doron.behar@gmail.com> <20180623172637.tt5xittrjfjhwboc@NUC.doronbehar.com>
Hey guys, just reminding you there is still a patch here waiting for you
to merge it.
On Sat, Jun 23, 2018 at 08:26:37PM +0300, Doron Behar wrote:
> Hey guys, is this patch O.K? Can we merge it please? I've been waiting a
> while for a response now, it'll be great to get some feedback.
>
> On Mon, Jun 18, 2018 at 10:47:48PM +0300, doron.behar@xxxxxxxxx wrote:
> > From: Doron Behar <doron.behar@xxxxxxxxx>
> >
> > Use the `--with-colons` option and parse the output according to the
> > format specified in the documentation.
> > ---
> > Completion/Unix/Command/_gpg | 62 ++++++++++++++++++++++++++++++++----
> > 1 file changed, 55 insertions(+), 7 deletions(-)
> >
> > diff --git a/Completion/Unix/Command/_gpg b/Completion/Unix/Command/_gpg
> > index 48a36eff2..b35693d1f 100644
> > --- a/Completion/Unix/Command/_gpg
> > +++ b/Completion/Unix/Command/_gpg
> > @@ -206,20 +206,68 @@ fi
> >
> > case "$state" in
> > public-keys)
> > - _wanted public-keys expl 'public key' \
> > - compadd ${${(Mo)$(_call_program public-keys $words[1] $needed --list-public-keys --list-options no-show-photos):%<*>}//(<|>)/} && return
> > + local public_keys_lines=(${(f)"$(_call_program public-keys ${(q)words[1]} ${(q)needed} --list-public-keys --list-options no-show-photos --with-colons)"})
> > + local -a uids emails
> > + local i j parts current_uid
> > + for (( i = 1; i < ${#public_keys_lines[@]}; ++i )); do
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + if [[ ${parts[1]} == "fpr" ]]; then
> > + current_uid="${parts[10]}"
> > + i=$((i + 1))
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + while [[ ${parts[1]} == "uid" ]]; do
> > + uids+=("${current_uid}")
> > + emails+=("${parts[10]}")
> > + i=$((i + 1))
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + done
> > + fi
> > + done
> > + _describe -t public-keys 'public key' emails uids
> > ;;
> > secret-keys)
> > - _wanted secret-keys expl 'secret key' compadd \
> > - ${${(Mo)$(_call_program secret-keys $words[1] $needed --list-secret-keys --list-options no-show-photos):%<*>}//(<|>)/} && return
> > + local secret_keys_lines=(${(f)"$(_call_program secret-keys ${(q)words[1]} ${(q)needed} --list-secret-keys --list-options no-show-photos --with-colons)"})
> > + local -a uids emails
> > + local i j parts current_uid
> > + for (( i = 1; i < ${#secret_keys_lines[@]}; ++i )); do
> > + parts=("${(@s.:.)secret_keys_lines[$i]}")
> > + if [[ ${parts[1]} == "fpr" ]]; then
> > + current_uid="${parts[10]}"
> > + i=$((i + 1))
> > + parts=("${(@s.:.)secret_keys_lines[$i]}")
> > + while [[ ${parts[1]} == "uid" ]]; do
> > + uids+=("${current_uid}")
> > + emails+=("${parts[10]}")
> > + i=$((i + 1))
> > + parts=("${(@s.:.)secret_keys_lines[$i]}")
> > + done
> > + fi
> > + done
> > + _describe -t secret-keys 'secret key' emails uids
> > ;;
> > ciphers)
> > _wanted ciphers expl cipher compadd \
> > - ${${(s.,.)${(M)${(f)${"$(_call_program ciphers $words[1] $needed --version)"}//,$'\n' #/, }:#Cipher*}#*:}# } && return
> > + ${${(s.,.)${(M)${(f)${"$(_call_program ciphers ${(q)words[1]} ${(q)needed} --version)"}//,$'\n' #/, }:#Cipher*}#*:}# } && return
> > ;;
> > (public-keyids)
> > - _wanted public-keys expl 'public keyid' \
> > - compadd ${(M)${${(f)"$(_call_program public-keyids $words[1] $needed --list-public-keys --list-options no-show-photos)"}## #}:#[0-9A-F](#c40)} && return
> > + local public_keys_lines=(${(f)"$(_call_program public-keyids ${(q)words[1]} ${(q)needed} --list-public-keys --list-options no-show-photos --with-colons)"})
> > + local -a uids emails
> > + local i j parts current_uid
> > + for (( i = 1; i < ${#public_keys_lines[@]}; ++i )); do
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + if [[ ${parts[1]} == "fpr" ]]; then
> > + current_uid="${parts[10]}"
> > + i=$((i + 1))
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + while [[ ${parts[1]} == "uid" ]]; do
> > + uids+=("${current_uid}")
> > + emails+=("${parts[10]}")
> > + i=$((i + 1))
> > + parts=("${(@s.:.)public_keys_lines[$i]}")
> > + done
> > + fi
> > + done
> > + _describe -t public-keyids 'public key' emails uids
> > ;;
> > (option-list)
> > _sequence _wanted options expl option \
> > --
> > 2.17.1
> >
Messages sorted by:
Reverse Date,
Date,
Thread,
Author