Skip to content

Commit

Permalink
Bump to v2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oshazard committed Mar 8, 2016
1 parent da7a29e commit 1b4e0cc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 22 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
apacman
==================

ArchLinux User Repository (AUR) helper and pacman wrapper forked from [packer](https://github.com/keenerd/packer)
ArchLinux User Repository (AUR) helper and pacman wrapper [forked](https://github.com/keenerd/packer/pull/141) from [packer](https://github.com/keenerd/packer)

![downloads badge](https://img.shields.io/github/downloads/oshazard/apacman/latest/total.svg)
![previous release badge](https://img.shields.io/github/downloads/oshazard/apacman/v2.2/total.svg)

[Migrate wizard for AUR4](https://gist.github.com/oshazard/370c7ed631af2181ee51)

Changelog:
* **NEW** improved virtual package support
* **NEW** improved -U handling
* **NEW** -W parameter to view package comments
* **NEW** sanity checks for curl with debugging
* **NEW** fixes for ABS
* **NEW** improved signed package support
* **NEW** --keepkeys parameter stores PGP keys
* **NEW** --purgekeys parameter removes trusted PGP keys
* **NEW** fix for piping output
* **NEW** fix for yes/no dialog
* **NEW** merged pull requests for AUR5 support
* improved virtual package support
* improved -U handling
* -W parameter to view package comments
* sanity checks for curl with debugging
* fixes for ABS
* improved signed package support
* --keepkeys parameter stores PGP keys
* --purgekeys parameter removes trusted PGP keys
* fix for piping output
* fix for yes/no dialog
* Split package support and shared source
* Improved AUR4 support
* Bug fix for AUR4 -Si
Expand Down
16 changes: 5 additions & 11 deletions _apacman → zsh-completion
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#compdef apacman

# copy this file to /usr/share/zsh/site-functions/_pacman
# copy this file to /usr/share/zsh/site-functions/_apacman

typeset -A opt_args
setopt extendedglob
Expand Down Expand Up @@ -321,7 +321,7 @@ _pacman_get_command() {
}

# main dispatcher
_pacman_zsh_comp() {
_apacman_zsh_comp() {
local -a args cmds;
local tmp
args=( ${${${(M)words:#-*}#-}:#-*} )
Expand Down Expand Up @@ -448,19 +448,13 @@ _pacman_zsh_comp() {

_pacman_comp() {
case "$service" in
makepkg)
_makepkg "$@"
;;
pacman-key)
_pacman_key "$@"
;;
pacman)
_pacman_zsh_comp "$@"
apacman)
_apacman_zsh_comp "$@"
;;
*)
_message "Error"
;;
esac
}

_pacman_comp "$@"
_apacman_comp "$@"

0 comments on commit 1b4e0cc

Please sign in to comment.