The following commit has been merged in the master branch:
commit 8abc30f3a240b30fc5131a54f2fb3a14e98d9cac
Author: James McCoy <[email protected]>
Date:   Tue Oct 25 20:24:07 2011 -0400

    dd-list: Correctly handle maintainer names which have a comma.
    
    Closes: #646562
    Signed-off-by: James McCoy <[email protected]>

diff --git a/debian/changelog b/debian/changelog
index fb9a273..1c8c6a2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -24,6 +24,8 @@ devscripts (2.11.2) UNRELEASED; urgency=low
     Ortolo.  (Closes: #631713)
   * debi: Document --multi, --with-depends, and --tool in the man page.
     (Closes: #644983)
+  * dd-list:
+    + Correctly handle maintainer names which have a comma.  (Closes: #646562)
 
   [ Stefano Rivera ]
   * debchange: Add precise as a recognised Ubuntu distro.
diff --git a/scripts/dd-list.pl b/scripts/dd-list.pl
index ed77796..dd7bf23 100755
--- a/scripts/dd-list.pl
+++ b/scripts/dd-list.pl
@@ -39,7 +39,7 @@ sub get_developers_given_package {
                }
                elsif (/^Uploaders:\s+(.*)/) {
                        $uploaders=$1;
-                       @uploaders = split /\s*,\s*/, $uploaders;
+                       @uploaders = split /(?<=>)\s*,\s*/, $uploaders;
 
                }
                elsif (/^Package:\s+(.*)/) {

-- 
Git repository for devscripts


-- 
To unsubscribe, send mail to [email protected].

Reply via email to