1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-29 06:51:03 +02:00
zsh/Completion/Debian/Command/_dscverify
Daniel Shahaf 8498f8864e unposted: Use alternation patterns rather than brace expansion
(Cf. discussion on GitLab !12.)
2020-05-07 22:23:26 +00:00

30 lines
869 B
Text

#compdef dscverify
# $ dscverify --version
# This is dscverify, from the Debian devscripts package, version 2.20.2
# ...
_dscverify() {
local all_opts=(
'--help[show the help message and exit]'
'--version[show the version + copyright and exit]'
'--no-default-keyrings[do not check against the default keyrings]'
'*--keyring[add keyring to the list of keyrings used]:keyring:_files -g "*.(kbx|gpg)(-.)"'
'(--nosigcheck --no-sig-check -u)'{--nosigcheck,--no-sig-check,-u}'[do not verify the GPG signature]'
'--verbose[do not suppress GPG output]'
'*:dsc file:_files -g "*.(changes|dsc|buildinfo)(-.)"'
)
local first_only=(
'(--no-conf --noconf)'{--no-conf,--noconf}'[do not read the devscripts config file]'
)
if (( CURRENT == 2 )); then
all_opts+=($first_only)
fi
_arguments \
"$all_opts[@]"
}
_dscverify "$@"