summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-06-01 13:51:21 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-06-01 13:51:21 +0000
commiteb0a335ea298ae7901af2036156243b38d5027cf (patch)
tree8d6d3c104be4d4a747ddb74fa6ba062673a93ea8 /cmdline
parent42ab8223d52672cf28c6e2e574bb364c438bd49a (diff)
* added a missing OpProgress::Done() in depCache::Init(), removed the show-virtual-packages patch in apt-cache because matt does not like him :/
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-cache.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index 3bd1435fc..0014563b8 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1360,20 +1360,6 @@ bool ShowPackage(CommandLine &CmdL)
++found;
- // Show virtual packages
- if (Pkg->ProvidesList != 0)
- {
- ioprintf(std::cout,_("Package %s is a virtual package provided by:\n"),
- Pkg.Name());
-
- pkgCache::PrvIterator I = Pkg.ProvidesList();
- for (; I.end() == false; I++)
- cout << " " << I.OwnerPkg().Name() << endl;
- cout << _("You should explicitly select one to show.") << endl;
- continue;
- }
-
-
// Find the proper version to use.
if (_config->FindB("APT::Cache::AllVersions","true") == true)
{