diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-07-20 16:39:13 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-07-20 16:39:13 +0000 |
commit | ae5af3a655c73445e4c13ac2b74fe5357815dda9 (patch) | |
tree | 968893ccda4d6748b2f0df88a735eb94700c3737 /Completion | |
parent | 29729c14ad1edf73065d314f81157f3cff0b82e5 (diff) | |
download | zsh-ae5af3a655c73445e4c13ac2b74fe5357815dda9.tar.gz zsh-ae5af3a655c73445e4c13ac2b74fe5357815dda9.tar.xz zsh-ae5af3a655c73445e4c13ac2b74fe5357815dda9.zip |
Renato Botelho <rbgarga@gmail.com>: 23685: new FreeBSD completions
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/BSD/Command/_csup | 23 | ||||
-rw-r--r-- | Completion/BSD/Command/_portlint | 17 | ||||
-rw-r--r-- | Completion/BSD/Command/_portsnap | 26 |
3 files changed, 66 insertions, 0 deletions
diff --git a/Completion/BSD/Command/_csup b/Completion/BSD/Command/_csup new file mode 100644 index 000000000..1a19bd1e5 --- /dev/null +++ b/Completion/BSD/Command/_csup @@ -0,0 +1,23 @@ +#compdef csup + +_arguments -s \ + '-1[disable automatic retries]' \ + '-4[Force usage of IPv4 addresses]' \ + '-6[Force usage of IPv6 addresses]' \ + '-A:local address:_hosts' \ + '-b:base directory:_files -/' \ + '-c:collections directory:_files -/' \ + '-d:maximum number of deleted files:' \ + '-h:server host:_hosts' \ + '-i:file pattern:' \ + '-k[keep temporary copies of failed updates]' \ + '-l:lock file:_files' \ + '-L:verbosity level:(0 1 2)' \ + '-p:port:_ports' \ + '-r:maximum number of retries:' \ + '-s[suppress status checks]' \ + '-v[print version information]' \ + '(-Z)-z[enable compression]' \ + '(-z)-Z[disable compression]' \ + ':csup file:_files' \ + ':destination directory:_files -/' diff --git a/Completion/BSD/Command/_portlint b/Completion/BSD/Command/_portlint new file mode 100644 index 000000000..d3619bbca --- /dev/null +++ b/Completion/BSD/Command/_portlint @@ -0,0 +1,17 @@ +#compdef portlint + +_arguments -s \ + '-a[additional check for scripts/* and pkg-*]' \ + '-A[turn on all additional checks (equivalent to -abcNt)]' \ + '-b[warn $(VARIABLE)]' \ + '-c[committer mode]' \ + '-C[pedantic committer mode (equivalent to -abct)]' \ + '-g[group errors together to avoid duplication (disabled if -v is specified)]' \ + '-h[show summary of command line options]' \ + '-v[verbose mode]' \ + '-t[nit pick about use of spaces]' \ + '-N[writing a new port]' \ + '-V[print the version and exit]' \ + '-M:set make variables to ENV (ex. PORTSDIR=/usr/ports.work):_guard ".#" "environment vars"' \ + '-B:allow # contiguous blank lines:_guard "[0-9]#" "numeric value"' \ + ':port directory:_files -/' diff --git a/Completion/BSD/Command/_portsnap b/Completion/BSD/Command/_portsnap new file mode 100644 index 000000000..0e79e1f64 --- /dev/null +++ b/Completion/BSD/Command/_portsnap @@ -0,0 +1,26 @@ +#compdef portsnap + +flags=( + '(cron)fetch[Fetch a compressed snapshot or update existing one]' + '(fetch)cron[Sleep rand(3600) seconds, and then fetch updates]' + '(update)extract[Extract snapshot, replacing existing files and dirs]' + '(extract)update[Update ports tree to match current snapshot]' +) + +_arguments -C -s \ + '-d:Store working files in workdir:_files -/' \ + '-f:Read configuration options from conffile:_files' \ + '-I[Update INDEX only. (update command only)]' \ + '-k:Trust an RSA key with SHA256 hash of KEY:_files' \ + '-l:Merge the specified local describes file into the INDEX:_files' \ + '-p:Location of uncompressed ports tree:_files -/' \ + '-s:Server from which to fetch updates:_hosts' \ + '*:principal:->principal' && ret=0 + +if [[ $state = principal ]]; then + _alternative \ + ':file flag:_values -S " " -w "commands" $flags[@]' \ + '*:path:_files -/' +fi + +return ret |