HTTP-Request-FromCurl

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

my $distlink = $distbase;

my @tests = map { glob $_ } 't/*.t', 't/*/*.t';

my %module = (
    NAME                => $module,
    AUTHOR              => q{Max Maischein <corion@cpan.org>},
    VERSION_FROM        => $main_file,
    ABSTRACT_FROM       => $main_file,
    META_MERGE => {
        "meta-spec" => { version => 2 },
        resources => {
            repository => {
                web => "https://github.com/Corion/$distbase",
                url => "git://github.com/Corion/$distbase.git",
                type => 'git',
            },
            bugtracker  => {
              web    => "https://github.com/Corion/$distbase/issues",
              # mailto => 'meta-bugs@example.com',
            },
            license    => "https://dev.perl.org/licenses/",
        },
        dynamic_config   => 0, # we promise to keep META.* up-to-date
        x_static_install => 1, # we are pure Perl and don't do anything fancy
    },

    MIN_PERL_VERSION => '5.020', # I use signatures

    'LICENSE'=> 'perl',

    PL_FILES            => {},
    EXE_FILES           => [glob 'script/*'],
    BUILD_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },

    PREREQ_PM => {
        'Carp'                     => 0,
        'Getopt::Long'             => '2.39', # for ->getoptionsfromarray
        'Moo'                      => '2',
        'HTTP::Request'            => '6.07',
        'HTTP::Request::Common'    => '6.07',
        'HTTP::Request::Generator' => '0.09', # earlier versions don't handle IPv6 well
        'URI'                      => 0,
        'URI::Escape'              => 0,
        'List::Util'               => '1.29', # for pairmap
        'PerlX::Maybe'             => 0,
        'MIME::Base64'             => 0,
        'JSON'                     => 0,
        'File::Basename'           => 0, # core anyway
    },
    TEST_REQUIRES => {
        'Test2::V0'              => '0',
        'Data::Dumper'            => 0,
        'Capture::Tiny'           => 0,
        'Path::Tiny'              => 0,
        'HTTP::Tiny'              => 0,
        'WWW::Mechanize'          => 0,
        'LWP::UserAgent'          => 0,
        'IO::Socket::SSL'         => 0, # for allowing -k to compile
        #'HTTP::Cookies::Netscape' => 0, # this can't cope with the Netscape cookie files that curl writes :(
        'HTTP::CookieJar'         => 0, # this one doesn't have an adapter to save/load at all :(
        'HTTP::CookieJar::LWP'    => 0, # this one doesn't have an adapter to save/load at all :(
        'Test::HTTP::LocalServer' => 0.67, # we want ->server_url()
    },

    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => "$distbase-*" },

    test            => { TESTS => join( ' ', @tests ) },
);

# This is so that we can do
#     require 'Makefile.PL'
# and then call get_module_info

sub get_module_info { %module }

if( ! caller ) {
    # I should maybe use something like Shipwright...
    my $mm = WriteMakefile1(get_module_info);
    my $version = $mm->parse_version($main_file);
    regen_README($main_file, $version);
    regen_EXAMPLES() if -d 'examples';
};

1;

sub WriteMakefile1 {  #Written by Alexandr Ciornii, version 0.21. 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{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};
    }
    if ($params{TEST_REQUIRES} and $eumm_version < 6.64) {
        $params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{TEST_REQUIRES}} };
        delete $params{TEST_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);
}

sub regen_README {
    # README is the short version that just tells people what this is
    # and how to install it
    my( $file, $version ) = @_;
    eval {



( run in 0.414 second using v1.01-cache-2.11-cpan-39bf76dae61 )