diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-08-30 23:14:51 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-08-31 18:19:37 +0300 |
commit | d22f466823192963c22eb8f51ae930cb5af8fa9a (patch) | |
tree | f60f5dc30a76a2fff67ab20b399dafe05e80a024 /load/load.cli | |
parent | 05eeac08b63449925cc2e12d2fdaf937d5fa1bbc (diff) |
Add support for git repositories to brep-load
Diffstat (limited to 'load/load.cli')
-rw-r--r-- | load/load.cli | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/load/load.cli b/load/load.cli index 6db6048..bbe54ff 100644 --- a/load/load.cli +++ b/load/load.cli @@ -10,7 +10,7 @@ include <libbrep/types.hxx>; "\section=1" "\name=brep-load" -"\summary=load build2 repositories into brep package database" +"\summary=load repositories into brep package database" { "<options> <loadtab>", @@ -23,10 +23,10 @@ include <libbrep/types.hxx>; \h|DESCRIPTION| - \cb{brep-load} reads the list of repositories from the specified - <loadtab> configuration file, fetches their manifest files, and loads the - repository and package information into the \cb{package} database, suitable - for consumption by the \cb{brep} web module. + \cb{brep-load} reads the list of repositories from the specified <loadtab> + configuration file, fetches their manifest files, and loads the repository + and package information into the \cb{package} database, suitable for + consumption by the \cb{brep} web module. Note that \cb{brep-load} expects the \cb{package} database schema to have already been created using \l{brep-migrate(1)}. @@ -40,6 +40,18 @@ class options { "\h|OPTIONS|" + bool --force + { + "Reload package information regardless of the repository manifest file + timestamps." + }; + + bool --shallow + { + "Don't load package information from prerequisite or complement + repositories." + }; + std::string --db-user|-u { "<user>", |