diff options
author | aurelien <aurelien@cwb.io> | 2012-11-22 09:49:46 +0100 |
---|---|---|
committer | aurelien <aurelien@cwb.io> | 2012-11-22 09:49:46 +0100 |
commit | 9cce2f098d5d77a2748952e1221127b9f0614566 (patch) | |
tree | 033dfbe157c9cdecd2a1d428ee73214e94035424 /pcr/pactools/pt-pacfix | |
parent | c6f82e8dc74a97c194d1e2caeab67ac5b3743335 (diff) |
+ gtkmm pactools ttf-roboto
Diffstat (limited to 'pcr/pactools/pt-pacfix')
-rwxr-xr-x | pcr/pactools/pt-pacfix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/pactools/pt-pacfix b/pcr/pactools/pt-pacfix new file mode 100755 index 000000000..cd128331e --- /dev/null +++ b/pcr/pactools/pt-pacfix @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# +# pacfix.py: a script by pierluigi to list all the packages currently installed according to /var/log/pacman.log +# 2008-07-04: Modified by Chris Giles to prevent failure when "pacman.log" has lines with only two words + + +pkg=[] + +logfile = open("/var/log/pacman.log","r") +log=logfile.readlines() +for myline in log: + myarray = myline.strip("\n").split(" ") + if len(myarray) >= 3 : + if (myarray[2]=="installed" or myarray[2]=="upgraded"): + if (pkg.count(myarray[3])==0): + pkg.append(myarray[3]) + if (myarray[2]=="removed"): + if (pkg.count(myarray[3])!=0): + pkg.remove(myarray[3]) +pkg.sort() +for p in pkg: + print(p) |