aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/config.py
diff options
context:
space:
mode:
authorأحمد المحمودي <aelmahmoudy@users.sourceforge.net>2009-07-29 15:19:26 +0200
committerGuido Günther <agx@sigxcpu.org>2009-07-29 15:19:26 +0200
commitb86ddcc55d2df1f2fb212924dc26d81e20e2db40 (patch)
treea7b05e3e7b8897c2e1f0289b32254531920ef719 /gbp/config.py
parent14915d9c713246b0f284e8e2acec3f45587ef70e (diff)
add --git-overlay option
Closes: #411206
Diffstat (limited to 'gbp/config.py')
-rw-r--r--gbp/config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gbp/config.py b/gbp/config.py
index 0ffcc327..9aec3957 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -43,6 +43,7 @@ class GbpOptionParser(OptionParser):
'git-log' : '--no-merges',
'export' : 'HEAD',
'export-dir' : '',
+ 'overlay' : 'False',
'tarball-dir' : '',
'ignore-new' : 'False',
'meta' : 'False',
@@ -79,6 +80,8 @@ class GbpOptionParser(OptionParser):
"parse meta tags in commit messages, default is '%(meta)s'",
'ignore-new':
"build with uncommited changes in the source tree, default is '%(ignore-new)s'",
+ 'overlay':
+ "extract orig tarball when using export-dir option, default is '%(overlay)s'",
}
config_files = [ '/etc/git-buildpackage/gbp.conf',
os.path.expanduser('~/.gbp.conf'),