]> err.no Git - dpkg/commitdiff
show description for udebs as well
authorWichert Akkerman <wakkerma@debian.org>
Sun, 24 Dec 2000 16:10:39 +0000 (16:10 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sun, 24 Dec 2000 16:10:39 +0000 (16:10 +0000)
ChangeLog
debian/changelog
scripts/dpkg-genchanges.pl

index 7d06c39b7afaf567a879fa09e3dd7081334dcb6d..0e691387fd720f0e2959e8a08c15aec5e25ae47c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Dec 24 17:05:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-genchanges.pl: output descriptions for udebs as well
+
 Sun Dec 24 06:31:55 CST 2000 Adam Heath <doogie@debian.org>
 
   * scripts/dpkg-name.sh: Add -k|--symlink option.
index 03acb693d583e5d82348c71959c60ffa3201021d..c3b6daceda20f6615434252c9231d5d9f66c0029 100644 (file)
@@ -39,7 +39,7 @@ dpkg (1.8.0) unstable; urgency=low
   * Update Galish translation
   * Add new --import option to dpkg-statoverride to make it easy to
     import suidmanager settings.
-  * Speedups patches by Adam Heath
+  * Speedup patches by Adam Heath
   * statoverride fixes by Robert Luberda, Closes: Bug#78436
   * Add Linux S/390 support. Closes: Bug#79063
   * Using libz to decompress data instead of calling gzip.
@@ -51,6 +51,7 @@ dpkg (1.8.0) unstable; urgency=low
   * Apply statoverrides to more then just files
   * Update update-alternatives manpage to use FHS instead of FSSTND.
     Closes: Bug#80237
+  * List descriptions for udebs in .changes
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 
index f8816cafee3739003060754806f5ef39faa1c494..2ebd73ceed5a8c7b6c4035d3dfc380664eb2b2c8 100755 (executable)
@@ -125,7 +125,7 @@ if (not $sourceonly) {
     $fileslistfile="./$fileslistfile" if $fileslistfile =~ m/^\s/;
     open(FL,"< $fileslistfile") || &syserr("cannot read files list file");
     while(<FL>) {
-       if (m/^(([-+.0-9a-z]+)_([^_]+)_([-\w]+)\.deb) (\S+) (\S+)$/) {
+       if (m/^(([-+.0-9a-z]+)_([^_]+)_([-\w]+)\.u?deb) (\S+) (\S+)$/) {
            defined($p2f{"$2 $4"}) &&
                &warn("duplicate files list entry for package $2 (line $.)");
            $f2p{$1}= $2;
@@ -178,7 +178,11 @@ for $_ (keys %fi) {
            $f=$p2f{$p};
            if (m/^Description$/) {
                $v=$` if $v =~ m/\n/;
-               push(@descriptions,sprintf("%-10s - %-.65s",$p,$v));
+               if ($f =~ m/\.udeb$/) {
+                       push(@descriptions,sprintf("%-10s - %-.65s (udeb)",$p,$v));
+               } else {
+                       push(@descriptions,sprintf("%-10s - %-.65s",$p,$v));
+               }
            } elsif (m/^Section$/) {
                $f2seccf{$f}= $v;
            } elsif (m/^Priority$/) {