| OLD | NEW |
| (Empty) |
| 1 #compdef tap2rpm | |
| 2 _arguments -s -A "-*" \ | |
| 3 '(--description)-e[description]:description:_files' \ | |
| 4 '(-e)--description=[description]:description:_files' \ | |
| 5 '--help[Display this help and exit.]' \ | |
| 6 '(--long_description)-l[long_description]:long_description:_files' \ | |
| 7 '(-l)--long_description=[long_description]:long_description:_files' \ | |
| 8 '(--maintainer)-m[maintainer]:maintainer:_files' \ | |
| 9 '(-m)--maintainer=[maintainer]:maintainer:_files' \ | |
| 10 '(--protocol)-p[protocol]:protocol:_files' \ | |
| 11 '(-p)--protocol=[protocol]:protocol:_files' \ | |
| 12 '(--rpmfile)-r[rpmfile]:rpmfile:_files -g "*.rpm"' \ | |
| 13 '(-r)--rpmfile=[rpmfile]:rpmfile:_files -g "*.rpm"' \ | |
| 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']:type:(tap
xml source python)" \ | |
| 19 "(-y)--type=[type of configuration: 'tap', 'xml, 'source' or 'python']:type:(tap
xml source python)" \ | |
| 20 '(--unsigned)-u[unsigned]' \ | |
| 21 '(-u)--unsigned[unsigned]' \ | |
| 22 '--version[version]' \ | |
| 23 && return 0 | |
| OLD | NEW |