zsh-completions/src/_dget

37 lines
1.7 KiB
Plaintext
Raw Normal View History

2013-05-31 03:03:50 +00:00
#compdef dget
# ------------------------------------------------------------------------------
# Description
# -----------
#
# Completion script for dget
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
# * Kris Shannon <kris@staff.sisgroup.com.au>
#
# ------------------------------------------------------------------------------
_dget() {
local context state line expl
local -A opt_args
_arguments -A "-*" \
'(--no-conf -h --help)'{-h,--help}'[Show help message]' \
'(--no-conf -V --version)'{-v,--version}'[Print license, copyright, and version information and exit]' \
'(--no-conf -b --backup)'{-b,--backup}'[Move files that would be overwritten to ./backup]' \
'(--no-conf -q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \
'(--no-conf -x --extract -d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \
'(--no-conf -x --extract -d --download-only --build)'{-x,--extract}'[Unpack downloaded source]' \
'(--no-conf -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \
'(--no-conf -u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \
'(--no-conf)--path[Check this directory in addition to the apt archive]:DIR:_files -/' \
'(--no-conf --insecure)--insecure[Do not check SSL certificates when downloading]' \
'(--no-conf --no-cache)--no-cache[Disable server-side HTTP cache]' \
2013-05-31 03:03:50 +00:00
"(--no-conf)--no-conf[Don't read devscripts config files]" \
'(-)*:debian package urls:_urls'
2013-05-31 03:03:50 +00:00
}
_dget "$@"