Author: jamessan
Date: 2009-09-24 22:57:21 +0000 (Thu, 24 Sep 2009)
New Revision: 2011

Modified:
   trunk/debian/changelog
   trunk/scripts/debchange.pl
Log:
debchange: Based on a scan of the lintian lab, add '.', '!', and ':' to the set 
of punctuation characters we strip from the distribution name when we parse an 
"Upload to ..." line.  (Closes: #548171)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2009-09-24 22:20:59 UTC (rev 2010)
+++ trunk/debian/changelog      2009-09-24 22:57:21 UTC (rev 2011)
@@ -7,6 +7,9 @@
   * mk-build-deps: Use Pod::Usage to generate the --help message.  This keeps
     the message in sync with the POD instead of keeping two different texts in
     sync.  (Closes: #548245)
+  * debchange: Based on a scan of the lintian lab, add '.', '!', and ':' to
+    the set of punctuation characters we strip from the distribution name when
+    we parse an "Upload to ..." line.  (Closes: #548171)
 
  -- Adam D. Barratt <[email protected]>  Fri, 11 Sep 2009 10:06:33 +0100
 

Modified: trunk/scripts/debchange.pl
===================================================================
--- trunk/scripts/debchange.pl  2009-09-24 22:20:59 UTC (rev 2010)
+++ trunk/scripts/debchange.pl  2009-09-24 22:57:21 UTC (rev 2011)
@@ -1173,7 +1173,7 @@
            }
        }
        elsif (/  \* Upload to ([^ ]+).*$/) {
-           ($dist_indicator = $1) =~ s/[,;]$//;
+           ($dist_indicator = $1) =~ s/[!:.,;]$//;
            chomp $dist_indicator;
        }
        elsif (/^ --\s+([^<]+)\s+/) {



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

Reply via email to