diff options
author | William Giokas <1007380@gmail.com> | 2013-03-06 00:05:08 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-03-08 08:04:40 +0100 |
commit | d90641a894b915f5e13876bba88aa765c9961b0a (patch) | |
tree | ddf6e7901b6525973869fce583510eb3959accfc | |
parent | 6e0c47d22f44693d6c1fb1c54d5b5beb637d5ebf (diff) | |
download | pacman-d90641a894b915f5e13876bba88aa765c9961b0a.tar.gz pacman-d90641a894b915f5e13876bba88aa765c9961b0a.tar.xz |
contrib: Add color to paccache
Signed-off-by: William Giokas <1007380@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | contrib/paccache.sh.in | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/contrib/paccache.sh.in b/contrib/paccache.sh.in index 46eb2306..c3312733 100644 --- a/contrib/paccache.sh.in +++ b/contrib/paccache.sh.in @@ -27,23 +27,16 @@ declare -a candidates=() cmdopts=() whitelist=() blacklist=() declare -i delete=0 dryrun=0 filecount=0 move=0 needsroot=0 totalsaved=0 verbose=0 declare cachedir=@localstatedir@/cache/pacman/pkg delim=$'\n' keep=3 movedir= scanarch= -msg() { - local mesg=$1; shift - printf "==> $mesg\n" "$@" -} >&2 +USE_COLOR='y' -error() { - local mesg=$1; shift - printf "==> ERROR: $mesg\n" "$@" -} >&2 +m4_include(../scripts/library/output_format.sh) +m4_include(../scripts/library/parseopts.sh) die() { error "$@" exit 1 } -m4_include(../scripts/library/parseopts.sh) - # reads a list of files on stdin and prints out deletion candidates pkgfilter() { # there's whitelist and blacklist parameters passed to this @@ -179,6 +172,7 @@ containing pacman package tarballs. -i, --ignore <pkgs> ignore 'pkgs', comma separated. Alternatively, specify '-' to read package names from stdin, newline delimited. -k, --keep <num> keep 'num' of each package in 'cachedir' (default: 3). + --nocolor remove color from output. -u, --uninstalled target uninstalled packages. -v, --verbose increase verbosity. specify up to 3 times. -z, --null use null delimiters for candidate names (only with -v and -vv) @@ -193,7 +187,7 @@ version() { OPT_SHORT=':a:c:dfhi:k:m:rsuVvz' OPT_LONG=('arch:' 'cachedir:' 'dryrun' 'force' 'help' 'ignore:' 'keep:' 'move' - 'remove' 'uninstalled' 'version' 'verbose' 'null') + 'nocolor' 'remove' 'uninstalled' 'version' 'verbose' 'null') if ! parseopts "$OPT_SHORT" "${OPT_LONG[@]}" -- "$@"; then exit 1 @@ -233,6 +227,8 @@ while :; do keep=$(( 10#$keep )) fi shift ;; + --nocolor) + USE_COLOR='n' ;; -m|--move) move=1 movedir=$2 shift ;; @@ -256,6 +252,8 @@ while :; do shift done +m4_include(../scripts/library/term_colors.sh) + # remaining args are a whitelist whitelist=("$@") |