2011-08-31 03:16:15 +00:00
|
|
|
#
|
2012-06-30 21:29:30 +00:00
|
|
|
# Defines Pacman aliases.
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Benjamin Boudreau <dreurmail@gmail.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
# Tips:
|
2011-08-31 03:16:15 +00:00
|
|
|
# https://wiki.archlinux.org/index.php/Pacman_Tips
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[pacman] )); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
#
|
|
|
|
# Frontend
|
|
|
|
#
|
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Get the Pacman frontend.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -s ':prezto:module:pacman' frontend '_pacman_frontend'
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
if (( $+commands[$_pacman_frontend] )); then
|
|
|
|
alias pacman="$_pacman_frontend"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
if [[ -s "${0:h}/${_pacman_frontend}.zsh" ]]; then
|
|
|
|
source "${0:h}/${_pacman_frontend}.zsh"
|
2011-08-31 03:16:15 +00:00
|
|
|
fi
|
2013-12-09 14:29:14 +00:00
|
|
|
else
|
|
|
|
_pacman_sudo='sudo '
|
2011-08-31 03:16:15 +00:00
|
|
|
fi
|
|
|
|
|
2012-08-04 18:48:32 +00:00
|
|
|
#
|
2012-07-03 17:58:32 +00:00
|
|
|
# Aliases
|
2012-08-04 18:48:32 +00:00
|
|
|
#
|
2012-07-03 17:58:32 +00:00
|
|
|
|
2012-08-15 11:59:25 +00:00
|
|
|
# Pacman.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pac= "${_pacman_frontend}"
|
2012-08-15 11:59:25 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Installs packages from repositories.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias paci="${_pacman_sudo}${_pacman_frontend} --sync"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Installs packages from files.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacI="${_pacman_sudo}${_pacman_frontend} --upgrade"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Removes packages and unneeded dependencies.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacx="${_pacman_sudo}${_pacman_frontend} --remove"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Removes packages, their configuration, and unneeded dependencies.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacX="${_pacman_sudo}${_pacman_frontend} --remove --nosave --recursive"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-07-03 17:58:32 +00:00
|
|
|
# Displays information about a package from the repositories.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacq="${_pacman_frontend} --sync --info"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-07-03 17:58:32 +00:00
|
|
|
# Displays information about a package from the local database.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacQ="${_pacman_frontend} --query --info"
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Searches for packages in the repositories.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacs="${_pacman_frontend} --sync --search"
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Searches for packages in the local database.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacS="${_pacman_frontend} --query --search"
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Lists orphan packages.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacman-list-orphans="${_pacman_sudo}${_pacman_frontend} --query --deps --unrequired"
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Removes orphan packages.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacman-remove-orphans="${_pacman_sudo}${_pacman_frontend} --remove --recursive \$(${_pacman_frontend} --quiet --query --deps --unrequired)"
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Synchronizes the local package and Arch Build System databases against the
|
|
|
|
# repositories.
|
2011-10-12 03:13:58 +00:00
|
|
|
if (( $+commands[abs] )); then
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacu="${_pacman_sudo}${_pacman_frontend} --sync --refresh && ${_pacman_sudo}abs"
|
2011-10-12 03:13:58 +00:00
|
|
|
else
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacu="${_pacman_sudo}${_pacman_frontend} --sync --refresh"
|
2011-10-12 03:13:58 +00:00
|
|
|
fi
|
2011-08-31 03:16:15 +00:00
|
|
|
|
2012-06-30 21:29:30 +00:00
|
|
|
# Synchronizes the local package database against the repositories then
|
|
|
|
# upgrades outdated packages.
|
2013-12-09 14:29:14 +00:00
|
|
|
alias pacU="${_pacman_sudo}${_pacman_frontend} --sync --refresh --sysupgrade"
|
2012-06-30 21:29:30 +00:00
|
|
|
|
2013-12-09 14:29:14 +00:00
|
|
|
unset _pacman_{frontend,sudo}
|
2012-06-30 21:29:30 +00:00
|
|
|
|