Exclude inc (suggested by Ian Burrell).

This commit is contained in:
stevenpritchard
2006-04-05 01:08:45 +00:00
parent ee2b509133
commit e955bbc180
4 changed files with 11 additions and 3 deletions

3
BUGS
View File

@@ -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.

View File

@@ -6,7 +6,7 @@ my $builder = Module::Build->new(
module_name => 'cpanspec',
license => 'perl',
dist_author => 'Steven Pritchard <steve@cpan.org>',
dist_version => '1.64',
dist_version => '1.65',
requires => {
'Archive::Tar' => 0,
'Archive::Zip' => 0,

View File

@@ -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.

View File

@@ -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);