3 # paclog-pkglist - Parse a log file into a list of currently installed packages
5 # Copyright (C) 2011 Dave Reisner <dave@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 export TEXTDOMAIN
='pacman'
21 export TEXTDOMAINDIR
='/usr/share/locale'
22 declare logfile
=${1:-@localstatedir@/log/pacman.log}
25 if [[ $1 = -@
(h|
-help) ]]; then
26 printf 'usage: %s [pacman log]\n' "${0##*/}"
27 printf 'example: %s @localstatedir@/log/pacman.log\n' "${0##*/}"
28 printf '\ndefaults to: @localstatedir@/log/pacman.log\n'
30 elif [[ ! -e $logfile ]]; then
31 printf $
"target not found: %s\n" "$1"
44 NF == 5 && action == "installed" {
45 gsub(/[()]/, "", pkgver)
50 NF == 7 && action == "upgraded" {
56 NF == 5 && action == "removed" {
63 printf "%s %s\n",i,pkg[i]
68 # vim: set ts=2 sw=2 noet: