Add LICENSE=>perl to Makefile.PL; add license to META.yml, closes: cpan #27735
authorivan <ivan>
Wed, 21 Apr 2010 03:20:45 +0000 (03:20 +0000)
committerivan <ivan>
Wed, 21 Apr 2010 03:20:45 +0000 (03:20 +0000)
Changes
META.yml
Makefile.PL

diff --git a/Changes b/Changes
index a5656d9..5a53a07 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Business::CreditCard.
 
+0.32  unreleased
+        - Add LICENSE=>perl to Makefile.PL; add license to META.yml,
+          closes: cpan #27735
+
 0.31  Mon Oct 19 18:51:35 PDT 2009
         - Add LICENSE section to POD documentation
         - Add META.yml to MANIFEST
index b77d5d0..11ff493 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,10 +1,21 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Business-CreditCard
-version:      0.30
-version_from: CreditCard.pm
-installdirs:  site
+--- #YAML:1.0
+name:               Business-CreditCard
+version:            0.31
+abstract:           ~
+author:  []
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30_01
+    Test::More:  0
+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
index 1d233f2..a0ecdac 100644 (file)
@@ -4,7 +4,8 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
     'NAME'         => 'Business::CreditCard',
     'VERSION_FROM' => 'CreditCard.pm', # finds $VERSION
-    PREREQ_PM       => {
+    'LICENSE'      => 'perl',
+    'PREREQ_PM'       => {
         'Test::More' => 0,
     }
 );