blob: d25b84c52a321884bf98befd15c5133552e32d22 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#compdef bug reportbug
local _bug_commonargs _rb_commonargs
_bug_commonargs=('-d[debug: send mail to postmaster@localhost]' \
'-m[maintainer-only]' \
'-p[print to stdout instead of mail]' \
'-q[quiet - no e-mail forwarding]' \
'-h[help]' \
'-v[version]' \
'*:package:_deb_packages installed')
_rb_commonargs=('(--bts)-B[use alternate BTS]:system:(debian gnome kde tdyc kde-debian)' \
'(-B)--bts=:system:(debian gnome kde tdyc kde-debian)' \
'(--ldap)-l[enable LDAP support]' \
'(-l)--ldap' \
'--no-ldap[disable LDAP support]' \
'(--http_proxy)--proxy=:proxyhost:_hosts' \
'(--proxy)--http_proxy=:proxyhost:_hosts')
case "${words[1]:t}" in
bug)
_arguments '-c[exclude configs from report]' \
'-f[argument is a file, not a package]' \
'-H[special header]:custom header:' \
'-s[set subject]:subject:' \
'-S[set severity]:severity:(wishlist normal important grave critical)' \
'-x[do not cc submitter]' \
'-z[send configs verbatim]' \
"$_bug_commonargs[@]"
;;
reportbug)
_arguments '(--no-config-files)-c[exclude configs from report]' \
'(-c)--no-config-files' \
'(--file)-f[argument is a file, not a package]:filename:' \
'(-f)--file=:filename:' \
'(--header)-H[special header]:custom header:' \
'(-H)--header=:custom header:' \
'(--subject)-s[set subject]:subject:' \
'(-s)--subject=:subject:' \
'(--severity)-S[set severity]:severity:(wishlist normal important grave critical)' \
'(-S)--severity=:severity:(wishlist normal important grave critical)' \
'(--no-cc)-x[do not cc submitter]' \
'(-x)--no-cc' \
'(--no-compress)-z[send configs verbatim]' \
'(-z)--no-compress[send configs verbatim]' \
'(--af)-a[use af instead of editor]' \
'(-a)--af[use af instead of editor]' \
'(--no-bts-query)-b[do not check bts]' \
'(-b)--no-bts-query' \
'-g[sign report with GnuPG]' \
'(--include)-i[include text]:_files' \
'(-i)--include=:_files' \
'(--mutt)-M[use mutt instead of editor]' \
'(-M)--mutt' \
'--mua=[use specified mua instead of editor]' \
'(--nmh --mh)-n[use comp instead of editor]' \
'(-n --mh)--nmh' \
'(--nmh -n)--mh' \
'(--output)-o[output to file instead of mail]' \
'(-o)--output=' \
'(--pgp)-P[sign report with PGP]' \
'(-P)--pgp' \
"$_bug_commonargs[@]" \
"$_rb_commonargs[@]"
;;
querybts)
_arguments '(--web)-w[launch external web browser]' \
'(-w)--web' \
"$_rb_commonargs[@]" \
'*:package:_deb_packages avail'
esac
|