diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-04 11:27:47 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-05 15:22:37 +0300 |
commit | 6e90b57a442424876b1325b9209f79c8a885a479 (patch) | |
tree | bcdc8ee050c05799e17dcca12d7afc80274840d0 /clean/clean.cli | |
parent | 17d44ec2c41a5b485cecae51a07396f85a601248 (diff) |
Make use of foreign package objects in build-related functionality
Diffstat (limited to 'clean/clean.cli')
-rw-r--r-- | clean/clean.cli | 45 |
1 files changed, 5 insertions, 40 deletions
diff --git a/clean/clean.cli b/clean/clean.cli index 3f4e2ea..c80c1b1 100644 --- a/clean/clean.cli +++ b/clean/clean.cli @@ -47,28 +47,28 @@ class options explicitly. If unspecified, the default timeout is zero (never expire)." } - std::string --build-db-user + std::string --db-user { "<user>", "Build database user name. If not specified, then operating system (login) name is used." } - std::string --build-db-password + std::string --db-password { "<pass>", "Build database password. If not specified, then login without password is expected to work." } - std::string --build-db-name = "brep_build" + std::string --db-name = "brep_build" { "<name>", "Build database name. If not specified, then \cb{brep_build} is used by default." } - std::string --build-db-host + std::string --db-host { "<host>", "Build database host name, address, or socket. If not specified, then @@ -76,47 +76,12 @@ class options (Unix-domain socket, etc)." } - std::uint16_t --build-db-port = 0 + std::uint16_t --db-port = 0 { "<port>", "Build database port number. If not specified, the default port is used." } - std::string --package-db-user - { - "<user>", - "Package database user name. If not specified, then operating system - (login) name is used." - } - - std::string --package-db-password - { - "<pass>", - "Package database password. If not specified, then login without password - is expected to work." - } - - std::string --package-db-name = "brep_package" - { - "<name>", - "Package database name. If not specified, then \cb{brep_package} is used by - default." - } - - std::string --package-db-host - { - "<host>", - "Package database host name, address, or socket. If not specified, then - connect to \cb{localhost} using the operating system-default mechanism - (Unix-domain socket, etc)." - } - - std::uint16_t --package-db-port = 0 - { - "<port>", - "Package database port number. If not specified, the default port is used." - } - std::string --pager // String to allow empty value. { "<path>", |