1#compdef uscan
2
3_arguments \
4  '(--report --no-download --download)'{--report,--no-download}'[report but do not download]' \
5  '--debug[dump downloaded pages to stdout]' \
6  '(--report --no-download --download)--download[report and download]' \
7  '(--pasv --no-pasv)--pasv[force passive mode for ftp]' \
8  '(--pasv --no-pasv)--no-pasv[do not use passive mode for ftp]' \
9  '(--symlink --no-symlink)--symlink[make orig.tar.gz symlinks]' \
10  '(--symlink --no-symlink)--no-symlink[do not make orig.tar.gz symlinks]' \
11  '(--verbose --no-verbose)--verbose[give verbose output]' \
12  '(--verbose --no-verbose)--no-verbose[do not give verbose output]' \
13  '--check-dirname-level:level:((0\:never\ check\ the\ directory\ name 1\:only\ check\ directory\ name\ if\ we\ had\ to\ change\ directory 2\:always\ check\ the\ directory\ name))' \
14  '--check-dirname-regex:perl regex' \
15  '(--no-conf --noconf)'{--no-conf,--noconf}'[do not read any configuration files]' \
16  '--help[display help information]' \
17  '--version[display version information]'
18