diff options
author | Julian Andres Klode <jak@debian.org> | 2010-07-21 17:19:16 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2010-07-21 17:19:16 +0200 |
commit | 6bf8f0d198f00dcbb46dba97840681fa2227177a (patch) | |
tree | f2e7c5aed04d1cb0314e19356db76a65ae959c2e /apt-pkg/deb | |
parent | 621e918e5e57675580ee5cb9bb4775d106814be4 (diff) |
Add to history whether a change was automatic or not.
Diffstat (limited to 'apt-pkg/deb')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 2945e9750..aa0b04bd5 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -675,7 +675,12 @@ bool pkgDPkgPM::OpenLog() for (pkgCache::PkgIterator I = Cache.PkgBegin(); I.end() == false; I++) { if (Cache[I].NewInstall()) - install += I.FullName(false) + string(" (") + Cache[I].CandVersion + string("), "); + { + install += I.FullName(false) + string(" (") + Cache[I].CandVersion; + if (Cache[I].Flags & pkgCache::Flag::Auto) + install+= ", automatic"; + install += string("), "); + } else if (Cache[I].Upgrade()) upgrade += I.FullName(false) + string(" (") + Cache[I].CurVersion + string(", ") + Cache[I].CandVersion + string("), "); else if (Cache[I].Downgrade()) |