aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/export_orig.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-08-10 14:57:36 -0300
committerGuido Günther <agx@sigxcpu.org>2017-08-10 14:57:36 -0300
commitb71a89e83bde4054d482ea43da14e69ae3fc885a (patch)
tree9eb443fb622ae5db806b77eb377ff6161a4f0d1d /gbp/scripts/export_orig.py
parent67ab6edd56807ac0e0e0ae5f9ca7c5e6157602d2 (diff)
export: print names of generated tarballs when using pristine-tar
so we get as much information as with git-archive.
Diffstat (limited to 'gbp/scripts/export_orig.py')
-rwxr-xr-xgbp/scripts/export_orig.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/gbp/scripts/export_orig.py b/gbp/scripts/export_orig.py
index ecd35185..0912f30f 100755
--- a/gbp/scripts/export_orig.py
+++ b/gbp/scripts/export_orig.py
@@ -101,10 +101,16 @@ def pristine_tar_build_origs(repo, source, output_dir, options):
comp = Compressor(options.comp_type)
pristine_tar_prepare_orig_tree(repo, source, options)
try:
+ gbp.log.info("Creating %s/%s" %
+ (output_dir,
+ source.upstream_tarball_name(comp.type)))
repo.create_upstream_tarball_via_pristine_tar(source,
output_dir,
comp)
for component in options.components:
+ gbp.log.info("Creating %s/%s" %
+ (output_dir,
+ source.upstream_tarball_name(comp.type, component)))
repo.create_upstream_tarball_via_pristine_tar(source,
output_dir,
comp,