summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2008-06-21 18:12:23 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2008-06-21 18:13:10 +0200
commit4b38d421a0b78adda6a2650be0221e21f49dec7c (patch)
tree03d3b65a388be005734703901924054e94a4e29b
parent408a50c53aaab402d7a4c2d3453d8ce35fdec622 (diff)
downloadndim-git-utils-4b38d421a0b78adda6a2650be0221e21f49dec7c.tar.gz
ndim-git-utils-4b38d421a0b78adda6a2650be0221e21f49dec7c.tar.xz
ndim-git-utils-4b38d421a0b78adda6a2650be0221e21f49dec7c.zip
nbb: Comments and docs cleanup
-rw-r--r--nbb/nbb_lib.in37
1 files changed, 17 insertions, 20 deletions
diff --git a/nbb/nbb_lib.in b/nbb/nbb_lib.in
index 4ba3d17..17e2aa1 100644
--- a/nbb/nbb_lib.in
+++ b/nbb/nbb_lib.in
@@ -29,33 +29,33 @@ TODO:
Command line interface (TBD):
Run default build commands:
- $ %(prog)s [general options] init [command specific options]
- $ %(prog)s [general options] configure [command specific options]
- $ %(prog)s [general options] build [command specific options]
- $ %(prog)s [general options] install [command specific options]
+ $ %(prog)s [general options] init [command specific options]
+ $ %(prog)s [general options] configure [command specific options]
+ $ %(prog)s [general options] build [command specific options]
+ $ %(prog)s [general options] install [command specific options]
Run cleanup commands:
- TBD
+ TBD
Get/set config:
- $ %(prog)s [general options] config srcdir
- $ %(prog)s [general options] config builddir [<builddir>]
- $ %(prog)s [general options] config installdir [<installdir>]
+ $ %(prog)s [general options] config srcdir
+ $ %(prog)s [general options] config builddir [<builddir>]
+ $ %(prog)s [general options] config installdir [<installdir>]
Start an interactive shell in either of the three directories:
- $ %(prog)s [general options] src-sh [command specific options]
- $ %(prog)s [general options] build-sh [command specific options]
- $ %(prog)s [general options] install-sh [command specific options]
+ $ %(prog)s [general options] src-sh [command specific options]
+ $ %(prog)s [general options] build-sh [command specific options]
+ $ %(prog)s [general options] install-sh [command specific options]
Run command in builddir:
- $ %(prog)s [general options] run <command> [<param>...]
- $ %(prog)s [general options] run [command specific options... <-->] <cmd>...
+ $ %(prog)s [general options] run <command> [<param>...]
+ $ %(prog)s [general options] run [command specific options... <-->] <cmd>...
(Not sure about these)
Run a non-interactive shell command in either of the three directories:
- $ %(prog)s [general options] src-sh [command specific options] <command>...
- $ %(prog)s [general options] build-sh [command specific options] <command>...
- $ %(prog)s [general options] install-sh [command specific options] <cmd...>
+ $ %(prog)s [general options] src-sh [command specific options] <command>...
+ $ %(prog)s [general options] build-sh [command specific options] <command>...
+ $ %(prog)s [general options] install-sh [command specific options] <cmd...>
Global options:
@@ -66,7 +66,6 @@ Global options:
-b --build-system Force buildsystem detection (%(buildsystems)s)
-v --vcs Force VCS detection (%(vcssystems)s)
-
"""
import sys
@@ -180,6 +179,7 @@ class PluginDict(object):
########################################################################
# Plugin architecture (metaclass tricks) by Marty Alchin from
# http://gulopine.gamemusic.org/2008/jan/10/simple-plugin-framework/
+# Slightly modified go store plugins as dict.
########################################################################
class GenericPluginMeta(type):
@@ -275,9 +275,6 @@ class VCSourceTree(object):
########################################################################
# Command plugin system
########################################################################
-# Plugin architecture (metaclass tricks) by Marty Alchin from
-# http://gulopine.gamemusic.org/2008/jan/10/simple-plugin-framework/
-########################################################################
class Command(object):
"""