From 12a5375f25d6a7be5a5741c728a8f9b8168761a4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 22 Feb 2018 13:45:16 +0200 Subject: Document new rep-list and rep-remove, update rep-add and rep-fetch --- bpkg/rep-list.cli | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 bpkg/rep-list.cli (limited to 'bpkg/rep-list.cli') diff --git a/bpkg/rep-list.cli b/bpkg/rep-list.cli new file mode 100644 index 0000000..f25a947 --- /dev/null +++ b/bpkg/rep-list.cli @@ -0,0 +1,46 @@ +// file : bpkg/rep-list.cli +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +include ; + +include ; + +"\section=1" +"\name=bpkg-rep-list" +"\summary=list repositories in configuration" + +namespace bpkg +{ + { + "", + + "\h|SYNOPSIS| + + \c{\b{bpkg rep-list}|\b{list} []} + + \h|DESCRIPTION| + + The \cb{rep-list} command lists the repositories in the configuration. + + For each repository a line containing the repository name and location is + printed to \cb{STDOUT}. If the \cb{--complements|-c} and/or + \cb{--prerequisites|-p} options are specified, then it is followed by + the list of complement and/or prerequisite repositories, recursively." + } + + class rep_list_options: configuration_options + { + "\h|REP-LIST OPTIONS|" + + bool --complements|-c + { + "List complement repositories." + } + + bool --prerequisites|-p + { + "List prerequisite repositories." + } + }; +} -- cgit v1.1