diff options
author | Guido Guenther <agx@sigxcpu.org> | 2008-02-21 16:23:03 +0100 |
---|---|---|
committer | Guido Guenther <agx@sigxcpu.org> | 2008-02-21 16:23:03 +0100 |
commit | ec9debd0184b5cc7a22f1e9c01bd6e2faf8fa5b4 (patch) | |
tree | f8ee20bacd85996e06ad6b9bf3e3ecd77d6cb9d4 | |
parent | 267b4e9e74be3a165659d941b0216743ab5106ae (diff) | |
download | git-buildpackage-ec9debd0184b5cc7a22f1e9c01bd6e2faf8fa5b4.tar.gz git-buildpackage-ec9debd0184b5cc7a22f1e9c01bd6e2faf8fa5b4.tar.bz2 git-buildpackage-ec9debd0184b5cc7a22f1e9c01bd6e2faf8fa5b4.zip |
add prstine-tar config option
-rw-r--r-- | gbp.conf | 2 | ||||
-rw-r--r-- | gbp/config.py | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,8 @@ # the default tag formats used: #upstream-tag = upstream/%(version)s #debian-tag = debian/%(version)s +# use pristine-tar: +#pristine-tar = True # Options only affecting git-buildpackage [git-buildpackage] diff --git a/gbp/config.py b/gbp/config.py index e1e11a2e..6e1d5fa0 100644 --- a/gbp/config.py +++ b/gbp/config.py @@ -27,6 +27,7 @@ class GbpOptionParser(OptionParser): 'cleaner' : 'debuild clean', 'debian-branch' : 'master', 'upstream-branch' : 'upstream', + 'pristine-tar' : '', # empty means False 'sign-tags' : '', # empty means False 'no-create-orig' : '', # empty means False 'keyid' : '', |