aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-01-18 08:47:55 +0100
committerGuido Günther <agx@sigxcpu.org>2012-01-18 08:47:55 +0100
commit43a6aa2a79dd279848ec38c867683344cfd679ea (patch)
tree2b1af77c2076a662aae98a293c48731193e28a53 /gbp/scripts
parent0c47432db776f37ceda027bf9901022df37e545d (diff)
Don't assume gzip compression of the orig tarball
Diffstat (limited to 'gbp/scripts')
-rwxr-xr-xgbp/scripts/buildpackage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gbp/scripts/buildpackage.py b/gbp/scripts/buildpackage.py
index 89ef414b..db6f055e 100755
--- a/gbp/scripts/buildpackage.py
+++ b/gbp/scripts/buildpackage.py
@@ -318,7 +318,7 @@ def prepare_output_dir(dir):
def pristine_tar_build_orig(repo, cp, output_dir, options):
"""
build orig using pristine-tar
- @return: True: orig.tar.gz build, False: noop
+ @return: True: orig tarball build, False: noop
"""
if options.pristine_tar:
pt = PristineTar()
@@ -466,9 +466,9 @@ def parse_args(argv, prefix):
orig_group.add_config_file_option(option_name="upstream-tree", dest="upstream_tree")
orig_group.add_boolean_config_file_option(option_name="pristine-tar", dest="pristine_tar")
orig_group.add_config_file_option(option_name="force-create", dest="force_create",
- help="force creation of orig.tar.gz", action="store_true")
+ help="force creation of orig tarball", action="store_true")
orig_group.add_config_file_option(option_name="no-create-orig", dest="no_create_orig",
- help="don't create orig.tar.gz", action="store_true")
+ help="don't create orig tarball", action="store_true")
orig_group.add_config_file_option(option_name="tarball-dir", dest="tarball_dir", type="path",
help="location to look for external tarballs")
orig_group.add_config_file_option(option_name="compression", dest="comp_type",