r53044 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Feb 18 22:44:57 UTC 2010


Author: dmn
Date: Thu Feb 18 22:44:49 2010
New Revision: 53044

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53044
Log:
when looking for READMEs to include in .docs, skip debian/README.source

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/DhMakePerl.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=53044&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Thu Feb 18 22:44:49 2010
@@ -18,6 +18,7 @@
   * add --source-format option (defaults to "1.0")
   * --refresh: fix pruning of binary package dependencies
     + also fix pruning of redundant perl(-base) (build-)dependencies
+  * when looking for READMEs to include in .docs, skip debian/README.source
 
   [ gregor herrmann ]
   * DhMakePerl: update_file_list() allows to --refresh --only docs and

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=53044&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Thu Feb 18 22:44:49 2010
@@ -992,6 +992,7 @@
                 and ( !$self->cfg->exclude
                     or $File::Find::name !~ $self->cfg->exclude )
                 and !/\.svn-base$/
+                and $File::Find::name !~ m{debian/README\.source}
                 );
         },
         $dir




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