diff options
author | Michael Vogt <mvo@debian.org> | 2014-04-22 16:07:32 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-05-22 08:39:44 +0200 |
commit | 8f418981337503ff7abedd872f788b51bcdbc886 (patch) | |
tree | 26a1104d62281ca1773b3fd0a6d49dbc9c0ffc38 /apt-private/private-update.cc | |
parent | 6f34deead51a1c200589994a4cf46b7d79a45e69 (diff) |
show upgradable packages after apt update
Closes: 748389
Diffstat (limited to 'apt-private/private-update.cc')
-rw-r--r-- | apt-private/private-update.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apt-private/private-update.cc b/apt-private/private-update.cc index da83d7741..fa827dea4 100644 --- a/apt-private/private-update.cc +++ b/apt-private/private-update.cc @@ -75,6 +75,24 @@ bool DoUpdate(CommandLine &CmdL) return false; } + // show basic stats (if the user whishes) + if (_config->FindB("APT::Cmd::Show-Update-Stats", false) == true) + { + int upgradable = 0; + Cache.Open(); + for (pkgCache::PkgIterator I = Cache->PkgBegin(); I.end() != true; ++I) + { + pkgDepCache::StateCache &state = Cache[I]; + if (I->CurrentVer != 0 && state.Upgradable()) + upgradable++; + } + const char *msg = ngettext( + "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n", + "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n", + upgradable); + ioprintf(c1out, msg, upgradable); + } + return true; } /*}}}*/ |