r53027 - in /trunk/dh-make-perl: debian/ t/ t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/ t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/ t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/ t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Feb 18 17:53:36 UTC 2010


Author: dmn
Date: Thu Feb 18 17:53:28 2010
New Revision: 53027

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53027
Log:
dists.t: rewrite directory comparison with File::DirCompare & co

this allows strict checking that the content of the resulting directory matches
the wanted one. this uncovers a latent bug in the tests when extra files
created went undetected

now we have fine-grained control over exceptions (copyright date,
changelog stamp)

add tests for refreshing with source format '3.0 (quilt)'

Added:
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/changelog
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/compat
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/control
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/copyright
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/rules   (with props)
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/format
    trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/watch
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/changelog
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/compat
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/control
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/copyright
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/rules   (with props)
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/format
    trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/watch
Modified:
    trunk/dh-make-perl/debian/control
    trunk/dh-make-perl/t/dists.t

Modified: trunk/dh-make-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/control?rev=53027&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/control (original)
+++ trunk/dh-make-perl/debian/control Thu Feb 18 17:53:28 2010
@@ -8,6 +8,7 @@
  libarray-unique-perl,
  libclass-accessor-perl,
  libemail-date-format-perl,
+ libfile-dircompare-perl,
  libfile-find-rule-perl,
  libfile-touch-perl,
  liblist-moreutils-perl,

Modified: trunk/dh-make-perl/t/dists.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists.t?rev=53027&op=diff
==============================================================================
--- trunk/dh-make-perl/t/dists.t (original)
+++ trunk/dh-make-perl/t/dists.t Thu Feb 18 17:53:28 2010
@@ -3,56 +3,71 @@
 use strict;
 use warnings;
 
-use Test::More tests => 30;
+use Test::More tests => 12;
 
 use FindBin qw($Bin);
+use File::Compare ();
+use File::DirCompare;
+use File::Find::Rule;
 use File::Spec::Functions qw(splitpath);
+use File::Path ();
+use Text::Diff qw(diff);
 
-sub compare {
-    my ( $dist, $path, $variant ) = @_;
-    my ( $vol, $dir, $name ) = splitpath($path);
+sub compare_tree {
+    my ( $real, $wanted, $hint ) = @_;
 
-    return unless -f $path;
+    my @errors;
+    File::DirCompare->compare(
+        $real, $wanted,
+        sub {
+            my ( $a, $b ) = @_;
+            return
+                if $a and $a =~ m{/\.(?:svn|gh|git|CVS)/}
+                    or $b and $b =~ m{/\.(?:svn|gh|git|CVS)/};
+            return
+                if $a and $a =~ /\.bak$/
+                    or $b and $b =~ /\.bak$/;
 
-    $variant //= '';
+            unless ( defined($b) ) {
+                push @errors, diff( $a, '/dev/null' );
+                return;
+            }
+            unless ( defined($a) ) {
+                push @errors, diff( $a, '/dev/null' );
+                return;
+            }
+            push @errors, diff( $a, $b );
+        },
+        {   cmp => sub {
+                File::Compare::compare_text(
+                    @_,
+                    sub {
+                        my ( $a, $b ) = @_;
 
-    my $real = $path;
-    $path =~ s{/wanted-debian/}{/wanted-debian$variant/};
-    $real =~ s{/wanted-debian/}{/debian/};
-    my $diff = diff($path, $real);
+                        # different copyright years are normal
+                        # (test written in 2002 and run in 2020
+                        return 0
+                            if $a
+                                =~ /^Copyright: \d+, Joe Maintainer <joemaint\@test\.local>$/
+                                and $b
+                                =~ /^Copyright: \d+, Joe Maintainer <joemaint\@test\.local>$/;
 
-    if ( $name eq 'changelog' ) {
-        my $only_date_differs = 1;
-        for ( split( /\n/, $diff ) ) {
-            next if /^--- / or /^\+\+\+ /;
-            next unless /^[-+] /;
-            next if /^[-+] -- Joe Maintainer <joemaint\@test\.local>  /;
+                        # 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+$/
+                                and $b
+                                =~ /^ -- Joe Maintainer <joemaint\@test\.local>  \w+, \d+ \w+ \d+ \d+:\d+:\d+ \+\d+$/;
 
-            $only_date_differs = 0;
-            diag $name;
-            last;
+                        return $a ne $b;
+                    }
+                );
+            },
         }
+    );
 
-        $diff = '' if $only_date_differs;
-    }
-
-    if ( $name eq 'copyright' ) {
-        my $only_date_differs = 1;
-        for ( split( /\n/, $diff ) ) {
-            next if /^--- / or /^\+\+\+ /;
-            next unless /^[-+] /;
-            next if /^[-+] Copyright: \d+, Joe Maintainer <joemaint\@test\.local>/;
-
-            $only_date_differs = 0;
-            diag $name;
-            last;
-        }
-
-        $diff = '' if $only_date_differs;
-    }
-
-    is( $diff, '',
-        "$dist/debian/$name is OK" . ( $variant ? " ($variant)" : '' ) );
+    is( join( "\n", @errors ), '',
+        'Generated tree matches template' . ( $hint ? " ($hint)" : '' ) );
 }
 
 sub dist_ok($) {
@@ -70,18 +85,7 @@
 
     is( $?, 0, "$dist_dir: system returned 0" );
 
-    use File::Find::Rule qw();
-    use Text::Diff qw(diff);
-    my @files = File::Find::Rule->or(
-               File::Find::Rule->new
-                    ->directory
-                    ->name( '.svn', 'CVS', '.git', '.hg' )
-                    ->prune
-                    ->discard,
-               File::Find::Rule->new,
-            )
-         ->in("$dist/wanted-debian");
-    compare( $dist_dir, $_) for @files;
+    compare_tree( "$dist/debian", "$dist/wanted-debian" );
 
     system( "$Bin/../dh-make-perl", "--verbose",
             "--home-dir", "$Bin/contents",
@@ -95,15 +99,32 @@
 
     is( $?, 0, "$dist_dir --refresh: system returned 0" );
 
-    compare( $dist_dir, $_, '--refresh') for @files;
+    compare_tree( "$dist/debian", "$dist/wanted-debian--refresh", '--refresh' );
+
+    unlink File::Find::Rule->file->name('*.bak')->in("$dist/debian");
+
+    system( "$Bin/../dh-make-perl", "--verbose",
+            "--home-dir", "$Bin/contents",
+            "--apt-contents-dir", "$Bin/contents",
+            "--data-dir", "$Bin/../share",
+            $ENV{NO_NETWORK} ? '--no-network' : (),
+            "--sources-list",
+            "$Bin/contents/sources.list", "--email", "joemaint\@test.local",
+            "--refresh", '--source-format', '3.0 (quilt)',
+            $dist );
+
+    is( $?, 0,
+        "$dist_dir --refresh --source-format '3.0 (quilt)': system returned 0"
+    );
+
+    compare_tree(
+        "$dist/debian",
+        "$dist/wanted-debian--refresh--source-format=3.0_quilt",
+        '--refresh --source-format 3.0 (quilt)'
+    );
 
     # clean after the test
-    File::Find::Rule->file
-                    ->exec( sub{ unlink $_[2]
-                                or die "unlink($_[2]): $!" } )
-                    ->in("$dist/debian");
-
-    rmdir "$dist/debian" or die "rmdir($dist/debian): $!";
+    File::Path::rmtree("$dist/debian");
 
     unlink "$Bin/contents/Contents.cache" or die "unlink($Bin/contents.cache): $!";
     -e "$Bin/contents/wnpp.cache" and ( unlink "$Bin/contents/wnpp.cache"

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/changelog?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/changelog (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/changelog Thu Feb 18 17:53:28 2010
@@ -1,0 +1,5 @@
+libstrange-perl (0.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Joe Maintainer <joemaint at test.local>  Sat, 29 Nov 2008 23:17:07 +0200

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/compat?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/compat (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/compat Thu Feb 18 17:53:28 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/control?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/control (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/control Thu Feb 18 17:53:28 2010
@@ -1,0 +1,17 @@
+Source: libstrange-perl
+Section: misc
+Priority: Extra
+Build-Depends: debhelper (>= 7), perl6, xlib-dev
+Maintainer: Joe Maintainer <joemaint at test.local>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/Strange/
+
+Package: libstrange-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, perl6
+Conflicts: ba-ba-buma
+Description: really ugly module to test dh-make-perl
+ A really ugly long description
+ for a really ugly perl module.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/copyright?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/copyright (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/copyright Thu Feb 18 17:53:28 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: A. U. Thor, a.u.thor at a.galaxy.far.far.away
+Source: http://search.cpan.org/dist/Strange/
+Name: Strange
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: A. U. Thor, a.u.thor at a.galaxy.far.far.away
+License: 
+
+Files: debian/*
+Copyright: 2007, Joe Maintainer <joemaint at test.local>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/rules?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/rules (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/rules Thu Feb 18 17:53:28 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/source/format?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/format (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/source/format Thu Feb 18 17:53:28 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format%3D3.0_quilt/watch?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/watch (added)
+++ trunk/dh-make-perl/t/dists/Strange-0.1/wanted-debian--refresh--source-format=3.0_quilt/watch Thu Feb 18 17:53:28 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Strange/   .*/Strange-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/changelog?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/changelog (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/changelog Thu Feb 18 17:53:28 2010
@@ -1,0 +1,5 @@
+libstrange-perl (2.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Joe Maintainer <joemaint at test.local>  Sun, 30 Nov 2008 12:20:18 +0200

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/compat?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/compat (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/compat Thu Feb 18 17:53:28 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/control?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/control (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/control Thu Feb 18 17:53:28 2010
@@ -1,0 +1,17 @@
+Source: libstrange-perl
+Section: misc
+Priority: Extra
+Build-Depends: debhelper (>= 7), perl6, xlib-dev
+Maintainer: Joe Maintainer <joemaint at test.local>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/Strange/
+
+Package: libstrange-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, perl6
+Conflicts: ba-ba-buma
+Description: really ugly module to test dh-make-perl
+ A really ugly long description
+ for a really ugly perl module.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/copyright?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/copyright (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/copyright Thu Feb 18 17:53:28 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: A. U. Thor, a.u.thor at a.galaxy.far.far.away
+Source: http://search.cpan.org/dist/Strange/
+Name: Strange
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: A. U. Thor, a.u.thor at a.galaxy.far.far.away
+License: 
+
+Files: debian/*
+Copyright: 2007, Joe Maintainer <joemaint at test.local>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/rules?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/rules (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/rules Thu Feb 18 17:53:28 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/source/format?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/format (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/source/format Thu Feb 18 17:53:28 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format%3D3.0_quilt/watch?rev=53027&op=file
==============================================================================
--- trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/watch (added)
+++ trunk/dh-make-perl/t/dists/Strange-2.1/wanted-debian--refresh--source-format=3.0_quilt/watch Thu Feb 18 17:53:28 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Strange/   .*/Strange-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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