[SCM] Debian packaging of dh-make-perl branch, master, updated. debian/0.76-1-39-gdc56c54

gregor herrmann gregoa at debian.org
Tue May 7 21:41:48 UTC 2013


The following commit has been merged in the master branch:
commit a2fd50f3754112292e6112f26b94c700d0e41f3b
Author: Oleg Gashev <oleg at gashev.net>
Date:   Tue May 7 23:38:24 2013 +0200

    Fixed timestamp regexp to t/dists.t file.
    
    If time zone is EDT, failed tests from t/dists.t file: Generated tree matches
    template. Problem with incorrect timestamp regexp.
    
    Closes: #707165

diff --git a/t/dists.t b/t/dists.t
index f13e477..6bc4443 100755
--- a/t/dists.t
+++ b/t/dists.t
@@ -69,9 +69,9 @@ sub compare_tree {
                         # likewise, it is normal that the timestamp in the changelog differs
                         return 0
                             if $a
-                                =~ /^ -- Joe Maintainer <joemaint\@test\.local>  \w+, \d+ \w+ \d+ \d+:\d+:\d+ \+\d+$/
+                                =~ /^ -- Joe Maintainer <joemaint\@test\.local>  \w+, \d+ \w+ \d+ \d+:\d+:\d+ (\+|-)\d+$/
                                 and $b
-                                =~ /^ -- Joe Maintainer <joemaint\@test\.local>  \w+, \d+ \w+ \d+ \d+:\d+:\d+ \+\d+$/;
+                                =~ /^ -- Joe Maintainer <joemaint\@test\.local>  \w+, \d+ \w+ \d+ \d+:\d+:\d+ (\+|-)\d+$/;
 
                         return $a ne $b;
                     }

-- 
Debian packaging of dh-make-perl



More information about the Pkg-perl-cvs-commits mailing list