Subject: | No LICENSE or ABSTRACT in META.* |
Long story:
http://blogs.perl.org/users/ke ntnl_kent_fredric/2012/05/ensu re-abstract-and-license-fields -in-your-meta.htmlShort story / Solution
--- Makefile.PL 2012-10-28 13:23:40.227502313 +1300
+++ Makefile.PL.new 2012-10-28 13:25:09.923181641 +1300
@@ -7,4 +7,5 @@
ABSTRACT_FROM => 'lib/Lingua/EN/FindNumber.pm',
AUTHOR => 'Tony Bowden',
PREREQ_PM => { 'Lingua::EN::Words2Nums' => 0 },
+ LICENSE => 'perl',
);
And then rebuild/release. ABSTRACT /should/ work as long as you use a recent EUMM, it just seems the original release you made of this was too old to support ABSTRACT_FROM
Thanks.