From a5f0a52034decd7f5e09f80942ba4b877a29c925 Mon Sep 17 00:00:00 2001 From: Shohei YOSHIDA Date: Tue, 17 Feb 2026 13:55:42 +0900 Subject: [PATCH] Add missing '-k' flag completion and cleanup code --- src/_dget | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/src/_dget b/src/_dget index 4a507d0..9df7183 100644 --- a/src/_dget +++ b/src/_dget @@ -28,7 +28,7 @@ # Description # ----------- # -# Completion script for dget 2.22.2 +# Completion script for dget 2.25.19 # # ------------------------------------------------------------------------------ # Authors @@ -39,28 +39,21 @@ # # ------------------------------------------------------------------------------ -_dget() { - local context state line expl - local -A opt_args - - _arguments -A "-*" \ - '(- *)'{-h,--help}'[Show help message]' \ - '(- *)'{-v,--version}'[Print license, copyright, and version information and exit]' \ - '(-a --all)'{-a,--all}'[Package is a source package; download all binary packages]' \ - '(--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 -u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \ - '(--no-conf -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \ - '(--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]' \ - "(--no-conf)--no-conf[Don't read devscripts config files]" \ - '(-)*:debian package or URL: _alternative "_deb_packages available" "_urls"' -} - -_dget "$@" +_arguments -A "-*" \ + '(- *)'{-h,--help}'[Show help message]' \ + '(- *)'{-v,--version}'[Print license, copyright, and version information and exit]' \ + '(-a --all)'{-a,--all}'[Package is a source package; download all binary packages]' \ + '(--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 -u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \ + '(--no-conf -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \ + '(--no-conf)--path[Check this directory in addition to the apt archive]:DIR:_files -/' \ + '(--no-conf -k --insecure)'{-k,--insecure}'[Do not check SSL certificates when downloading]' \ + '(--no-conf --no-cache)--no-cache[Disable server-side HTTP cache]' \ + "(--no-conf)--no-conf[Don't read devscripts config files]" \ + '(-)*:debian package or URL: _alternative "_deb_packages available" "_urls"' # Local Variables: # mode: Shell-Script