diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-08-22 16:17:49 +0300 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-12-19 13:32:27 +0200 |
commit | 4251243b995152289cd8cfd1444be6cea75148a2 (patch) | |
tree | bfebc93a5ac5d13cdfa03de8e08027ebb7f01c18 /gbp/config.py | |
parent | e021ecaa4ff2aeaff4d103d391811fb6c88f68c7 (diff) | |
download | git-buildpackage-4251243b995152289cd8cfd1444be6cea75148a2.tar.gz git-buildpackage-4251243b995152289cd8cfd1444be6cea75148a2.tar.bz2 git-buildpackage-4251243b995152289cd8cfd1444be6cea75148a2.zip |
Introduce import-bb tool
This is the first tool in an effort of enabling gbp in the BitBake build
environment. Gbp-import-bb is a tool for importing packages from a
BitBake-based "combined" distro repository into individual per-package
Git repositories.
Change-Id: I86e27d8a1817eae30c3f828cea70b06162543000
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'gbp/config.py')
-rw-r--r-- | gbp/config.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gbp/config.py b/gbp/config.py index dd0c6313..fba9985f 100644 --- a/gbp/config.py +++ b/gbp/config.py @@ -702,4 +702,18 @@ class GbpOptionParserRpm(GbpOptionParser): "Meta tags for the bts commands, default is '%(meta-bts)s'", }) +class GbpOptionParserBB(GbpOptionParserRpm): + """Commandline and config file option parser for the -bb commands""" + defaults = dict(GbpOptionParserRpm.defaults) + defaults.update( { + 'meta-dir' : '', + } ) + + help = dict(GbpOptionParserRpm.help) + help.update( { + 'meta-dir': + "Subdir where bitbake meta files are stored, default " + "is '%(meta-dir)s'", + } ) + # vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: |