source: projects/zsh-completion/_vbuilder @ 3484

Revision 3484, 1.2 KB checked in by iwaim, 13 years ago (diff)

for current vbuilder

Line 
1#compdef vbuilder
2 
3typeset -A opt_args
4 
5_arguments \
6    "--version[set \[version\]]:keyword:(4.2 5.2 VineSeed)" \
7    "--arch[set \[arch\]]:keyword:(i386)" \
8    "--category[set \[categories\]]:keyword:(main plus nonfree test proposed_updatges security)" \
9    "--dist-upgrade[make VineSeed bootstrap via 5.2]" \
10    "--unionfs[cover a bootstrap with unionfs]" \
11    "--target[build rpms with \[target\]]" \
12    "--with-compat32[build rpms with compat32 on bootstrap]" \
13    "--rpmbuild-with[give a option --with \[bcond_with\] to rpmbuild]" \
14    "--sign[sign built rpms]" \
15    "--no-install[build only a source rpm - do NOT install a built rpm]" \
16    "--bootstrap-dir[set a bootstrap directory]" \
17    "--cache-dir[set a directory to cache rpms]" \
18    "--built-rpms-dir[set a directory to store built rpms in chroot]" \
19    "--clean[clean bootstrap of \[version\]]" \
20    "--build[build bootstrap of \[version\]]" \
21    "--build-rpm[build \[src.rpm\] on bootstrap]" \
22    "--install-rpm[install \[arch.rpm\|package\] on bootstrap]" \
23    "--remove-rpm[remove \[package\] on bootstarp]" \
24    "--show-info[show basic informations and logs in chroot]" \
25    '1:file:_files' \
26&& return 0
Note: See TracBrowser for help on using the repository browser.