2012-04-24 22:36:07 -04:00
|
|
|
#compdef pacman pacman.static=pacman pacman-key makepkg
|
2007-12-05 10:45:23 -05:00
|
|
|
|
|
|
|
# copy this file to /usr/share/zsh/site-functions/_pacman
|
2007-02-16 14:37:00 -05:00
|
|
|
|
|
|
|
typeset -A opt_args
|
2013-03-18 03:37:03 -04:00
|
|
|
setopt extendedglob
|
2007-02-16 14:37:00 -05:00
|
|
|
|
|
|
|
# options for passing to _arguments: main pacman commands
|
|
|
|
_pacman_opts_commands=(
|
2013-03-08 15:59:29 -05:00
|
|
|
{-D,--database}'[Modify database]'
|
|
|
|
{-Q,--query}'[Query the package database]'
|
|
|
|
{-R,--remove}'[Remove a package from the system]'
|
|
|
|
{-S,--sync}'[Synchronize packages]'
|
|
|
|
{-T,--deptest}'[Check if dependencies are installed]'
|
|
|
|
{-U,--upgrade}'[Upgrade a package]'
|
|
|
|
{-V,--version}'[Display version and exit]'
|
2013-03-08 15:59:30 -05:00
|
|
|
'(-h --help)'{-h,--help}'[Display usage]'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# options for passing to _arguments: options common to all commands
|
|
|
|
_pacman_opts_common=(
|
2013-03-08 15:59:29 -05:00
|
|
|
{-b,--dbpath}'[Alternate database location]:database_location:_files -/'
|
2013-03-07 01:59:24 -05:00
|
|
|
'--color[colorize the output]:color options:(always never auto)'
|
2013-03-08 15:59:29 -05:00
|
|
|
{-h,--help}'[Display syntax for the given operation]'
|
|
|
|
{-r,--root}'[Set alternate installation root]:installation root:_files -/'
|
|
|
|
{-v,--verbose}'[Be more verbose]'
|
2007-12-05 10:45:23 -05:00
|
|
|
'--cachedir[Alternate package cache location]:cache_location:_files -/'
|
2007-02-16 14:37:00 -05:00
|
|
|
'--config[An alternate configuration file]:config file:_files'
|
2007-12-05 10:45:23 -05:00
|
|
|
'--logfile[An alternate log file]:config file:_files'
|
2007-02-16 14:37:00 -05:00
|
|
|
'--noconfirm[Do not ask for confirmation]'
|
2007-12-05 10:45:23 -05:00
|
|
|
'--noprogressbar[Do not show a progress bar when downloading files]'
|
|
|
|
'--noscriptlet[Do not execute the install scriptlet if one exists]'
|
2009-07-19 05:15:11 -04:00
|
|
|
'--print[Only print the targets instead of performing the operation]'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
2008-03-16 17:23:47 -04:00
|
|
|
# options for passing to _arguments: options for --upgrade commands
|
2007-02-16 14:37:00 -05:00
|
|
|
_pacman_opts_pkgfile=(
|
2013-03-08 15:59:29 -05:00
|
|
|
'*-d[Skip dependency checks]'
|
|
|
|
'*--nodeps[Skip dependency checks]'
|
2011-08-11 12:27:45 -04:00
|
|
|
'--dbonly[Only remove database entry, do not remove files]'
|
2011-10-11 13:35:33 -04:00
|
|
|
'--force[Overwrite conflicting files]'
|
2011-08-11 12:27:45 -04:00
|
|
|
'--needed[Do not reinstall up to date packages]'
|
2013-03-18 03:37:03 -04:00
|
|
|
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# options for passing to _arguments: subactions for --query command
|
|
|
|
_pacman_opts_query_actions=(
|
2013-03-08 15:59:30 -05:00
|
|
|
'(-Q --query)'{-Q,--query}
|
2013-03-08 15:59:29 -05:00
|
|
|
{-g,--groups}'[View all members of a package group]:*:package groups:->query_group'
|
|
|
|
{-o,--owns}'[Query the package that owns a file]:file:_files'
|
|
|
|
{-p,--file}'[Package file to query]:*:package file:->query_file'
|
|
|
|
{-s,--search}'[Search package names and descriptions]:*:search text:->query_search'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# options for passing to _arguments: options for --query and subcommands
|
|
|
|
_pacman_opts_query_modifiers=(
|
2013-03-08 15:59:29 -05:00
|
|
|
{-c,--changelog}'[List package changelog]'
|
|
|
|
{-d,--deps}'[List packages installed as dependencies]'
|
|
|
|
{-e,--explicit}'[List packages explicitly installed]'
|
|
|
|
{\*-i,\*--info}'[View package information]'
|
|
|
|
{\*-k,\*--check}'[Check package files]'
|
|
|
|
{-l,--list}'[List package contents]'
|
|
|
|
{-m,--foreign}'[List installed packages not found in sync db(s)]'
|
|
|
|
{-n,--native}'[List installed packages found in sync db(s)]'
|
|
|
|
{-t,--unrequired}'[List packages not required by any package]'
|
|
|
|
{-u,--upgrades}'[List packages that can be upgraded]'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# options for passing to _arguments: options for --remove command
|
|
|
|
_pacman_opts_remove=(
|
2013-03-08 15:59:29 -05:00
|
|
|
{-c,--cascade}'[Remove all dependent packages]'
|
|
|
|
{*-d,*--nodeps}'[Skip dependency checks]'
|
|
|
|
{-n,--nosave}'[Remove protected configuration files]'
|
|
|
|
{\*-s,\*--recursive}'[Remove dependencies not required by other packages]'
|
2011-08-11 12:27:45 -04:00
|
|
|
'--dbonly[Only remove database entry, do not remove files]'
|
2007-02-16 14:37:00 -05:00
|
|
|
'*:installed package:_pacman_completions_installed_packages'
|
|
|
|
)
|
|
|
|
|
2013-03-06 15:41:12 -05:00
|
|
|
_pacman_opts_database=(
|
|
|
|
'--asdeps[mark packages as non-explicitly installed]'
|
|
|
|
'--asexplicit[mark packages as explicitly installed]'
|
|
|
|
'*:installed package:_pacman_completions_installed_packages'
|
|
|
|
)
|
|
|
|
|
2007-02-16 14:37:00 -05:00
|
|
|
# options for passing to _arguments: options for --sync command
|
|
|
|
_pacman_opts_sync_actions=(
|
2013-03-08 15:59:30 -05:00
|
|
|
'(-S --sync)'{-S,--sync}
|
2013-03-08 15:59:29 -05:00
|
|
|
{\*-c,\*--clean}'[Remove old packages from cache]:\*:clean:->sync_clean'
|
|
|
|
{-g,--groups}'[View all members of a package group]:*:package groups:->sync_group'
|
|
|
|
{-s,--search}'[Search package names and descriptions]:*:search text:->sync_search'
|
2011-08-11 12:27:45 -04:00
|
|
|
'--dbonly[Only remove database entry, do not remove files]'
|
|
|
|
'--needed[Do not reinstall up to date packages]'
|
|
|
|
'--recursive[Reinstall all dependencies of target packages]'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# options for passing to _arguments: options for --sync command
|
|
|
|
_pacman_opts_sync_modifiers=(
|
2013-03-08 15:59:29 -05:00
|
|
|
{\*-d,\*--nodeps}'[Skip dependency checks]'
|
|
|
|
{\*-i,\*--info}'[View package information]'
|
|
|
|
{-l,--list}'[List all packages in a repository]'
|
|
|
|
{-p,--print}'[Print download URIs for each package to be installed]'
|
|
|
|
{\*-u,\*--sysupgrade}'[Upgrade all out-of-date packages]'
|
|
|
|
{-w,--downloadonly}'[Download packages only]'
|
|
|
|
{\*-y,\*--refresh}'[Download fresh package databases]'
|
|
|
|
'*--ignore[Ignore a package upgrade]:package: _pacman_completions_all_packages'
|
|
|
|
'*--ignoregroup[Ignore a group upgrade]:package group:_pacman_completions_all_groups'
|
2007-12-05 10:45:23 -05:00
|
|
|
'--asdeps[Install packages as non-explicitly installed]'
|
2008-01-13 16:15:10 -05:00
|
|
|
'--asexplicit[Install packages as explicitly installed]'
|
2011-10-11 13:35:33 -04:00
|
|
|
'--force[Overwrite conflicting files]'
|
2007-02-16 14:37:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# handles --help subcommand
|
|
|
|
_pacman_action_help() {
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_commands[@]"
|
|
|
|
}
|
|
|
|
|
|
|
|
# handles cases where no subcommand has yet been given
|
|
|
|
_pacman_action_none() {
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_commands[@]"
|
|
|
|
}
|
|
|
|
|
|
|
|
# handles --query subcommand
|
|
|
|
_pacman_action_query() {
|
|
|
|
local context state line
|
|
|
|
typeset -A opt_args
|
2011-08-17 17:56:07 -04:00
|
|
|
|
2007-02-16 14:37:00 -05:00
|
|
|
case $state in
|
|
|
|
query_file)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
2013-03-18 03:37:03 -04:00
|
|
|
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
query_group)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:groups:_pacman_completions_installed_groups'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
query_owner)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:file:_files'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
query_search)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:search text: '
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_actions[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:package:_pacman_completions_installed_packages'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
# handles --remove subcommand
|
|
|
|
_pacman_action_remove() {
|
|
|
|
_arguments -s : \
|
2013-03-08 15:59:30 -05:00
|
|
|
'(--remove -R)'{-R,--remove} \
|
2007-02-16 14:37:00 -05:00
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_remove[@]"
|
|
|
|
}
|
|
|
|
|
2013-03-06 15:41:12 -05:00
|
|
|
# handles --database subcommand
|
|
|
|
_pacman_action_database() {
|
|
|
|
_arguments -s : \
|
2013-03-08 15:59:30 -05:00
|
|
|
'(--database -D)'{-D,--database} \
|
2013-03-06 15:41:12 -05:00
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_database[@]"
|
|
|
|
}
|
|
|
|
|
2013-03-08 15:59:30 -05:00
|
|
|
_pacman_action_deptest () {
|
|
|
|
_arguments -s : \
|
|
|
|
'(--deptest)-T' \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
":packages:_pacman_all_packages"
|
|
|
|
}
|
2013-03-06 15:41:12 -05:00
|
|
|
|
|
|
|
|
2007-02-16 14:37:00 -05:00
|
|
|
# handles --sync subcommand
|
|
|
|
_pacman_action_sync() {
|
|
|
|
local context state line
|
|
|
|
typeset -A opt_args
|
2013-03-08 15:59:30 -05:00
|
|
|
if (( $+words[(r)--clean] )); then
|
|
|
|
state=sync_clean
|
|
|
|
elif (( $+words[(r)--groups] )); then
|
|
|
|
state=sync_group
|
|
|
|
elif (( $+words[(r)--search] )); then
|
|
|
|
state=sync_search
|
|
|
|
fi
|
2011-08-17 17:56:07 -04:00
|
|
|
|
2007-02-16 14:37:00 -05:00
|
|
|
case $state in
|
|
|
|
sync_clean)
|
|
|
|
_arguments -s : \
|
2013-03-08 15:59:30 -05:00
|
|
|
{\*-c,\*--clean}'[Remove old packages from cache]' \
|
2007-02-16 14:37:00 -05:00
|
|
|
"$_pacman_opts_common[@]" \
|
2013-04-05 19:31:57 -04:00
|
|
|
"$_pacman_opts_sync_modifiers[@]"
|
2013-03-06 16:10:25 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
sync_group)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
2013-03-08 15:59:30 -05:00
|
|
|
'(-g --group)'{-g,--groups} \
|
2007-02-16 14:37:00 -05:00
|
|
|
'*:package group:_pacman_completions_all_groups'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
sync_search)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
|
|
|
'*:search text: '
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
2013-03-06 15:41:29 -05:00
|
|
|
"$_pacman_opts_sync_actions[@]" \
|
2007-02-16 14:37:00 -05:00
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
|
|
|
'*:package:_pacman_completions_all_packages'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
|
|
|
esac
|
2007-02-16 14:37:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# handles --upgrade subcommand
|
|
|
|
_pacman_action_upgrade() {
|
|
|
|
_arguments -s : \
|
2013-03-08 15:59:30 -05:00
|
|
|
'(-U --upgrade)'{-U,--upgrade} \
|
2007-02-16 14:37:00 -05:00
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_pkgfile[@]"
|
|
|
|
}
|
|
|
|
|
|
|
|
# handles --version subcommand
|
|
|
|
_pacman_action_version() {
|
|
|
|
# no further arguments
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# provides completions for package groups
|
|
|
|
_pacman_completions_all_groups() {
|
|
|
|
local -a cmd groups
|
|
|
|
_pacman_get_command
|
2007-12-05 10:45:23 -05:00
|
|
|
groups=( $(_call_program groups $cmd[@] -Sg) )
|
2011-03-21 01:16:51 -04:00
|
|
|
typeset -U groups
|
2007-02-16 14:37:00 -05:00
|
|
|
compadd "$@" -a groups
|
|
|
|
}
|
|
|
|
|
|
|
|
# provides completions for packages available from repositories
|
2007-12-05 10:45:23 -05:00
|
|
|
# these can be specified as either 'package' or 'repository/package'
|
2007-02-16 14:37:00 -05:00
|
|
|
_pacman_completions_all_packages() {
|
2007-12-05 10:45:23 -05:00
|
|
|
local -a cmd packages repositories packages_long
|
2011-03-21 00:11:18 -04:00
|
|
|
_pacman_get_command
|
|
|
|
|
|
|
|
if compset -P1 '*/*'; then
|
|
|
|
packages=( $(_call_program packages $cmd[@] -Sql ${words[CURRENT]%/*}) )
|
|
|
|
typeset -U packages
|
|
|
|
_wanted repo_packages expl "repository/package" compadd ${(@)packages}
|
|
|
|
else
|
|
|
|
packages=( $(_call_program packages $cmd[@] -Sql) )
|
|
|
|
typeset -U packages
|
|
|
|
_wanted packages expl "packages" compadd - "${(@)packages}"
|
2007-02-16 14:37:00 -05:00
|
|
|
|
2010-10-11 19:23:16 -04:00
|
|
|
repositories=(${(o)${${${(M)${(f)"$(<@sysconfdir@/pacman.conf)"}:#\[*}/\[/}/\]/}:#options})
|
2007-12-05 10:45:23 -05:00
|
|
|
typeset -U repositories
|
|
|
|
_wanted repo_packages expl "repository/package" compadd -S "/" $repositories
|
2007-02-16 14:37:00 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# provides completions for package groups
|
|
|
|
_pacman_completions_installed_groups() {
|
|
|
|
local -a cmd groups
|
|
|
|
_pacman_get_command
|
2011-03-21 01:16:51 -04:00
|
|
|
groups=(${(o)${(f)"$(_call_program groups $cmd[@] -Qg)"}% *})
|
2007-12-05 10:45:23 -05:00
|
|
|
typeset -U groups
|
2007-02-16 14:37:00 -05:00
|
|
|
compadd "$@" -a groups
|
|
|
|
}
|
|
|
|
|
|
|
|
# provides completions for installed packages
|
|
|
|
_pacman_completions_installed_packages() {
|
2007-12-05 10:45:23 -05:00
|
|
|
local -a cmd packages packages_long
|
2010-10-11 19:23:16 -04:00
|
|
|
packages_long=(@localstatedir@/lib/pacman/local/*(/))
|
|
|
|
packages=( ${${packages_long#@localstatedir@/lib/pacman/local/}%-*-*} )
|
2007-02-16 14:37:00 -05:00
|
|
|
compadd "$@" -a packages
|
|
|
|
}
|
|
|
|
|
2013-03-06 15:41:29 -05:00
|
|
|
_pacman_all_packages() {
|
2013-03-06 16:10:25 -05:00
|
|
|
_alternative : \
|
|
|
|
'localpkgs:local packages:_pacman_completions_installed_packages' \
|
|
|
|
'repopkgs:repository packages:_pacman_completions_all_packages'
|
2013-03-06 15:41:29 -05:00
|
|
|
}
|
|
|
|
|
2007-02-16 14:37:00 -05:00
|
|
|
# provides completions for repository names
|
|
|
|
_pacman_completions_repositories() {
|
|
|
|
local -a cmd repositories
|
2010-10-11 19:23:16 -04:00
|
|
|
repositories=(${(o)${${${(M)${(f)"$(<@sysconfdir@/pacman.conf)"}:#\[*}/\[/}/\]/}:#options})
|
2007-12-05 10:45:23 -05:00
|
|
|
# Uniq the array
|
|
|
|
typeset -U repositories
|
2007-02-16 14:37:00 -05:00
|
|
|
compadd "$@" -a repositories
|
|
|
|
}
|
|
|
|
|
|
|
|
# builds command for invoking pacman in a _call_program command - extracts
|
|
|
|
# relevant options already specified (config file, etc)
|
|
|
|
# $cmd must be declared by calling function
|
|
|
|
_pacman_get_command() {
|
|
|
|
# this is mostly nicked from _perforce
|
2012-01-19 17:23:57 -05:00
|
|
|
cmd=( "pacman" "2>/dev/null")
|
2007-02-16 14:37:00 -05:00
|
|
|
integer i
|
|
|
|
for (( i = 2; i < CURRENT - 1; i++ )); do
|
|
|
|
if [[ ${words[i]} = "--config" || ${words[i]} = "--root" ]]; then
|
|
|
|
cmd+=( ${words[i,i+1]} )
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# main dispatcher
|
2012-04-24 22:36:07 -04:00
|
|
|
_pacman_zsh_comp() {
|
2013-03-08 15:59:30 -05:00
|
|
|
local -a args cmds;
|
2013-03-18 01:46:55 -04:00
|
|
|
local tmp
|
2013-03-06 15:41:29 -05:00
|
|
|
args=( ${${${(M)words:#-*}#-}:#-*} )
|
2013-03-08 15:59:30 -05:00
|
|
|
for tmp in $words; do
|
|
|
|
cmds+=("${${_pacman_opts_commands[(r)*$tmp\[*]%%\[*}#*\)}")
|
|
|
|
done
|
2013-03-06 15:41:29 -05:00
|
|
|
case $args in #$words[2] in
|
|
|
|
h*)
|
2013-03-08 15:59:30 -05:00
|
|
|
if (( ${(c)#args} <= 1 && ${(w)#cmds} <= 1 )); then
|
2013-03-06 15:41:29 -05:00
|
|
|
_pacman_action_help
|
|
|
|
else
|
|
|
|
_message "no more arguments"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*h*)
|
|
|
|
_message "no more arguments"
|
|
|
|
;;
|
|
|
|
D*)
|
|
|
|
_pacman_action_database
|
|
|
|
;;
|
|
|
|
Q*g*) # ipkg groups
|
2007-02-16 14:37:00 -05:00
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:groups:_pacman_completions_installed_groups'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
Q*o*) # file
|
2007-02-16 14:37:00 -05:00
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
|
|
|
'*:package file:_files'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
Q*p*) # file *.pkg.tar*
|
2007-02-16 14:37:00 -05:00
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_query_modifiers[@]" \
|
2013-03-18 03:37:03 -04:00
|
|
|
'*:package file:_files -g "*.pkg.tar*~*.sig(.,@)"'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
|
|
|
T*)
|
2013-03-08 15:59:30 -05:00
|
|
|
_pacman_action_deptest
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
|
|
|
Q*)
|
|
|
|
_pacman_action_query
|
|
|
|
;;
|
|
|
|
R*)
|
|
|
|
_pacman_action_remove
|
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
S*c*) # no completion
|
2013-03-08 15:59:30 -05:00
|
|
|
_arguments -s : \
|
|
|
|
'(-c --clean)'{\*-c,\*--clean}'[Remove all files from the cache]' \
|
2013-03-08 15:59:29 -05:00
|
|
|
"$_pacman_opts_common[@]"
|
2007-12-05 10:45:23 -05:00
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
S*l*) # repos
|
2007-02-16 14:37:00 -05:00
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
|
|
|
'*:package repo:_pacman_completions_repositories' \
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
S*g*) # pkg groups
|
2007-02-16 14:37:00 -05:00
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
|
|
|
'*:package group:_pacman_completions_all_groups'
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2013-04-05 19:31:57 -04:00
|
|
|
S*s*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
"$_pacman_opts_sync_modifiers[@]" \
|
|
|
|
'*:search text: '
|
|
|
|
;;
|
2013-03-06 16:04:00 -05:00
|
|
|
S*)
|
|
|
|
_pacman_action_sync
|
|
|
|
;;
|
2013-03-06 15:41:29 -05:00
|
|
|
T*)
|
2013-03-06 15:41:12 -05:00
|
|
|
_arguments -s : \
|
|
|
|
'-T' \
|
|
|
|
"$_pacman_opts_common[@]" \
|
|
|
|
":packages:_pacman_all_packages"
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
|
|
|
U*)
|
|
|
|
_pacman_action_upgrade
|
|
|
|
;;
|
|
|
|
V*)
|
|
|
|
_pacman_action_version
|
|
|
|
;;
|
|
|
|
*)
|
2013-03-08 15:59:30 -05:00
|
|
|
|
|
|
|
case ${(M)words:#--*} in
|
|
|
|
*--help*)
|
|
|
|
if (( ${(w)#cmds} == 1 )); then
|
|
|
|
_pacman_action_help
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*--sync*)
|
|
|
|
_pacman_action_sync
|
|
|
|
;;
|
|
|
|
*--query*)
|
|
|
|
_pacman_action_query
|
|
|
|
;;
|
|
|
|
*--remove*)
|
|
|
|
_pacman_action_remove
|
|
|
|
;;
|
|
|
|
*--deptest*)
|
|
|
|
_pacman_action_deptest
|
|
|
|
;;
|
|
|
|
*--database*)
|
|
|
|
_pacman_action_database
|
|
|
|
;;
|
|
|
|
*--version*)
|
|
|
|
_pacman_action_version
|
|
|
|
;;
|
|
|
|
*--upgrade*)
|
|
|
|
_pacman_action_upgrade
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_pacman_action_none
|
|
|
|
;;
|
|
|
|
esac
|
2013-03-06 16:04:00 -05:00
|
|
|
;;
|
2007-02-16 14:37:00 -05:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2012-04-24 22:36:07 -04:00
|
|
|
_key_shortopts=(
|
2013-03-06 16:10:25 -05:00
|
|
|
'-h[show help]'
|
|
|
|
'-a[Add the specified keys (empty for stdin)]: :_files'
|
|
|
|
'-d[Remove the Specified keyids]:*: :_keys'
|
|
|
|
'-e[Export the specified or all keyids]:*: :_keys'
|
|
|
|
'-f[List fingreprint for specidied or all keyids]:*: :_keys'
|
|
|
|
'-l[List the specified or all keys]:*: :_keys'
|
|
|
|
'-r[Fetch the specified keyids]:*: :_keys'
|
|
|
|
'-u[Update the trustdb of pacman]'
|
|
|
|
'-v[Verify the file specified by the signature]: :_files -g "*.sig"'
|
|
|
|
'-V[Show program version]'
|
2013-03-06 16:04:00 -05:00
|
|
|
)
|
2012-04-24 22:36:07 -04:00
|
|
|
|
|
|
|
_key_longopts=(
|
2013-03-06 16:10:25 -05:00
|
|
|
'--help[show help]'
|
|
|
|
'--add[Add the specified keys (empty for stdin)]: :_files'
|
|
|
|
'--delete[Remove the Specified keyids]:*: :_keys'
|
|
|
|
'--export[Export the specified or all keyids]:*: :_keys'
|
|
|
|
'--finger[List fingreprint for specidied or all keyids]:*: :_keys'
|
|
|
|
'--list-keys[List the specified or all keys]:*: :_keys'
|
|
|
|
'--recv-keys[Fetch the specified keyids]:*: :_keys'
|
|
|
|
'--updatedb[Update the trustdb of pacman]'
|
|
|
|
'--verify[Verify the file specified by the signature]: :_files -g "*.sig"'
|
|
|
|
'--version[Show program version]'
|
|
|
|
'--edit-key[Present a menu for key management task on keyids]:*: :_keys'
|
|
|
|
'--import[Imports pubring.gpg from dir(s)]: :_files -g "*.gpg"'
|
|
|
|
'--import-tb[Imports ownertrust values from trustdb.gpg in dir(s)]: :_files -g "*.gpg"'
|
|
|
|
'--init[Ensure the keyring is properly initialized]'
|
|
|
|
'--list-sigs[List keys and their signatures]:*: :_keys'
|
|
|
|
'--lsign-key[Locally sign the specified keyid]:*: :_keys'
|
|
|
|
'--populate[Reload the default keys from the (given) keyrings in '/usr/share/pacman/keyrings']: :_path_files -W /usr/share/pacman/keyrings'
|
|
|
|
'--refresh-keys[Update specified or all keys from a keyserver]:*: :_keys'
|
2013-03-06 16:04:00 -05:00
|
|
|
)
|
2012-04-24 22:36:07 -04:00
|
|
|
|
|
|
|
_pacman_key_options=(
|
2013-04-01 06:19:35 -04:00
|
|
|
'--config[Use an alternate config file (instead of @sysconfdir@/pacman.conf)]: :_files'
|
|
|
|
'--gpgdir[Set an alternate directory for GnuPG (instead of @sysconfdir@/pacman.d/gnupg)]: :_files -/'
|
2013-03-06 16:10:25 -05:00
|
|
|
'--keyserver[Specify a keyserver to use if necessary]'
|
2013-03-06 16:04:00 -05:00
|
|
|
)
|
2012-04-24 22:36:07 -04:00
|
|
|
|
|
|
|
_pacman_key() {
|
2013-03-06 16:04:00 -05:00
|
|
|
case $words[CURRENT] in
|
|
|
|
--*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_key_options[@]" \
|
|
|
|
"$_key_longopts[@]"
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_key_options[@]" \
|
|
|
|
"$_key_shortopts[@]" \
|
|
|
|
"$_key_longopts[@]"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
i=$#;
|
|
|
|
while [[ $words[$i] != -* ]] && [[ $words[$i] != "pacman-key" ]];do
|
|
|
|
i=$(($i-1))
|
|
|
|
done
|
|
|
|
case $i in
|
|
|
|
--*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_key_options[@]" \
|
|
|
|
"$_key_longopts[@]"
|
|
|
|
;;
|
|
|
|
-*)
|
|
|
|
_arguments -s : \
|
|
|
|
"$_pacman_key_options[@]" \
|
|
|
|
"$_key_shortopts[@]" \
|
|
|
|
"$_key_longopts[@]"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2012-04-24 22:36:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
_keys() {
|
2013-03-06 16:10:25 -05:00
|
|
|
local keylist keys
|
|
|
|
keylist=$(pacman-key --list-keys 2>/dev/null | awk '
|
|
|
|
$1 == "pub" {
|
|
|
|
# key id
|
|
|
|
split($2, a, "/"); print a[2]
|
|
|
|
}
|
|
|
|
$1 == "uid" {
|
|
|
|
# email
|
|
|
|
if (match($NF, /<[^>]+>/))
|
|
|
|
print substr($NF, RSTART + 1, RLENGTH - 2)
|
|
|
|
#this adds support for names as well if that is ever added
|
|
|
|
}
|
|
|
|
$1 == "uid" {
|
|
|
|
for (i=2;i<NF;i++) {printf "%s%s",sep, $i;sep=" "}; printf "\n"
|
|
|
|
}' |sed -e 's/(.*)//g' -e 's/^\ //g' -e 's/\ *$//g' |uniq
|
|
|
|
)
|
|
|
|
keys=(${(s:/:)${keylist//$'\n'/\/}})
|
|
|
|
_describe -t modules 'keys in keyring' keys && return 0
|
2012-04-24 22:36:07 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 22:40:42 -04:00
|
|
|
_makepkg_shortopts=(
|
2013-03-08 15:59:28 -05:00
|
|
|
'-s[Install missing dependencies with pacman]'
|
|
|
|
'-i[Install package after successful build]'
|
|
|
|
'-A[Ignore incomplete arch field in PKGBUILD]'
|
|
|
|
'-c[Clean up work files after build]'
|
|
|
|
'-d[Skip all dependency checks]'
|
|
|
|
'-e[Do not extract source files (use existing src/ dir)]'
|
|
|
|
'-f[Overwrite existing package]'
|
|
|
|
'-g[Generate integrity checks for source files]'
|
|
|
|
'-h[Show help message and exit]'
|
|
|
|
'-L[Log package build process]'
|
|
|
|
'-m[Disable colorized output messages]'
|
|
|
|
'-o[Download and extract files only]'
|
2013-03-06 16:10:25 -05:00
|
|
|
'-p[Use an alternate build script (instead of 'PKGBUILD')]: :_files'
|
2013-03-08 15:59:28 -05:00
|
|
|
'-r[Remove installed dependencies after a successful build]'
|
|
|
|
'-R[Repackage contents of the package without rebuilding]'
|
|
|
|
'-S[Generate a source-only tarball without downloading sources]'
|
2013-03-06 16:04:00 -05:00
|
|
|
)
|
2012-04-29 22:40:42 -04:00
|
|
|
|
|
|
|
_makepkg_action_none(){
|
2013-03-06 16:10:25 -05:00
|
|
|
_arguments \
|
|
|
|
"$_makepkg_shortopts[@]" \
|
|
|
|
"$_makepkg_longopts[@]"
|
2012-04-29 22:40:42 -04:00
|
|
|
}
|
|
|
|
_makepkg_longopts=(
|
2013-03-06 16:10:25 -05:00
|
|
|
'--ignorearch[Ignore incomplete arch field in PKGBUILD]'
|
|
|
|
'--clean[Clean up work files after build]'
|
|
|
|
'--nodeps[Skip all dependency checks]'
|
|
|
|
'--noextract[Do not extract source files (use existing src/ dir)]'
|
|
|
|
'--force[Overwrite existing package]'
|
|
|
|
'--geninteg[Generate integrity checks for source files]'
|
|
|
|
'--help[Show help message and exit]'
|
|
|
|
'--install[Install package after successful build]'
|
|
|
|
'--log[Log package build process]'
|
|
|
|
'--nocolor[Disable colorized output messages]'
|
|
|
|
'--nobuild[Download and extract files only]'
|
|
|
|
'--rmdeps[Remove installed dependencies after a successful build]'
|
|
|
|
'--repackage[Repackage contents of the package without rebuilding]'
|
|
|
|
'--syncdeps[Install missing dependencies with pacman]'
|
|
|
|
'--source[Generate a source-only tarball without downloading sources]'
|
|
|
|
'--allsource[Generate a source-only tarball including downloaded source]'
|
|
|
|
'--asroot[Allow makepkg to run as root user]'
|
|
|
|
'--check[Run check() function in the PKGBUILD]'
|
2013-04-01 06:19:35 -04:00
|
|
|
'--config[Use an alternate config file instead of '@sysconfdir@/makepkg.conf']: :_files'
|
2013-03-06 16:10:25 -05:00
|
|
|
'--holdver[Prevent automatic version bumping for development PKGBUILDs]'
|
|
|
|
'--key[Specify key to use for gpg signing instead of the default]: :_keys'
|
|
|
|
'--nocheck[Do not run the check() function in the PKGBUILD]'
|
2013-04-28 22:42:22 -04:00
|
|
|
'--noprepare[Do not run the prepare() function in the PKGBUILD]'
|
2013-03-06 16:10:25 -05:00
|
|
|
'--nosign[Do not create a signature for the package]'
|
|
|
|
'--pkg[Only build listed packages from a split package]'
|
|
|
|
'--sign[Sign the resulting package with gpg]'
|
|
|
|
'--skipchecksums[Do not verify checksums of the source files]'
|
|
|
|
'--skipinteg[do not perform any verification checks on source files]'
|
|
|
|
'--skippgpcheck[Do not verify source files with PGP signatures]'
|
|
|
|
'--noconfirm[do not ask for confirmation when resolving dependencies]'
|
|
|
|
'--asdeps[Install packages as non-explicitly installed]'
|
|
|
|
'--noprogressbar[Do not show a progress bar when downloading files]'
|
2013-03-09 20:01:53 -05:00
|
|
|
'--needed[Do not reinstall up-to-date packages]'
|
|
|
|
'--verifysource[Only download sources and verify checksums]'
|
2013-03-06 16:04:00 -05:00
|
|
|
)
|
2012-04-29 22:40:42 -04:00
|
|
|
_makepkg(){
|
2013-03-06 16:04:00 -05:00
|
|
|
case $words[CURRENT] in
|
|
|
|
-*)
|
|
|
|
_arguments -s -w : \
|
|
|
|
"$_makepkg_shortopts[@]" \
|
|
|
|
"$_makepkg_longopts[@]"
|
|
|
|
;;
|
|
|
|
--* )
|
|
|
|
_arguments -s \
|
|
|
|
"$_makepkg_longopts[@]"
|
|
|
|
;;
|
|
|
|
- )
|
|
|
|
_makepkg_action_none
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
i=$#
|
|
|
|
while [[ $words[i] != -* ]] && [[ $words[$i] != "makepkg" ]];do
|
|
|
|
i=$((i-1));
|
|
|
|
done
|
|
|
|
case $words[$i] in
|
|
|
|
-*)
|
|
|
|
_arguments -s -w : \
|
|
|
|
"$_makepkg_shortopts[@]" \
|
|
|
|
"$_makepkg_longopts[@]"
|
|
|
|
;;
|
|
|
|
--* )
|
|
|
|
_arguments -s \
|
|
|
|
"$_makepkg_longopts[@]"
|
|
|
|
;;
|
|
|
|
- )
|
|
|
|
_makepkg_action_none
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2012-04-29 22:40:42 -04:00
|
|
|
}
|
2012-04-24 22:36:07 -04:00
|
|
|
_pacman_comp() {
|
2013-03-06 16:04:00 -05:00
|
|
|
case "$service" in
|
|
|
|
makepkg)
|
|
|
|
_makepkg "$@"
|
|
|
|
;;
|
|
|
|
pacman-key)
|
|
|
|
_pacman_key "$@"
|
|
|
|
;;
|
|
|
|
pacman)
|
|
|
|
_pacman_zsh_comp "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_message "Error"
|
|
|
|
;;
|
|
|
|
esac
|
2012-04-24 22:36:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
_pacman_comp "$@"
|