dist/base/Changes base.pm changelog
dist/base/lib/base.pm Establish IS-A relationship at compile time
dist/base/lib/fields.pm Set up object field names for pseudo-hash-using classes
-dist/base/MANIFEST base.pm manifest
-dist/base/META.yml base.pm META.yml file
+dist/base/Makefile.PL base.pm Makefile.PL
dist/base/t/base-open-chunk.t See if base works
dist/base/t/base-open-line.t See if base works
dist/base/t/base.t See if base works
+2.22
+ - Better handling of attempts to load non-existent modules
+ - Improvements to fields.pm documentation
+
2.18
- Backport from bleadperl before 5.16.0 release
- base no longer sets a module's $VERSION to "-1" when a module it
+++ /dev/null
-Changes
-lib/base.pm
-lib/fields.pm
-Makefile.PL
-MANIFEST
-META.yml Module meta-data (added by MakeMaker)
-t/base.t
-t/compile-time.t
-t/fields-5_6_0.t
-t/fields-5_8_0.t
-t/fields-base.t
-t/fields.t
-t/isa.t
-t/lib/Broken.pm
-t/lib/Dummy.pm
-t/lib/HasSigDie.pm
-t/sigdie.t
-t/version.t
-t/warnings.t
+++ /dev/null
---- #YAML:1.0
-name: base
-version: 2.15
-abstract: ~
-author: []
-license: unknown
-distribution_type: module
-configure_requires:
- ExtUtils::MakeMaker: 0
-build_requires:
- ExtUtils::MakeMaker: 0
-requires:
- Test::More: 0.4
-no_index:
- directory:
- - t
- - inc
-generated_by: ExtUtils::MakeMaker version 6.55_02
-meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
--- /dev/null
+use strict;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'base',
+ VERSION_FROM => "lib/base.pm", # finds $VERSION
+ PREREQ_PM => { 'Test::More' => 0.40 },
+ ($] > 5.011) ? () : ( INSTALLDIRS => 'perl' ), # CPAN sourced versions should now install to site
+
+);
+