mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
* 21153: incorporate most of the features of Stephen Rueger's
_module-assistant, posted as 21152.
This commit is contained in:
parent
5971f3264c
commit
164ddacc85
2 changed files with 27 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
||||||
2005-04-17 Clint Adams <clint@zsh.org>
|
2005-04-17 Clint Adams <clint@zsh.org>
|
||||||
|
|
||||||
|
* 21153: Completion/Debian/Command/_module-assistant: incorporate
|
||||||
|
most of the features of Stephen Rueger's _module-assistant, posted
|
||||||
|
as 21152.
|
||||||
|
|
||||||
* 21151: Completion/Debian/Command/_module-assistant: completion
|
* 21151: Completion/Debian/Command/_module-assistant: completion
|
||||||
for module-assistant.
|
for module-assistant.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,26 @@
|
||||||
#compdef module-assistant m-a
|
#compdef module-assistant m-a
|
||||||
|
|
||||||
_arguments \
|
typeset -a _module_assistant_commands
|
||||||
|
|
||||||
|
_module_assistant_commands=(
|
||||||
|
"update[synchronize version index files]"
|
||||||
|
"prepare[install required kernel headers package]"
|
||||||
|
"fakesource[install required kernel source package]"
|
||||||
|
"list[a print a list of details about available packages]"
|
||||||
|
"list-available[b print a list of details about available packages ]"
|
||||||
|
"la[c print a list of details about available packages ]"
|
||||||
|
"list-installed[ print a list of details about installed packages ]"
|
||||||
|
"li[print a list of details about installed packages ]"
|
||||||
|
"search[search for packages]"
|
||||||
|
"get[install specified source package]"
|
||||||
|
"build[build specified packages]"
|
||||||
|
"install[install specified packages]"
|
||||||
|
"auto-install[do all necessary steps to install specified packages]"
|
||||||
|
"clean[clear build directories of the kernel packages]"
|
||||||
|
"purge[clear cache and remove all binary packages of source package]"
|
||||||
|
)
|
||||||
|
|
||||||
|
_arguments -A \
|
||||||
'(-h --help)'{-h,--help}'[print help screen]' \
|
'(-h --help)'{-h,--help}'[print help screen]' \
|
||||||
'(-v --verbose)'{-v,--verbose}'[Be verbose, show full paths, etc.]' \
|
'(-v --verbose)'{-v,--verbose}'[Be verbose, show full paths, etc.]' \
|
||||||
'(-q --quiet)'{-q,--quiet}'[The opposite of verbose]' \
|
'(-q --quiet)'{-q,--quiet}'[The opposite of verbose]' \
|
||||||
|
@ -12,6 +32,6 @@ _arguments \
|
||||||
'(-l --kvers-list)'{-l,--kvers-list}'[List of kernel versions to work on (default: current version)]:kernel version list:' \
|
'(-l --kvers-list)'{-l,--kvers-list}'[List of kernel versions to work on (default: current version)]:kernel version list:' \
|
||||||
'(-k --kernel-dir)'{-k,--kernel-dir}'[List of kernel headers/source directories, comma separated]:list of dirs:_files -/' \
|
'(-k --kernel-dir)'{-k,--kernel-dir}'[List of kernel headers/source directories, comma separated]:list of dirs:_files -/' \
|
||||||
'(-t --text-mode)'{-t,--text-mode}'[no progress bars]' \
|
'(-t --text-mode)'{-t,--text-mode}'[no progress bars]' \
|
||||||
'1:list of commands:_values -s , subcommands update get build list install auto-install prepare clean purge' \
|
'1:list of commands:_values -s , subcommands "${_module_assistant_commands[@]}"' \
|
||||||
'*:packages: compadd ${${${$(ls /usr/src/modass/var_cache_modass/*.avail_version)}:t}%.avail_version}'
|
'*:packages: compadd /usr/src/modass/var_cache_modass/*.avail_version(N:t:r) /var/cache/modass/*.avail_version(N:t:r)'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue