summaryrefslogtreecommitdiff
path: root/gbp/config.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-11-05 20:39:24 +0100
committerGuido Günther <agx@sigxcpu.org>2012-11-08 23:26:23 +0100
commitcf48b03984e0dffec3b72447436f15d043794873 (patch)
tree51f5811a82841cdc5e601731ef197a450310439a /gbp/config.py
parentb7cdef5e8b62cbaf41e330be9b54215ff8782dab (diff)
Allow to remove the orig tarball symlink
that's used make pristine-tar see the correct orig tarball name. Closes: #692401
Diffstat (limited to 'gbp/config.py')
-rw-r--r--gbp/config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gbp/config.py b/gbp/config.py
index 6d8fcfe..7f269d4 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -129,6 +129,7 @@ class GbpOptionParser(OptionParser):
'template-dir': '',
'remote-config': '',
'allow-unauthenticated': 'False',
+ 'symlink-orig': 'True',
}
help = {
'debian-branch':
@@ -252,6 +253,10 @@ class GbpOptionParser(OptionParser):
'allow-unauthenticated':
("Don't verify integrity of downloaded source, "
"default is '%(allow-unauthenticated)s'"),
+ 'symlink-orig':
+ ("Whether to creat a symlink from the upstream tarball "
+ "to the orig.tar.gz if needed, default is "
+ "'%(symlink-orig)s'")
}
def_config_files = [ '/etc/git-buildpackage/gbp.conf',