2010-08-20 16:55:30 +00:00
|
|
|
|
#compdef brew
|
|
|
|
|
#autoload
|
|
|
|
|
|
|
|
|
|
# imported from the latest homebrew contributions
|
|
|
|
|
|
|
|
|
|
_brew_all_formulae() {
|
|
|
|
|
formulae=(`brew search`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_brew_installed_formulae() {
|
|
|
|
|
installed_formulae=(`brew list`)
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-12 03:45:41 +00:00
|
|
|
|
_brew_installed_taps() {
|
|
|
|
|
installed_taps=(`brew tap`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_brew_outdated_formulae() {
|
|
|
|
|
outdated_formulae=(`brew outdated`)
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-20 16:55:30 +00:00
|
|
|
|
local -a _1st_arguments
|
|
|
|
|
_1st_arguments=(
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'audit:check formulae for Homebrew coding style'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'cat:display formula file for a formula'
|
|
|
|
|
'cleanup:uninstall unused and old versions of packages'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'commands:show a list of commands'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'create:create a new formula'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'deps:list dependencies of a formula'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'doctor:audits your installation for common issues'
|
|
|
|
|
'edit:edit a formula'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'fetch:download formula resources to the cache'
|
|
|
|
|
'gist-logs:generate a gist of the full build logs'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'home:visit the homepage of a formula or the brew project'
|
|
|
|
|
'info:information about a formula'
|
|
|
|
|
'install:install a formula'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'reinstall:install a formula anew; re-using its current options'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'link:link a formula'
|
|
|
|
|
'list:list files in a formula or not-installed formulae'
|
|
|
|
|
'log:git commit log for a formula'
|
2011-05-28 14:57:48 +00:00
|
|
|
|
'missing:check all installed formuale for missing dependencies.'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'outdated:list formulae for which a newer version is available'
|
|
|
|
|
'pin:pin specified formulae'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'postinstall:perform post_install for a given formula'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'prune:remove dead links'
|
|
|
|
|
'remove:remove a formula'
|
|
|
|
|
'search:search for a formula (/regex/ or string)'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'switch:switch linkage between installed versions of a formula'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'tap:tap a new formula repository from GitHub, or list existing taps'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'test-bot:test a formula and build a bottle'
|
2014-08-25 18:05:13 +00:00
|
|
|
|
'uninstall:uninstall a formula'
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'unlink:unlink a formula'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'unpin:unpin specified formulae'
|
|
|
|
|
'untap:remove a tapped repository'
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'update:pull latest repository'
|
2011-04-21 21:16:29 +00:00
|
|
|
|
'upgrade:upgrade outdated formulae'
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'uses:show formulae which depend on a formula'
|
|
|
|
|
)
|
|
|
|
|
|
2010-08-20 16:55:30 +00:00
|
|
|
|
local expl
|
2014-11-08 09:58:52 +00:00
|
|
|
|
local -a formulae installed_formulae installed_taps outdated_formulae
|
2010-08-20 16:55:30 +00:00
|
|
|
|
|
|
|
|
|
_arguments \
|
2011-05-28 14:57:48 +00:00
|
|
|
|
'(-v)-v[verbose]' \
|
|
|
|
|
'(--cellar)--cellar[brew cellar]' \
|
|
|
|
|
'(--config)--config[brew configuration]' \
|
|
|
|
|
'(--env)--env[brew environment]' \
|
|
|
|
|
'(--repository)--repository[brew repository]' \
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'(--version)--version[version information]' \
|
|
|
|
|
'(--prefix)--prefix[where brew lives on this system]' \
|
|
|
|
|
'(--cache)--cache[brew cache]' \
|
2014-11-08 09:58:52 +00:00
|
|
|
|
'(--force)--force[brew force]' \
|
2010-08-20 16:55:30 +00:00
|
|
|
|
'*:: :->subcmds' && return 0
|
|
|
|
|
|
|
|
|
|
if (( CURRENT == 1 )); then
|
|
|
|
|
_describe -t commands "brew subcommand" _1st_arguments
|
|
|
|
|
return
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
case "$words[1]" in
|
2014-02-12 03:45:41 +00:00
|
|
|
|
install|reinstall|audit|home|homepage|log|info|abv|uses|cat|deps|edit|options)
|
|
|
|
|
_brew_all_formulae
|
|
|
|
|
_wanted formulae expl 'all formulae' compadd -a formulae ;;
|
2011-05-28 14:57:48 +00:00
|
|
|
|
list|ls)
|
2010-08-20 16:55:30 +00:00
|
|
|
|
_arguments \
|
|
|
|
|
'(--unbrewed)--unbrewed[files in brew --prefix not controlled by brew]' \
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'(--pinned)--pinned[list all versions of pinned formulae]' \
|
2011-05-28 14:57:48 +00:00
|
|
|
|
'(--versions)--versions[list all installed versions of a formula]' \
|
2014-02-12 03:45:41 +00:00
|
|
|
|
'1: :->forms' && return 0
|
2010-08-20 16:55:30 +00:00
|
|
|
|
|
|
|
|
|
if [[ "$state" == forms ]]; then
|
|
|
|
|
_brew_installed_formulae
|
2011-05-28 14:57:48 +00:00
|
|
|
|
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae
|
2010-08-20 16:55:30 +00:00
|
|
|
|
fi ;;
|
2014-02-12 03:45:41 +00:00
|
|
|
|
remove|rm|uninstall|unlink|cleanup|link|ln|pin|unpin)
|
2010-08-20 16:55:30 +00:00
|
|
|
|
_brew_installed_formulae
|
|
|
|
|
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
|
2014-02-12 03:45:41 +00:00
|
|
|
|
search|-S)
|
|
|
|
|
_arguments \
|
|
|
|
|
'(--macports)--macports[search the macports repository]' \
|
|
|
|
|
'(--fink)--fink[search the fink repository]' ;;
|
|
|
|
|
untap)
|
|
|
|
|
_brew_installed_taps
|
|
|
|
|
_wanted installed_taps expl 'installed taps' compadd -a installed_taps ;;
|
|
|
|
|
upgrade)
|
|
|
|
|
_brew_outdated_formulae
|
|
|
|
|
_wanted outdated_formulae expl 'outdated formulae' compadd -a outdated_formulae ;;
|
2010-08-20 16:55:30 +00:00
|
|
|
|
esac
|