Skip Menu |

This queue is for tickets about the Env-Path CPAN distribution.

Report information
The Basics
Id: 78485
Status: new
Priority: 0/
Queue: Env-Path

People
Owner: Nobody in particular
Requestors: KENTNL [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.18
Fixed in: (no value)



Subject: Please add ABSTRACT and LICENSE to META.(yml|json)
A detailed explanation gets complicated, http://blogs.perl.org/users/kentnl_kent_fredric/2012/05/ensure-abstract-and-license-fields-in-your-meta.html , but the essence of it is pretty straight forward in code.

WriteMakefile(
+          'ABSTRACT' => 'Advanced operations on path variables',
+          'LICENSE'  => 'perl',
    'NAME'      => 'Env::Path',
    'VERSION_FROM'  => 'Path.pm', # finds $VERSION
    'EXE_FILES'     => [ 'envpath' ],
    'PREREQ_PM'     => {},
    'dist'      => {
    COMPRESS => 'gzip --force --best',
    TAR  => 'gtar',
    TARFLAGS => '--mode=u+w -cvf',
    },
);

 

Its not very important, but it would be nice to see in a future release.

Thanks =)