summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-01-25 17:15:53 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2010-01-25 17:15:53 +0100
commit503a68c63ad9c71d38ab22aea475365213b0559c (patch)
treea0fe25e4ac5d7b1f781bd305a79e438a6a7fe415
parent1c5459803004d04d09ff6674b25155db39e71037 (diff)
* cmdline/apt-mark:
- merge fix from Gene Cash that supports markauto for packages that are not in the extended_states file yet (closes: #534920)
-rwxr-xr-xcmdline/apt-mark9
-rw-r--r--debian/changelog10
2 files changed, 13 insertions, 6 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)
diff --git a/debian/changelog b/debian/changelog
index edc3ab9b0..b89a88b87 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,15 +1,17 @@
apt (0.7.25.2) UNRELEASED; urgency=low
+ [ Michael Vogt ]
* apt-pkg/contrib/cdromutl.cc:
- fix UnmountCdrom() fails, give it a bit more time and try
the umount again
* methods/cdrom.cc:
- fixes in multi cdrom setup code
+ * cmdline/apt-mark:
+ - merge fix from Gene Cash that supports markauto for
+ packages that are not in the extended_states file yet
+ (closes: #534920)
- -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 22 Jan 2010 20:06:12 +0100
-
-apt (0.7.25.2) UNRELEASED; urgency=low
-
+ [ David Kalnischkies ]
* apt-pkg/contrib/fileutl.cc:
- Fix the newly introduced method GetListOfFilesInDir to not
accept every file if no extension is enforced