makepkg.8: remove bold from --pkg's optarg
[pacman-ng.git] / contrib / paclist.in
blob7883e21bebea0568d14a371f9358ffd2aa2dc3d4
1 #!/bin/bash
2 # paclist - List all packages installed from a given repo
4 # Copyright (C) 2008 Dan McGee <dpmcgee@gmail.com>
5 # Copyright (C) 2011 Dave Reisner <dreisner@archlinux.org>
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 declare -r myname='paclist'
21 declare -r myver='@PACKAGE_VERSION@'
23 export TEXTDOMAIN='pacman'
24 export TEXTDOMAINDIR='/usr/share/locale'
26 # determine whether we have gettext; make it a no-op if we do not
27 if ! type gettext &>/dev/null; then
28 gettext() {
29 echo "$@"
33 usage() {
34 printf '%s - List all packages installed from a given repo\n' "$myname"
35 printf 'Usage: %s <repo>\n' "$myname"
36 printf 'Example: %s testing\n' "$myname"
39 version() {
40 printf "%s %s\n" "$myname" "$myver"
41 echo 'Copyright (C) 2008 Dan McGee <dpmcgee@gmail.com>'
42 echo 'Copyright (C) 2011 Dave Reisner <dreisner@archlinux.org>'
45 if [[ -z $1 ]]; then
46 usage
47 exit 1
50 if [[ $1 = -@(h|-help) ]]; then
51 usage
52 exit 0
53 elif [[ $1 = -@(V|-version) ]]; then
54 version
55 exit 0
58 printf -v installed '[%s]' "$(gettext installed)"
59 pacman -Sl $1 | awk -v i="$installed" '$NF == i { print $2,$3 }'
61 # exit with pacman's return value, not awk's
62 exit ${PIPESTATUS[0]}
64 # vim: set ts=2 sw=2 noet: