Package: devscripts
Version: 2.9.20
Severity: wishlist
Tags: patch
The attached patch adds recognition of lists.alioth.debian.org to
complement the current recognition of lists.debian.org for group
maintained packages. Please consider including it in a future version
of dd-list.
James
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (499, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-debil-3
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Versions of packages devscripts depends on:
ii debianutils 2.16.1 Miscellaneous utilities specific t
ii dpkg-dev 1.13.21 package building tools for Debian
ii libc6 2.3.6-15 GNU C Library: Shared libraries
ii perl 5.8.8-6 Larry Wall's Practical Extraction
ii sed 4.1.5-1 The GNU sed stream editor
Versions of packages devscripts recommends:
ii fakeroot 1.5.8 Gives a fake root environment
-- no debconf information
--- devscripts-2.9.20/dd-list.pl 2006-04-07 14:06:07.000000000 -0400
+++ devscripts-2.9.20/dd-list.pl 2006-06-15 12:45:30.000000000 -0400
@@ -55,7 +55,7 @@
my $developer=shift;
my ($name, $domain)=$developer=~/^(.*)\s+<.*@(.*)>\s*$/i;
- if (defined $domain && $domain ne 'lists.debian.org') {
+ if (defined $domain && $domain=~/^lists(?:\.alioth)?\.debian\.org$/) {
return join " ", reverse split " ", $name;
}
elsif (defined $name) {