Skip to content

Commit 3d6fb8c

Browse files
authored
Merge pull request #449 from KrisShannon/dget
Small update to _dget
2 parents d04a31c + c941533 commit 3d6fb8c

File tree

1 file changed

+38
-12
lines changed

1 file changed

+38
-12
lines changed

Diff for: src/_dget

+38-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
#compdef dget
22
# ------------------------------------------------------------------------------
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+
# ------------------------------------------------------------------------------
328
# Description
429
# -----------
530
#
@@ -9,7 +34,7 @@
934
# Authors
1035
# -------
1136
#
12-
# * Kris Shannon <[email protected].com.au>
37+
# * Kris Shannon <k.shannon@amaze.com.au>
1338
#
1439
# ------------------------------------------------------------------------------
1540

@@ -18,18 +43,19 @@ _dget() {
1843
local -A opt_args
1944

2045
_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]' \
3157
"(--no-conf)--no-conf[Don't read devscripts config files]" \
32-
'1:dsc url:_urls'
58+
'(-)*:debian package urls:_urls'
3359
}
3460

3561
_dget "$@"

0 commit comments

Comments
 (0)