aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-info-options.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-11 10:04:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-11 10:04:02 +0200
commitad257079568746d71d913c6fca96852da6fe3bd6 (patch)
treed7a59392a1159c630c4fd0ccad816e9fd3acadf3 /bpkg/rep-info-options.cli
parent302834a875804ff943dfb005682949fd3d404d01 (diff)
Reorganize .cli files, add man/xhtml page generation (via script for now)
Diffstat (limited to 'bpkg/rep-info-options.cli')
-rw-r--r--bpkg/rep-info-options.cli53
1 files changed, 0 insertions, 53 deletions
diff --git a/bpkg/rep-info-options.cli b/bpkg/rep-info-options.cli
deleted file mode 100644
index 2d8b45e..0000000
--- a/bpkg/rep-info-options.cli
+++ /dev/null
@@ -1,53 +0,0 @@
-// file : bpkg/rep-info-options.cli
-// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-include <bpkg/common-options.cli>;
-
-"\section=1"
-"\name=bpkg-rep-info"
-"\summary=print information about repository"
-
-/*
-"\h{SYNOPSIS}
-
-bpkg rep-info [<options>] <rep>"
-
-"\h{DESCRIPTION}
-
-The \cb{rep-info} command prints information about the specified repository.
-By default it print the repository's name and location as the first line
-followed by the list of prerequisite/complement repositories and the list
-of available packages. This default behavior, however, can be altered in
-various ways using options listed below. Note that the information is
-written to \cb{STDOUT}, not \cb{STDERR}."
-*/
-
-namespace bpkg
-{
- class rep_info_options: common_options
- {
- bool --name|-n
- {
- "Print the specified repository's name and location."
- }
-
- bool --repositories|-r
- {
- "Print information about prerequisite/complement repositories."
- }
-
- bool --packages|-p
- {
- "Print information about available packages."
- }
-
- bool --manifest|-m
- {
- "Instead of printing the information in the human-readable form, dump
- it as manifest(s). Normally you would use this option in combination
- with \cb{--packages|-p} or \cb{--repositories|-r} to only dump one
- of the manifests."
- }
- };
-}