]> err.no Git - dpkg/commitdiff
dpkg-genchanges: always list all binary packages in the Description field
authorRaphael Hertzog <hertzog@debian.org>
Wed, 30 Jan 2008 22:05:58 +0000 (23:05 +0100)
committerRaphael Hertzog <hertzog@debian.org>
Wed, 30 Jan 2008 22:05:58 +0000 (23:05 +0100)
ChangeLog
debian/changelog
scripts/dpkg-genchanges.pl

index 1bbc5f79eb6977b762e4e1852b0227dada1f3165..e78858013be2e0d157300acf668697f1cb54351b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-31  Raphael Hertzog  <hertzog@debian.org>
+
+       * scripts/dpkg-genchanges.pl: Always list all binary packages in
+       the Description field of generated .changes files.
+
 2008-01-30  Justin Pryzby  <jpryzby+d@quoininc.com>
 
        * utils/start-stop-daemon.c (do_help): Clarify --name and --user
index b320073696018c622fab55fde48f65f18901235f..9c4f9eef9a0d2b4e601891858cc4c30720c05d78 100644 (file)
@@ -21,6 +21,10 @@ dpkg (1.14.17) UNRELEASED; urgency=low
     libraries.
   * Add -R option to dpkg-buildpackage so that one can replace the usual
     "debian/rules" by something else. Closes: #355654
+  * Always list all binary packages in the Description: field of .changes
+    files. It's nice for reviewers and mentors.debian.net was using this field
+    on source only uploads to display short description of what the package is
+    about.
 
   [ Updated manpages translations ]
   * German (Helge Kreutzmann).
index 7dada21a531c568298764c76dbe9a44b56471101..0fcd529b847c5f51f7f4c5e3ea8c51e186d3730d 100755 (executable)
@@ -267,13 +267,20 @@ foreach $_ (keys %{$src_fields}) {
     }
 }
 
-# Scan control info of all binary packages unless
-# we have a source only upload
-my @pkg;
-push @pkg, $control->get_packages() unless is_sourceonly;
-foreach my $pkg (@pkg) {
+# Scan control info of all binary packages
+foreach my $pkg ($control->get_packages()) {
     my $p = $pkg->{"Package"};
     my $a = $pkg->{"Architecture"};
+    my $d = $pkg->{"Description"} || "no description available";
+    $d = $1 if $d =~ /^(.*)\n/;
+
+    my @f; # List of files for this binary package
+    push @f, @{$p2f{$p}} if defined $p2f{$p};
+
+    # Add description of all binary packages
+    my $desc = sprintf("%-10s - %-.65s", $p, $d);
+    $desc .= " (udeb)" if (grep(/\.udeb$/, @f)); # XXX: Check Package-Type field instead
+    push @descriptions, $desc;
 
     if (not defined($p2f{$p})) {
        # No files for this package... warn if it's unexpected
@@ -286,18 +293,12 @@ foreach my $pkg (@pkg) {
        next; # and skip it
     }
 
-    my @f = @{$p2f{$p}}; # List of files for this binary package
     $p2arch{$p} = $a;
 
     foreach $_ (keys %{$pkg}) {
        my $v = $pkg->{$_};
 
-       if (m/^Description$/) {
-           $v = $1 if $v =~ m/^(.*)\n/;
-           my $desc = sprintf("%-10s - %-.65s", $p, $v);
-           $desc .= " (udeb)" if (grep(/\.udeb$/, @f));
-           push @descriptions, $desc;
-       } elsif (m/^Section$/) {
+       if (m/^Section$/) {
            $f2seccf{$_} = $v foreach (@f);
        } elsif (m/^Priority$/) {
            $f2pricf{$_} = $v foreach (@f);