Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
import ExtUtils-Manifest 1.55 from CPAN
git-cpan-module:   ExtUtils-Manifest
git-cpan-version:  1.55
git-cpan-authorid: RKOBES
git-cpan-file:     authors/id/R/RK/RKOBES/ExtUtils-Manifest-1.55.tar.gz
  • Loading branch information
rkobes authored and rafl committed Aug 8, 2011
1 parent 3d9f899 commit 984ad2e
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
8 changes: 8 additions & 0 deletions Changes
@@ -1,3 +1,11 @@
1.55 Sun, Oct 12, 2008
- test nit with space in filename on VMS:
http://rt.cpan.org/Ticket/Display.html?id=39934
Patch supplied by CBERRY
- add .gitignore to MANIFEST.SKIP:
http://rt.cpan.org/Ticket/Display.html?id=39823
Suggested by MSCHWERN

1.54 Tue, Jun 3, 2008
- make maniskip a public routine, and allow an argument to
override $mfile (patch supplied by Ricardo Signes)
Expand Down
25 changes: 20 additions & 5 deletions META.yml
@@ -1,7 +1,6 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
--- #YAML:1.0
name: ExtUtils-Manifest
version: 1.54
version: 1.55
version_from: lib/ExtUtils/Manifest.pm
installdirs: perl
license: perl
Expand All @@ -14,6 +13,22 @@ requires:
provides:
ExtUtils::Manifest:
file: lib/ExtUtils/Manifest.pm
version: 1.54
version: 1.55
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.21
generated_by: Randy Kobes
urls:
license: http://dev.perl.org/licenses/
resources:
license: http://dev.perl.org/licenses/
homepage: http://svn.perl.org/modules/ExtUtils-Manifest/trunk/
bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Manifest
AnnoCPAN: http://annocpan.org/dist/ExtUtils-Manifest
CPANForum: http://www.cpanforum.com/dist/ExtUtils-Manifest
CPANTS: http://cpants.perl.org/dist/ExtUtils-Manifest
Rating: http://cpanratings.perl.org/d/ExtUtils-Manifest
SearchCPAN: http://search.cpan.org/~RKOBES/ExtUtils-Manifest/
Testers: http://cpantesters.perl.org/show/ExtUtils-Manifest.html
UWinnipeg: http://cpan.uwinnipeg.ca/dist/ExtUtils-Manifest
meta-spec:
version: 1.3
url: http://module-build.sourceforge.net/META-spec-v1.3.html
1 change: 1 addition & 0 deletions lib/ExtUtils/MANIFEST.SKIP
Expand Up @@ -5,6 +5,7 @@
,v$
\B\.svn\b
\B\.git\b
\B\.gitignore\b
\b_darcs\b

# Avoid Makemaker generated and utility files.
Expand Down
2 changes: 1 addition & 1 deletion lib/ExtUtils/Manifest.pm
Expand Up @@ -13,7 +13,7 @@ use vars qw($VERSION @ISA @EXPORT_OK
$Is_MacOS $Is_VMS
$Debug $Verbose $Quiet $MANIFEST $DEFAULT_MSKIP);

$VERSION = '1.54';
$VERSION = '1.55';
@ISA=('Exporter');
@EXPORT_OK = qw(mkmanifest
manicheck filecheck fullcheck skipcheck
Expand Down
3 changes: 2 additions & 1 deletion t/Manifest.t
Expand Up @@ -35,8 +35,9 @@ sub add_file {
1 while unlink $file; # or else we'll get multiple versions on VMS
open( T, '> '.$file) or return;
print T $data;
++$Files{$file};
close T;
return 0 unless -e $file; # exists under the name we gave it ?
++$Files{$file};
}

sub read_manifest {
Expand Down

0 comments on commit 984ad2e

Please sign in to comment.