// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.34 1999/04/19 02:35:38 jgg Exp $
+// $Id: apt-cache.cc,v 1.36 1999/05/14 02:51:36 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
apt-cache provides some functions fo manipulating the cache files.
It uses the command line interface common to all the APT tools. The
only really usefull function right now is dumpavail which is used
- by the dselect method. Everything else is ment as a debug aide.
+ by the dselect method. Everything else is meant as a debug aide.
Returns 100 on failure, 0 on success.
}
cout << "Reverse Provides: " << endl;
for (pkgCache::PrvIterator Prv = Pkg.ProvidesList(); Prv.end() != true; Prv++)
- cout << Prv.OwnerPkg().Name() << " " << Prv.OwnerVer().VerStr();
- cout << endl;
-
+ cout << Prv.OwnerPkg().Name() << " " << Prv.OwnerVer().VerStr() << endl;
}
return true;
cout << endl;
cout << "apt-cache is a low-level tool used to manipulate APT's binary" << endl;
cout << "cache files stored in " << _config->FindFile("Dir::Cache") << endl;
- cout << "It is not ment for ordinary use only as a debug aide." << endl;
+ cout << "It is not meant for ordinary use only as a debug aide." << endl;
cout << endl;
cout << "Commands:" << endl;
cout << " add - Add an package file to the source cache" << endl;