On Mon Dec 10 03:18:55 2012, ananthbv wrote:
Show quoted text> Please advise if this is the right way to create the package so that it
> has no 'worldwriteable' components.
I have created a better Makefile.PL for you. It is attached.
Show quoted text>
> Once this creates the new directory structure, should I upload the
> files through PAUSE again?
You should:
1. Increase version of module
2. Package it using `dmake dist` (or nmake if you use ActivePerl) -
META.yml will be generated automatically. MYMETA.* should NOT be
included - they are generated when installing.
3. Upload generated archive to PAUSE.
--
Alexandr Ciornii,
http://chorny.net
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile1(
NAME => 'OpenXML::Properties',
AUTHOR => q{Ananth Venugopal <ananthbv@gmail.com>},
VERSION_FROM => 'lib/OpenXML/Properties.pm',
ABSTRACT_FROM => 'lib/OpenXML/Properties.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Readonly' => 0,
'XML::XPath' => 0,
'Data::Dumper' => 0,
'String::Random' => 0,
'File::Basename' => 0,
'Archive::Zip' => 0,
'Moose' => 0,
},
dist => { TAR => 'ptar', TARFLAGS => '-c -C -f', },
clean => { FILES => 'OpenXML-Properties-*' },
);
sub WriteMakefile1 { #Compatibility code for old versions of EU::MM. Written by Alexandr Ciornii, version 0.23. Added by eumm-upgrade.
my %params=@_;
my $eumm_version=$ExtUtils::MakeMaker::VERSION;
$eumm_version=eval $eumm_version;
die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
die "License not specified" if not exists $params{LICENSE};
if ($params{AUTHOR} and ref($params{AUTHOR}) eq 'ARRAY' and $eumm_version < 6.5705) {
$params{META_ADD}->{author}=$params{AUTHOR};
$params{AUTHOR}=join(', ',@{$params{AUTHOR}});
}
if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) {
#EUMM 6.5502 has problems with BUILD_REQUIRES
$params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
delete $params{BUILD_REQUIRES};
}
delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
delete $params{META_MERGE} if $eumm_version < 6.46;
delete $params{META_ADD} if $eumm_version < 6.46;
delete $params{LICENSE} if $eumm_version < 6.31;
delete $params{AUTHOR} if $] < 5.005;
delete $params{ABSTRACT_FROM} if $] < 5.005;
delete $params{BINARY_LOCATION} if $] < 5.005;
WriteMakefile(%params);
}