OLD | NEW |
| (Empty) |
1 #compdef tap2deb | |
2 _arguments -s -A "-*" \ | |
3 '(--debfile)-d[debfile]:debfile:_files' \ | |
4 '(-d)--debfile=[debfile]:debfile:_files' \ | |
5 '(--description)-e[description]:description:_files' \ | |
6 '(-e)--description=[description]:description:_files' \ | |
7 '--help[Display this help and exit.]' \ | |
8 '(--long_description)-l[long_description]:long_description:_files' \ | |
9 '(-l)--long_description=[long_description]:long_description:_files' \ | |
10 "(--maintainer)-m[The maintainer's name and email in a specific format: 'John Do
e <johndoe@example.com>']:maintainer:_files" \ | |
11 "(-m)--maintainer=[The maintainer's name and email in a specific format: 'John D
oe <johndoe@example.com>']:maintainer:_files" \ | |
12 '(--protocol)-p[protocol]:protocol:_files' \ | |
13 '(-p)--protocol=[protocol]:protocol:_files' \ | |
14 '(--set-version)-V[set-version]:set-version:_files' \ | |
15 '(-V)--set-version=[set-version]:set-version:_files' \ | |
16 '(--tapfile)-t[tapfile]:tapfile:_files' \ | |
17 '(-t)--tapfile=[tapfile]:tapfile:_files' \ | |
18 "(--type)-y[type of configuration: 'tap', 'xml, 'source' or 'python' for .tac fi
les]:type:(tap xml source python)" \ | |
19 "(-y)--type=[type of configuration: 'tap', 'xml, 'source' or 'python' for .tac f
iles]:type:(tap xml source python)" \ | |
20 '(--unsigned)-u[unsigned]' \ | |
21 '(-u)--unsigned[unsigned]' \ | |
22 '--version[version]' \ | |
23 && return 0 | |
OLD | NEW |