#compdef yaourt yaourt.static=yaourt # ------------------------------------------------------------------------------ # Copyright (c) 2016 Github zsh-users - http://github.com/zsh-users # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the zsh-users nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ------------------------------------------------------------------------------ # Description # ----------- # # Completion script for yaourt (https://archlinux.fr/yaourt-en) # # ------------------------------------------------------------------------------ # Authors # ------- # # * zsh-users mailing list # # ------------------------------------------------------------------------------ # handles --help subcommand _yaourt_action_help() { _arguments -s : \ "$_yaourt_opts_commands[@]" } # handles cases where no subcommand has yet been given _yaourt_action_none() { _arguments -s : \ "$_yaourt_opts_commands[@]" } # handles --query subcommand _yaourt_action_query() { local context state line typeset -A opt_args # _arguments -s : \ # "$_yaourt_opts_common[@]" \ # "$_yaourt_opts_query_actions[@]" \ # "$_yaourt_opts_query_modifiers[@]" case $state in query_file) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:package file:_files -g "*.pkg.tar.*"' ;; query_group) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:groups:_yaourt_completions_installed_groups' ;; query_owner) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:file:_files' ;; query_search) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:search text: ' ;; *) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_actions[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:package:_yaourt_completions_installed_packages' ;; esac } # handles --remove subcommand _yaourt_action_remove() { _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_remove[@]" } # handles --sync subcommand _yaourt_action_sync() { local context state line typeset -A opt_args # _arguments -s : \ # "$_yaourt_opts_common[@]" \ # "$_yaourt_opts_sync_actions[@]" #\ # #"$_yaourt_opts_sync_modifiers[@]" case $state in sync_clean) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*-c[Remove old packages from cache]' \ ;; sync_group) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*:package group:_yaourt_completions_all_groups' ;; sync_search) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*:search text: ' ;; *) _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*:package:_yaourt_completions_all_packages' ;; esac } # handles --upgrade subcommand _yaourt_action_upgrade() { _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_pkgfile[@]" } # handles --version subcommand _yaourt_action_version() { # no further arguments return 0 } # provides completions for package groups _yaourt_completions_all_groups() { local -a cmd groups _yaourt_get_command groups=( $(_call_program groups $cmd[@] -Sg) ) typeset -U groups compadd "$@" -a groups } # provides completions for packages available from repositories # these can be specified as either 'package' or 'repository/package' _yaourt_completions_all_packages() { local -a cmd packages repositories packages_long _yaourt_get_command if compset -P1 '*/*'; then packages=( $(_call_program packages $cmd[@] -Sql ${words[CURRENT]%/*}) ) typeset -U packages if [[ -d /var/aur ]]; then packages=( $packages $(ls /var/aur) ) fi _wanted repo_packages expl "repository/package" compadd ${(@)packages} else packages=( $(_call_program packages $cmd[@] -Sql) ) typeset -U packages if [[ -d /var/aur ]]; then packages=( $packages $(ls /var/aur) ) fi _wanted packages expl "packages" compadd - "${(@)packages}" repositories=(${(o)${${${(M)${(f)"$(query_group' '-o[Query the package that owns a file]:file:_files' '-p[Package file to query]:*:package file:->query_file' '-s[Search package names and descriptions]:*:search text:->query_search' ) # options for passing to _arguments: options for --query and subcommands typeset -a _yaourt_opts_query_modifiers _yaourt_opts_query_modifiers=( '-c[List package changelog]' '-d[List packages installed as dependencies]' '-e[List packages explicitly installed]' '-i[View package information]' '-ii[View package information including backup files]' '-k[Check package files]' '-l[List package contents]' '-m[List installed packages not found in sync db(s)]' '-t[List packages not required by any package]' '-u[List packages that can be upgraded]' '--aur[Install packages from aur, even if they are in community, or, with the -u option, update packages installed from aur]' '--devel[Used with -u updates all cvs/svn/git/hg/bzr packages]' '--date[List packages sorted ascendingly (oldest is printed first) by installation date]' ) # options for passing to _arguments: options for --remove command typeset -a _yaourt_opts_remove _yaourt_opts_remove=( '-c[Remove all dependent packages]' '-d[Skip dependency checks]' '-k[Only remove database entry, do not remove files]' '-n[Remove protected configuration files]' '-s[Remove dependencies not required by other packages]' '*:installed package:_yaourt_completions_installed_packages' ) # options for passing to _arguments: options for --sync command typeset -a _yaourt_opts_sync_actions _yaourt_opts_sync_actions=( '*-c[Remove old packages from cache]:*:clean:->sync_clean' '*-cc[Remove all packages from cache]:*:clean:->sync_clean' '-g[View all members of a package group]:*:package groups:->sync_group' '-s[Search package names and descriptions]:*:search text:->sync_search' ) # options for passing to _arguments: options for --sync command typeset -a _yaourt_opts_sync_modifiers _yaourt_opts_sync_modifiers=( '-d[Skip dependency checks]' '-f[Overwrite conflicting files]' '-i[View package information]' '-l[List all packages in a repository]' '-p[Print download URIs for each package to be installed]' '-u[Upgrade all out-of-date packages]' '-w[Download packages only]' '-y[Download fresh package databases]' '*--ignore[Ignore a package upgrade]:package: _yaourt_completions_all_packages' '*--ignoregroup[Ignore a group upgrade]:package group: _yaourt_completions_all_groups' '--asdeps[Install packages as non-explicitly installed]' '--asexplicit[Install packages as explicitly installed]' '--needed[Do not reinstall up to date packages]' '--devel[Used with -u updates all cvs/svn/git/hg/bzr packages]' ) case $words[2] in -Q*g*) # ipkg groups _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:groups:_yaourt_completions_installed_groups' ;; -Q*o*) # file _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:package file:_files' ;; -Q*p*) # file *.pkg.tar.* _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_query_modifiers[@]" \ '*:package file:_files -g "*.pkg.tar.*"' ;; -Q*) _yaourt_action_query ;; -R*) _yaourt_action_remove ;; -S*c*) # no completion return 0 ;; -S*l*) # repos _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*:package repo:_yaourt_completions_repositories' \ ;; -S*g*) # pkg groups _arguments -s : \ "$_yaourt_opts_common[@]" \ "$_yaourt_opts_sync_modifiers[@]" \ '*:package group:_yaourt_completions_all_groups' ;; -S*) _yaourt_action_sync ;; -U*) _yaourt_action_upgrade ;; -V*) _yaourt_action_version ;; -h*) _yaourt_action_help ;; - ) _yaourt_action_none ;; * ) return 1 ;; esac } # run the main dispatcher _yaourt "$@"