?????????? ????????? - ??????????????? - /home/agenciai/public_html/cd38d8/Makefile.PL.tar
???????
home/.cpan/build/URI-5.29-0/Makefile.PL 0000644 00000003760 15125143332 0012740 0 ustar 00 # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.032. use strict; use warnings; use 5.008001; use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "Uniform Resource Identifiers (absolute and relative)", "AUTHOR" => "Gisle Aas <gisle\@activestate.com>", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "URI", "LICENSE" => "perl", "MIN_PERL_VERSION" => "5.008001", "NAME" => "URI", "PREREQ_PM" => { "Carp" => 0, "Cwd" => 0, "Data::Dumper" => 0, "Encode" => 0, "Exporter" => "5.57", "MIME::Base32" => 0, "MIME::Base64" => 2, "Net::Domain" => 0, "Scalar::Util" => 0, "constant" => 0, "integer" => 0, "overload" => 0, "parent" => 0, "strict" => 0, "utf8" => 0, "warnings" => 0 }, "TEST_REQUIRES" => { "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "File::Spec::Functions" => 0, "File::Temp" => 0, "Test::Fatal" => 0, "Test::More" => "0.96", "Test::Needs" => 0, "Test::Warnings" => 0, "utf8" => 0 }, "VERSION" => "5.29", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "Carp" => 0, "Cwd" => 0, "Data::Dumper" => 0, "Encode" => 0, "Exporter" => "5.57", "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "File::Spec::Functions" => 0, "File::Temp" => 0, "MIME::Base32" => 0, "MIME::Base64" => 2, "Net::Domain" => 0, "Scalar::Util" => 0, "Test::Fatal" => 0, "Test::More" => "0.96", "Test::Needs" => 0, "Test::Warnings" => 0, "constant" => 0, "integer" => 0, "overload" => 0, "parent" => 0, "strict" => 0, "utf8" => 0, "warnings" => 0 ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); home/.cpan/build/Digest-MD5-2.59-0/Makefile.PL 0000644 00000003172 15125143344 0014103 0 ustar 00 #!perl -w use strict; use warnings; use Config qw(%Config); use ExtUtils::MakeMaker; my @extra; push(@extra, INSTALLDIRS => 'perl') if $] >= 5.008 && $] < 5.012; if ($^O eq 'VMS') { if (defined($Config{ccname})) { if (grep(/VMS_VAX/, @INC) && ($Config{ccname} eq 'DEC')) { # VAX compiler optimizer even as late as v6.4 gets stuck push(@extra, OPTIMIZE => "/Optimize=(NODISJOINT)"); } } } WriteMakefile( 'NAME' => 'Digest::MD5', 'VERSION_FROM' => 'MD5.pm', 'ABSTRACT' => 'Perl interface to the MD-5 algorithm', 'AUTHOR' => 'Gisle Aas <gisle@activestate.com>', 'LICENSE' => 'perl', 'MIN_PERL_VERSION' => 5.006, 'PREREQ_PM' => { 'Digest::base' => '1.00', 'XSLoader' => 0, }, 'META_MERGE' => { resources => { license => 'http://dev.perl.org/licenses/', bugtracker => 'https://github.com/Dual-Life/digest-md5/issues', repository => 'https://github.com/dual-Life/digest-md5/', } }, @extra, ); BEGIN { # compatibility with older versions of MakeMaker my $developer = -d ".git"; my %mm_req = ( LICENCE => 6.31, META_MERGE => 6.45, META_ADD => 6.45, MIN_PERL_VERSION => 6.48, ); undef(*WriteMakefile); *WriteMakefile = sub { my %arg = @_; for (keys %mm_req) { unless (eval { ExtUtils::MakeMaker->VERSION($mm_req{$_}) }) { warn "$_ $@" if $developer; delete $arg{$_}; } } ExtUtils::MakeMaker::WriteMakefile(%arg); }; } home/.cpan/build/Devel-CheckLib-1.16-0/Makefile.PL 0000644 00000004570 15125143346 0014777 0 ustar 00 # $Id: Makefile.PL,v 1.6 2008/03/04 21:49:19 drhyde Exp $ use 5.00405; use ExtUtils::MakeMaker; use strict; $^W = 1; WriteMakefile1( NAME => 'Devel::CheckLib', ABSTRACT_FROM => 'lib/Devel/CheckLib.pm', VERSION_FROM => 'lib/Devel/CheckLib.pm', AUTHOR => [ 'David Cantrell', 'David Golden', 'Yasuhiro Matsumoto', ], PREREQ_PM => { 'File::Temp' => 0.16, 'Exporter' => 0, 'File::Spec' => 0, }, MIN_PERL_VERSION => '5.00405', META_MERGE => { dynamic_config => 0, resources => { repository => 'http://github.com/mattn/p5-Devel-CheckLib', }, }, TEST_REQUIRES => { 'Test::More' => 0.88, # done_testing 'Capture::Tiny' => 0, 'Mock::Config' => 0.02, }, LICENSE => 'perl', EXE_FILES => [qw( bin/use-devel-checklib )], ); sub WriteMakefile1 { #Compatibility code for old versions of EU::MM. Written by Alexandr Ciornii, version 2. 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{TEST_REQUIRES} and $eumm_version < 6.64) { $params{BUILD_REQUIRES}={ %{$params{BUILD_REQUIRES} || {}} , %{$params{TEST_REQUIRES}} }; delete $params{TEST_REQUIRES}; } 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); } home/.cpan/build/NetAddr-IP-4.079-0/Makefile.PL 0000644 00000005607 15125143346 0014223 0 ustar 00 use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. my $check0 = 0; my $check1 = 0; my $now = time; my $then = (stat('./Makefile.old'))[9]; # set number of seconds to view my $view = $then +86400 < $now ? 5:0; my $pv = sprintf "%vd", $^V; unless ($pv lt '5.8.0' || $pv gt '5.8.5') { print qq( ################################################################# ######################### WARNING ############################### # # # YOUR VERSION OF PERL = $pv HAS SERIOUS BUGS # # # # Early versions of perl 5.8.x contain bugs that cause certain # # \@_ operations to fail. See perl bug [ 23429] # # Please upgrade to at least perl 5.8.6 # # # ################################################################# ); sleep $view if $view; } unless (grep { m/-noxs/ } @ARGV) { print q{ This build requires a C compiler by default except on Windows where the Pure Perl version is mandatory. The Pure Perl version, which does not require compilation of XS code, can be used by invoking this as: perl Makefile.PL -noxs }; sleep $view if $view; } sleep $view if $view && ($check0 || $check1); print <<EOF; ====================================================================== W A R N I N G - Please do read below if you have legacy code ====================================================================== Versions 3.21 and above of NetAddr::IP, include hooks for the Storable class that are incompatible with the old (automatic) method of storing data. To regain backwards compatibility, the module must be use()d as use NetAddr::IP ':old_storable'; which will disable the new hooks and revert back to the old ways. If you do not use Storable along with NetAddr::IP, or just don't know what this all means, most likely you're safe to go ahead. Versions before 3.25 recognized by default IP addresses as returned by inet_aton. This is no longer the default. To enable this behavior again, the module must be use()d as use NetAddr::IP ':aton'; Versions before 4.008 recognized the above syntax. This behavior is fundamentally broken, is DEPRECATED and WILL BE REMOVED in version 5.0 Use this method to create new objects from 'aton's \$ip = new_from_aton NetAddr::IP(inet_aton('1.2.3.4')) EOF ; sleep $view if $view; my %makeparms = ( # (MM->can('signature_target') ? (SIGN => 1) : ()), 'NAME' => 'NetAddr::IP', 'VERSION_FROM' => 'IP.pm', # finds $VERSION 'PREREQ_PM' => { Test::More => 0, }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'IP.pm', AUTHOR => 'Luis E. Muñoz <luismunoz@cpan.org>, Michael Robinton <miker@cpan.org>') : ()), clean => { FILES => "*~ tmp* META.yml"}, ); WriteMakefile(%makeparms); home/.cpan/build/Exporter-5.78-0/Makefile.PL 0000644 00000001743 15125143351 0014115 0 ustar 00 use 5.006; use ExtUtils::MakeMaker; my $EUMM_VERSION = $ExtUtils::MakeMaker::VERSION; $EUMM_VERSION =~ s/_//g; WriteMakefile( NAME => 'Exporter', VERSION_FROM => 'lib/Exporter.pm', ( $] > 5.011 ) ? () : ( INSTALLDIRS => 'perl' ), # CPAN sourced versions should now install to site PREREQ_PM => { 'Carp' => '1.05', }, ABSTRACT_FROM => 'lib/Exporter.pm', ( $EUMM_VERSION >= 6.31 ? ( LICENSE => 'perl_5' ) : () ), dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, META_MERGE => { recommends => { 'Test::Pod' => 1.18, 'Test::Pod::Coverage' => 1.04 }, resources => { license => 'http://dev.perl.org/licenses/', bugtracker => 'https://github.com/Perl/perl5/issues', repository => 'https://github.com/Perl/perl5/tree/blead/dist/Exporter', MailingList => 'http://lists.perl.org/list/perl5-porters.html', }, }, ); home/.cpan/build/Mock-Config-0.03-0/Makefile.PL 0000644 00000002550 15125143402 0014352 0 ustar 00 use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Mock::Config', AUTHOR => q{Reini Urban <rurban@cpan.org>}, VERSION_FROM => 'lib/Mock/Config.pm', ABSTRACT_FROM => 'lib/Mock/Config.pm', LICENSE => 'artistic_2', PL_FILES => {}, MIN_PERL_VERSION => 5.006, CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, }, BUILD_REQUIRES => { 'Test::More' => 0, }, PREREQ_PM => { #'ABC' => 1.6, #'Foo::Bar::Module' => 5.0401, }, clean => { FILES => 'Mock-Config-*' }, SIGN => 1, dist => { PREOP => 'pod2text \$(VERSION_FROM) | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', COMPRESS => 'gzip -9v', SUFFIX => '.gz', }, ($ExtUtils::MakeMaker::VERSION gt '6.46' ? ('META_MERGE' => {suggests => { 'XSConfig' => '6.19', }, resources => { license => 'http://dev.perl.org/licenses/', bugtracker => 'https://github.com/perl11/Mock-Config/issues', repository => 'https://github.com/perl11/Mock-Config', }, } ) : ()), ); package MY; sub top_targets { local $_ = shift->SUPER::top_targets(@_); s/\$\(FIRST_MAKEFILE\) blibdirs/\$(FIRST_MAKEFILE\) blibdirs README/; $_ } sub depend { " README : \$(VERSION_FROM) pod2text \$(VERSION_FROM) > README " } home/.cpan/build/Storable-3.25-0/Makefile.PL 0000644 00000004670 15125143406 0014051 0 ustar 00 # # Copyright (c) 1995-2000, Raphael Manfredi # Copyright (c) 2017, Reini Urban # # You may redistribute only under the same terms as Perl 5, as specified # in the README file that comes with the distribution. # use strict; use warnings; use ExtUtils::MakeMaker 6.31; use Config; WriteMakefile( NAME => 'Storable', AUTHOR => 'Perl 5 Porters', LICENSE => 'perl', DISTNAME => "Storable", PREREQ_PM => { XSLoader => 0, }, ( $ExtUtils::MakeMaker::VERSION >= 6.64 ? ( CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => '6.31', }, BUILD_REQUIRES => { 'ExtUtils::MakeMaker' => '6.31', }, TEST_REQUIRES => { 'Test::More' => '0.41', }, ) : () ), INSTALLDIRS => ($] >= 5.007 && $] < 5.012) ? 'perl' : 'site', VERSION_FROM => 'Storable.pm', ABSTRACT_FROM => 'Storable.pm', ($ExtUtils::MakeMaker::VERSION > 6.45 ? (META_MERGE => { resources => { bugtracker => 'https://github.com/Perl/perl5/issues' }, provides => { 'Storable' => { file => 'Storable.pm', version => MM->parse_version('Storable.pm'), }, }, }, ) : ()), dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, clean => { FILES => 'Storable-*' }, ); my $ivtype = $Config{ivtype}; # I don't know if the VMS folks ever supported long long on 5.6.x if ($ivtype and $ivtype eq 'long long' and $^O !~ /^MSWin/) { print <<'EOM'; You appear to have a perl configured to use 64 bit integers in its scalar variables. If you have existing data written with an earlier version of Storable which this version of Storable refuses to load with a Byte order is not compatible error, then please read the section "64 bit data in perl 5.6.0 and 5.6.1" in the Storable documentation for instructions on how to read your data. (You can find the documentation at the end of Storable.pm in POD format) EOM } package MY; sub depend { " release : dist git tag \$(VERSION) cpan-upload \$(DISTVNAME).tar\$(SUFFIX) git push git push --tags " } home/.cpan/build/cPanel-PublicAPI-2.8-0/Makefile.PL 0000644 00000002554 15125143443 0015166 0 ustar 00 use strict; use warnings; use ExtUtils::MakeMaker; die "OS unsupported\n" if $^O eq 'MSWin32'; # Requires getpwuid to be implemented. WriteMakefile( NAME => 'cPanel::PublicAPI', AUTHOR => q{cPanel, Inc. <integration@cpanel.net>}, VERSION_FROM => 'lib/cPanel/PublicAPI.pm', ABSTRACT_FROM => 'lib/cPanel/PublicAPI.pod', ( $ExtUtils::MakeMaker::VERSION >= 6.3002 ? ( 'LICENSE' => 'bsd' ) : () ), PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, 'Test::Exception' => 0, 'JSON::XS' => 2.0, 'URI::Escape' => 3, 'IO::Socket::INET' => 1.31, 'IO::Socket::SSL' => 1.988, # Versions below this do not handle close calls properly 'HTTP::Tiny' => 0.042, 'HTTP::CookieJar' => 0, }, META_MERGE => { 'meta-spec' => { version => 2 }, resources => { repository => { type => 'git', url => 'git://github.com/CpanelInc/cPanel-PublicAPI.git', web => 'https://github.com/CpanelInc/cPanel-PublicAPI', }, bugtracker => { web => 'https://github.com/CpanelInc/cPanel-PublicAPI/issues', }, }, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'cPanel-PublicAPI-*' }, ); home/.cpan/build/AppConfig-1.71-0/Makefile.PL 0000644 00000003462 15125143446 0014145 0 ustar 00 use ExtUtils::MakeMaker; my $mm_ver = $ExtUtils::MakeMaker::VERSION; if ($mm_ver =~ /_/) { # dev version $mm_ver = eval $mm_ver; die $@ if $@; } my %config = ( 'NAME' => 'AppConfig', 'VERSION_FROM' => 'lib/AppConfig.pm', # finds $VERSION 'PMLIBDIRS' => [ 'lib' ], 'PREREQ_PM' => { 'Test::More' => 0, }, 'MAN3PODS' => { # We must explicitly name AppConfig.pm et al as manifyable files. # MakeMaker ignores files that match /(config|setup).*\.pm/i; 'lib/AppConfig.pm' => '$(INST_MAN3DIR)/AppConfig.$(MAN3EXT)', map { ( "lib/AppConfig/${_}.pm", "\$(INST_MAN3DIR)/AppConfig::${_}.\$(MAN3EXT)" ) ; } qw( Args CGI File Getopt State Sys ), }, 'dist' => { 'COMPRESS' => 'gzip', 'SUFFIX' => 'gz', }, ($mm_ver <= 6.45 ? () : (META_MERGE => { 'meta-spec' => { version => 2 }, resources => { repository => { type => 'git', web => 'https://github.com/neilbowers/AppConfig', url => 'git://github.com/neilbowers/AppConfig.git', }, }, }) ), ($mm_ver <= 6.45 ? () : (TEST_REQUIRES => { # optional modules only required for testing 'Test::Pod' => '1.0', }) ), ($mm_ver < 6.48 ? () : (MIN_PERL_VERSION => '5.8.8',) ), ($mm_ver <= 6.31 ? () : (LICENSE => 'perl_5') ), ); ## for PPD on win32 if ($] ge '5.005') { $config{ AUTHOR } = 'Andy Wardley <abw@wardley.org>', $config{ ABSTRACT } = 'AppConfig is a bundle of Perl5 modules for reading configuration files and parsing command line arguments.'; } WriteMakefile(%config); home/.cpan/build/App-cpanminus-1.7047-0/Makefile.PL 0000644 00000002020 15125143446 0015151 0 ustar 00 # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.025. use strict; use warnings; use 5.008001; use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "get, unpack, build and install modules from CPAN", "AUTHOR" => "- Tatsuhiko Miyagawa", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "App-cpanminus", "EXE_FILES" => [ "bin/cpanm" ], "LICENSE" => "perl", "MIN_PERL_VERSION" => "5.008001", "NAME" => "App::cpanminus", "PREREQ_PM" => {}, "TEST_REQUIRES" => { "Test::More" => 0 }, "VERSION" => "1.7047", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "Test::More" => 0 ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); home/.cpan/build/Test-Warnings-0.033-0/Makefile.PL 0000644 00000002540 15125143453 0015053 0 ustar 00 # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.031. use strict; use warnings; use 5.006; use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "Test for warnings and the lack of them", "AUTHOR" => "Karen Etheridge <ether\@cpan.org>", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "Test-Warnings", "LICENSE" => "perl", "MIN_PERL_VERSION" => "5.006", "NAME" => "Test::Warnings", "PREREQ_PM" => { "Carp" => 0, "Exporter" => 0, "Test::Builder" => 0, "parent" => 0, "strict" => 0, "warnings" => 0 }, "TEST_REQUIRES" => { "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "Test::More" => "0.94", "if" => 0 }, "VERSION" => "0.033", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "Carp" => 0, "Exporter" => 0, "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "Test::Builder" => 0, "Test::More" => "0.94", "if" => 0, "parent" => 0, "strict" => 0, "warnings" => 0 ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); home/.cpan/build/Mail-RFC822-Address-0.3-0/Makefile.PL 0000644 00000000454 15125143453 0015316 0 ustar 00 use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Mail::RFC822::Address', 'VERSION_FROM' => 'Address.pm', # finds $VERSION 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 );
| ver. 1.6 |
Github
|
.
| PHP 8.2.30 | ??????????? ?????????: 0 |
proxy
|
phpinfo
|
???????????