about summary refs log tree commit diff
path: root/Completion/Debian/Command/_dput
blob: 5fe9847d157c4939c3c3626aff07147cbf926235 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#compdef dput

if (( ! $+_dput_sites )); then
  _dput_sites=( ${${(M)${(f)"$(</etc/dput.cf)"}:#\[*}//[][]/} )
fi

_arguments '(-c)--config[config file]:config file:' \
           '(--config)-c[config file]:config file:' \
           '(--debug)-d[debug mode]' \
           '(-d)--debug[debug mode]' \
           '(--dinstall)-D[run dinstall after upload]' \
           '(-D)--dinstall[run dinstall after upload]' \
           '(--force)-f[force upload of already uploaded package]' \
           '(-f)--force[force upload of already uploaded package]' \
           '(--lintian)-l[run lintian before upload]' \
           '(-l)--lintian[run lintian before upload]' \
           '(-o)--check-only[check the package, do not upload]' \
           '(--check-only)-o[check the package, do not upload]' \
           '(--print)-p[print configuration]' \
           '(-p)--print[print configuration]' \
           '(--simulate)-s[simulate an upload only]' \
           '(-s)--simulate[simulate an upload only]' \
           '(--unchecked)-u[do not check GPG signature on the changes file]' \
           '(-u)--unchecked[do not check GPG signature on the changes file]' \
           '(-v)--version[version]' \
           '(--version)-v[version]' \
           '*:changes file:_files -g \*.changes' \