Codebase list debian-goodies / a2afd9e
Imported Debian version 0.44 Javier Fernandez-Sanguino 12 years ago
2 changed file(s) with 12 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
146146 for package in packages.values():
147147 if package == 'util-linux':
148148 continue
149 dpkgQuery = ["dpkg", "--listfiles ", package.name]
149 dpkgQuery = ["dpkg", "--listfiles", package.name]
150150 dpkgProc = subprocess.Popen(dpkgQuery, stdout=subprocess.PIPE, stderr=None)
151151 for line in dpkgProc.stdout.readlines():
152152 path = line[:-1]
255255 return 0
256256 # Skip automatically generated files
257257 if f.endswith('icon-theme.cache'):
258 return 0
259 # Skip mutt files
260 if re.compile("/tmp/mutt-\w+-[\-0-9]").search(f):
258261 return 0
259262 # TODO: it should only care about library files (i.e. /lib, /usr/lib and the like)
260263 # build that check with a regexp to exclude others
0 debian-goodies (0.44) unstable; urgency=low
1
2 * checkrestart:
3 * Remove extra space in call to dpkg (Closes: #490399)
4 * Prevent warnings when using mutt (it creates deleted files)
5
6 -- Javier Fernandez-Sanguino Pen~a <jfs@debian.org> Sat, 12 Jul 2008 14:19:51 +0200
7
08 debian-goodies (0.43) unstable; urgency=low
19
210 * Fix typo in checkrestart's call to dpkg (Closes: #490179)