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 43094
- From: Doron Behar <doron.behar@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: [PATCH] _gpg: Use explicit UIDs for state = public keys.
- Date: Sat, 23 Jun 2018 20:26:37 +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=PlZBDCbNLOiofd1PyhxGHruBvQHKWYrW2gs/pRzRQhs=; b=mE6I4Y42IRYWGskduTVIZwmnar3YWUYKEQCHc2/UOwKtAuxS5rVcgqqJ5TRrjnvyYD nMDJCweTd2rzbD3Fau+Yf3ZSQ3wHObxtoC7VMgFmo+pAlJwS9dHLAjXNhDEaUazoEUBu CNj9qZHkfdJz/ACxkFW5wesCubJ8TqK2g9Tel+kDq/MHx3DXujbjWJB0LuP1RogYVzRQ oDV6RvTqOKG1G06JRi+v/deHP4490BpPxIJp4UeA4o5J971+0pX/smFmUVZCbmvrLRU3 lRHUhdULUDtOKsF13OLzycMj5tVCiEIYBXf0MLHIhAi2JGjWXGG5mbgjNLRgbKvrgoSB V+ng==
- In-reply-to: <20180618194748.4676-1-doron.behar@gmail.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>
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