This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch master
in repository dpkg.

commit dde2a51557ccde71a536d5e4a9af236bcb45be9c
Author: Guillem Jover <guil...@debian.org>
Date:   Sat Feb 3 03:24:00 2018 +0100

    Dpkg::Source::Package::V2: Print one building line per existing tarball
    
    Lumping all found tarballs into a single line makes the output more
    confusing.
---
 debian/changelog                  | 1 +
 scripts/Dpkg/Source/Package/V2.pm | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 659c055..252efd9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -51,6 +51,7 @@ dpkg (1.19.1) UNRELEASED; urgency=medium
     - Add new positive options argument to arch validators in Dpkg::Arch.
     - Mark hurd-i386 as having gcc builtin PIE in Dpkg::Vendor::Debian.
       Requested by Samuel Thibault <sthiba...@debian.org>.
+    - Dpkg::Source::Package::V2: Print one building line per existing tarball.
   * Documentation:
     - Update gettext minimal version in README.
     - Add a missing dot on the dpkg-buildflags(1) «lfs» feature paragraph.
diff --git a/scripts/Dpkg/Source/Package/V2.pm 
b/scripts/Dpkg/Source/Package/V2.pm
index 818e32d..5fdd249 100644
--- a/scripts/Dpkg/Source/Package/V2.pm
+++ b/scripts/Dpkg/Source/Package/V2.pm
@@ -428,8 +428,10 @@ sub _generate_patch {
           $self->_upstream_tarball_template()) unless $tarfile;
 
     if ($opts{usage} eq 'build') {
-        info(g_('building %s using existing %s'),
-             $self->{fields}{'Source'}, "@origtarballs");
+        foreach my $origtarfile (@origtarballs) {
+            info(g_('building %s using existing %s'),
+                 $self->{fields}{'Source'}, $origtarfile);
+        }
     }
 
     # Unpack a second copy for comparison

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/dpkg/dpkg.git

Reply via email to