Merge pull request #947 from zsh-users/update-dget

Update dget completion
This commit is contained in:
Shohei YOSHIDA 2022-11-23 13:47:30 +09:00 committed by GitHub
commit b96a310c96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 17 deletions

View File

@ -28,7 +28,7 @@
# Description # Description
# ----------- # -----------
# #
# Completion script for dget # Completion script for dget 2.22.2
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Authors # Authors
@ -40,23 +40,24 @@
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
_dget() { _dget() {
local context state line expl local context state line expl
local -A opt_args local -A opt_args
_arguments -A "-*" \ _arguments -A "-*" \
'(--no-conf -h --help)'{-h,--help}'[Show help message]' \ '(- *)'{-h,--help}'[Show help message]' \
'(--no-conf -V --version)'{-v,--version}'[Print license, copyright, and version information and exit]' \ '(- *)'{-v,--version}'[Print license, copyright, and version information and exit]' \
'(--no-conf -b --backup)'{-b,--backup}'[Move files that would be overwritten to ./backup]' \ '(-a --all)'{-a,--all}'[Package is a source package; download all binary packages]' \
'(--no-conf -q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \ '(--no-conf -b --backup)'{-b,--backup}'[Move files that would be overwritten to ./backup]' \
'(--no-conf -x --extract -d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \ '(--no-conf -q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \
'(--no-conf -x --extract -d --download-only --build)'{-x,--extract}'[Unpack downloaded source]' \ '(--no-conf -x --extract -d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \
'(--no-conf -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \ '(--no-conf -x --extract -d --download-only --build)'{-x,--extract}'[Unpack downloaded source]' \
'(--no-conf -u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \ '(--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 -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \
'(--no-conf --insecure)--insecure[Do not check SSL certificates when downloading]' \ '(--no-conf)--path[Check this directory in addition to the apt archive]:DIR:_files -/' \
'(--no-conf --no-cache)--no-cache[Disable server-side HTTP cache]' \ '(--no-conf --insecure)--insecure[Do not check SSL certificates when downloading]' \
"(--no-conf)--no-conf[Don't read devscripts config files]" \ '(--no-conf --no-cache)--no-cache[Disable server-side HTTP cache]' \
'(-)*:debian package or URL: _alternative "_deb_packages available" "_urls"' "(--no-conf)--no-conf[Don't read devscripts config files]" \
'(-)*:debian package or URL: _alternative "_deb_packages available" "_urls"'
} }
_dget "$@" _dget "$@"