1
1
#compdef dget
2
2
# ------------------------------------------------------------------------------
3
+ # Copyright (c) 2016 Github zsh-users - http://github.com/zsh-users
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are met:
8
+ # * Redistributions of source code must retain the above copyright
9
+ # notice, this list of conditions and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright
11
+ # notice, this list of conditions and the following disclaimer in the
12
+ # documentation and/or other materials provided with the distribution.
13
+ # * Neither the name of the zsh-users nor the
14
+ # names of its contributors may be used to endorse or promote products
15
+ # derived from this software without specific prior written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
21
+ # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24
+ # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ # ------------------------------------------------------------------------------
3
28
# Description
4
29
# -----------
5
30
#
9
34
# Authors
10
35
# -------
11
36
#
12
- # * Kris Shannon <
[email protected] .com.au>
37
+ # * Kris Shannon <k.shannon@amaze .com.au>
13
38
#
14
39
# ------------------------------------------------------------------------------
15
40
@@ -18,18 +43,19 @@ _dget() {
18
43
local -A opt_args
19
44
20
45
_arguments -A "-*" \
21
- '(-h --help)'{-h,--help}'[Show help message]' \
22
- '(-V --version)'{-v,--version}'[Print license, copyright, and version information and exit]' \
23
- '(-q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \
24
- '(-d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \
25
- '(-x --extract)'{-x,--extract}'[Unpack downloaded source]' \
26
- '(-u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \
27
- '(-d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \
28
- '--path[Check this directory in addition to the apt archive]:DIR:_files -/' \
29
- '(--insecure)--insecure[Do not check SSL certificates when downloading]' \
30
- '(--no-cache)--no-cache[Disable server-side HTTP cache]' \
46
+ '(--no-conf -h --help)'{-h,--help}'[Show help message]' \
47
+ '(--no-conf -V --version)'{-v,--version}'[Print license, copyright, and version information and exit]' \
48
+ '(--no-conf -b --backup)'{-b,--backup}'[Move files that would be overwritten to ./backup]' \
49
+ '(--no-conf -q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \
50
+ '(--no-conf -x --extract -d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \
51
+ '(--no-conf -x --extract -d --download-only --build)'{-x,--extract}'[Unpack downloaded source]' \
52
+ '(--no-conf -x --extract -d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \
53
+ '(--no-conf -u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \
54
+ '(--no-conf)--path[Check this directory in addition to the apt archive]:DIR:_files -/' \
55
+ '(--no-conf --insecure)--insecure[Do not check SSL certificates when downloading]' \
56
+ '(--no-conf --no-cache)--no-cache[Disable server-side HTTP cache]' \
31
57
"(--no-conf)--no-conf[Don't read devscripts config files]" \
32
- '1:dsc url :_urls'
58
+ '(-)*:debian package urls :_urls'
33
59
}
34
60
35
61
_dget "$@"
0 commit comments