diff --git a/BUGS b/BUGS index 7bcd33c..4a4a4b9 100644 --- a/BUGS +++ b/BUGS @@ -4,3 +4,6 @@ * PAR 0.92 is arch-specific because of stuff in %{_bindir}, not %{perl_vendorarch}. There's probably a way to detect that. + +* There is logic to exclude directories from %doc, but it doesn't + seem to work all that often. diff --git a/Build.PL b/Build.PL index ba26b56..4bac48c 100644 --- a/Build.PL +++ b/Build.PL @@ -6,7 +6,7 @@ my $builder = Module::Build->new( module_name => 'cpanspec', license => 'perl', dist_author => 'Steven Pritchard ', - dist_version => '1.64', + dist_version => '1.65', requires => { 'Archive::Tar' => 0, 'Archive::Zip' => 0, diff --git a/Changes b/Changes index bfd0eff..5671d7a 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +1.65 + +* Exclude inc (suggested by Ian Burrell). + 1.64 2006-03-24 * Look a couple more places for %description/Summary. diff --git a/cpanspec b/cpanspec index 02eacfb..c9107ab 100755 --- a/cpanspec +++ b/cpanspec @@ -10,10 +10,10 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# $Id: cpanspec,v 1.17 2006/03/24 20:43:18 stevenpritchard Exp $ +# $Id: cpanspec,v 1.18 2006/04/05 01:08:46 stevenpritchard Exp $ my $NAME="cpanspec"; -my $VERSION='1.64'; +my $VERSION='1.65'; =head1 NAME @@ -584,6 +584,7 @@ for my $file (@ARGV) { and $_ ne "bin" and $_ ne "lib" and $_ ne "t" + and $_ ne "inc" } @files; my $date=strftime("%a %b %d %Y", localtime);