|
@@ -41,6 +41,7 @@
|
|
|
#include <apt-pkg/pkgsystem.h>
|
|
#include <apt-pkg/pkgsystem.h>
|
|
|
#include <apt-pkg/indexfile.h>
|
|
#include <apt-pkg/indexfile.h>
|
|
|
#include <apt-pkg/metaindex.h>
|
|
#include <apt-pkg/metaindex.h>
|
|
|
|
|
+#include <apt-pkg/hashes.h>
|
|
|
|
|
|
|
|
#include <apti18n.h>
|
|
#include <apti18n.h>
|
|
|
|
|
|
|
@@ -54,8 +55,12 @@
|
|
|
#include <apt-private/private-upgrade.h>
|
|
#include <apt-private/private-upgrade.h>
|
|
|
#include <apt-private/private-show.h>
|
|
#include <apt-private/private-show.h>
|
|
|
#include <apt-private/private-main.h>
|
|
#include <apt-private/private-main.h>
|
|
|
|
|
+#include <apt-private/private-utils.h>
|
|
|
|
|
+#include <apt-private/private-sources.h>
|
|
|
/*}}}*/
|
|
/*}}}*/
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
bool ShowHelp(CommandLine &CmdL)
|
|
bool ShowHelp(CommandLine &CmdL)
|
|
|
{
|
|
{
|
|
|
ioprintf(c1out,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
|
|
ioprintf(c1out,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
|
|
@@ -74,6 +79,8 @@ bool ShowHelp(CommandLine &CmdL)
|
|
|
" update - update list of available packages\n"
|
|
" update - update list of available packages\n"
|
|
|
" install - install packages\n"
|
|
" install - install packages\n"
|
|
|
" upgrade - upgrade the systems packages\n"
|
|
" upgrade - upgrade the systems packages\n"
|
|
|
|
|
+ "\n"
|
|
|
|
|
+ " edit-sources - edit the source information file\n"
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
return true;
|
|
@@ -89,6 +96,8 @@ int main(int argc, const char *argv[]) /*{{{*/
|
|
|
{"remove", &DoInstall},
|
|
{"remove", &DoInstall},
|
|
|
{"update",&DoUpdate},
|
|
{"update",&DoUpdate},
|
|
|
{"upgrade",&DoUpgradeWithAllowNewPackages},
|
|
{"upgrade",&DoUpgradeWithAllowNewPackages},
|
|
|
|
|
+ // misc
|
|
|
|
|
+ {"edit-sources",&EditSources},
|
|
|
// helper
|
|
// helper
|
|
|
{"moo",&DoMoo},
|
|
{"moo",&DoMoo},
|
|
|
{"help",&ShowHelp},
|
|
{"help",&ShowHelp},
|