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

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sun Dec 28 21:51:33 UTC 2008


Author: ryan52-guest
Date: Sun Dec 28 21:51:30 2008
New Revision: 28880

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=28880
Log:
when searching for docs files, ignore .svn-base files. (fixes tests
when building out of the svn repo)

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=28880&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Sun Dec 28 21:51:30 2008
@@ -40,6 +40,8 @@
   * create debian/compat file while refreshing
   * make --notest work with dh7 (Closes: #506708)
   * fix typo (s/shlib:Depends/shlibs:Depends/g) in control file generation
+  * when searching for docs files, ignore .svn-base files. (fixes tests
+    when building out of the svn repo)
 
   [ Ansgar Burchardt ]
   * Quote name of file containing the Artistic license.
@@ -47,7 +49,7 @@
   [ David Paleino ]
   * Removed myself from Uploaders.
 
- -- David Paleino <d.paleino at gmail.com>  Mon, 22 Dec 2008 23:47:34 +0100
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Sun, 28 Dec 2008 13:49:50 -0800
 
 dh-make-perl (0.50) unstable; urgency=low
 

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=28880&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Sun Dec 28 21:51:30 2008
@@ -834,6 +834,7 @@
             push( @docs, substr( $File::Find::name, length($dir) ) )
                 if ( /^(README|TODO|BUGS|NEWS|ANNOUNCE)/i
                 and ( !$self->cfg->exclude or $File::Find::name !~ m($self->cfg->exclude) )
+                and ! /\.svn-base$/
                 );
         },
         $dir




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