diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-13 01:45:26 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-13 01:45:26 +0100 |
commit | d328fd1a20543192a7ea3eac124f10a5793743e9 (patch) | |
tree | 68c68ff6bc12037ac74899f686fce9c0a3e419bd /cmdline/apt-mark | |
parent | eef21b9f52adc2170a3a3ffd0258a19810cacfd7 (diff) | |
parent | 07f2526e45f9978201817237745727db6177c29a (diff) |
merge with debian-sid
Diffstat (limited to 'cmdline/apt-mark')
-rwxr-xr-x | cmdline/apt-mark | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cmdline/apt-mark b/cmdline/apt-mark index 3a818a3db..2326ece38 100755 --- a/cmdline/apt-mark +++ b/cmdline/apt-mark @@ -46,11 +46,16 @@ def mark_unmark_automatic(filename, action, pkgs): print "changing %s to %s" % (pkgname,action) newsec = apt_pkg.RewriteSection(tagfile.Section, [], - [ ("Auto-Installed",str(action)) ] - ) + [ ("Auto-Installed",str(action)) ]) + pkgs.remove(pkgname) outfile.write(newsec+"\n") else: outfile.write(str(tagfile.Section)+"\n") + if action == 1: + for pkgname in pkgs: + if options.verbose: + print "changing %s to %s" % (pkgname,action) + outfile.write("Package: %s\nAuto-Installed: %d\n\n" % (pkgname, action)) # all done, rename the tmpfile os.chmod(outfile.name, 0644) os.rename(outfile.name, STATE_FILE) |