},
'ExtUtils::MakeMaker' => {
- 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.40.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.42.tar.gz',
'FILES' => q[cpan/ExtUtils-MakeMaker],
'EXCLUDED' => [
qr{^t/lib/Test/},
'README.packaging',
'lib/ExtUtils/MakeMaker/version/vpp.pm',
],
- 'CUSTOMIZED' => [
- # https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/646f74e78
- qw(lib/ExtUtils/MM_Any.pm)
- ],
},
'ExtUtils::Manifest' => {
@ISA = qw(Exporter);
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
dos2unix);
-$VERSION = '7.40';
+$VERSION = '7.42';
$VERSION =~ tr/_//d;
my $Is_VMS = $^O eq 'VMS';
our @EXPORT = qw(test_harness pod2man perllocal_install uninstall
warn_if_old_packlist test_s cp_nonempty);
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
my $Is_VMS = $^O eq 'VMS';
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use File::Spec;
use strict;
use warnings;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use ExtUtils::MakeMaker::Config;
use strict;
use ExtUtils::MakeMaker::Config;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::Liblist;
package ExtUtils::MM_AIX;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use ExtUtils::MakeMaker::Config;
package ExtUtils::MM_Any;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use Carp;
require ExtUtils::MM_Unix;
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Win32;
our @ISA = qw( ExtUtils::MM_Unix );
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Any;
our @ISA = qw( ExtUtils::MM_Unix );
}
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
sub new {
use ExtUtils::MakeMaker::Config;
use File::Basename;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Win32;
use ExtUtils::MakeMaker qw(neatvalue);
use File::Spec;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Any;
package ExtUtils::MM_QNX;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Unix;
package ExtUtils::MM_UWIN;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Unix;
# If we make $VERSION an our variable parse_version() breaks
use vars qw($VERSION);
-$VERSION = '7.40';
+$VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Any;
use File::Basename;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Any;
package ExtUtils::MM_VOS;
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Unix;
require ExtUtils::MM_Any;
require ExtUtils::MM_Unix;
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
$ENV{EMXSHELL} = 'sh'; # to run `commands`
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require ExtUtils::MM_Win32;
use strict;
require ExtUtils::MM;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
our @ISA = qw(ExtUtils::MM);
our %macro_fsentity; # whether a macro is a filesystem name
our %macro_dep; # whether a macro is a dependency
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
# Emulate something resembling CVS $Revision$
=head1 SEE ALSO
L<Module::Build> is a pure-Perl alternative to MakeMaker which does
-not rely on make or any other external utility. It is easier to
+not rely on make or any other external utility. It may be easier to
extend to suit your needs.
-L<Module::Install> is a wrapper around MakeMaker which adds features
-not normally available.
+L<Module::Build::Tiny> is a minimal pure-Perl alternative to MakeMaker
+that follows the Build.PL protocol of Module::Build but without its
+complexity and cruft, implementing only the installation of the module
+and leaving authoring to L<mbtiny> or other authoring tools.
+
+L<Module::Install> is a (now discouraged) wrapper around MakeMaker which
+adds features not normally available.
L<ExtUtils::ModuleMaker> and L<Module::Starter> are both modules to
help you setup your distribution.
L<File::ShareDir::Install> makes it easy to install static, sometimes
also referred to as 'shared' files. L<File::ShareDir> helps accessing
-the shared files after installation.
+the shared files after installation. L<Test::File::ShareDir> helps when
+writing tests to use the shared files both before and after installation.
+
+L<Dist::Zilla> is an authoring tool which allows great customization and
+extensibility of the author experience, relying on the existing install
+tools like ExtUtils::MakeMaker only for installation.
+
+L<Dist::Milla> is a Dist::Zilla bundle that greatly simplifies common
+usage.
-L<Dist::Zilla> makes it easy for the module author to create MakeMaker-based
-distributions with lots of bells and whistles.
+L<Minilla> is a minimal authoring tool that does the same things as
+Dist::Milla without the overhead of Dist::Zilla.
=head1 AUTHORS
use strict;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use Config ();
package ExtUtils::MakeMaker::FAQ;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
1;
package ExtUtils::MakeMaker::Locale;
use strict;
-our $VERSION = "7.40";
+our $VERSION = "7.42";
$VERSION =~ tr/_//d;
use base 'Exporter';
package ExtUtils::MakeMaker::Tutorial;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
L<perlnewmod> gives more information about how to write a module.
There are modules to help you through the process of writing a module:
-L<ExtUtils::ModuleMaker>, L<Module::Install>, L<PAR>
+L<ExtUtils::ModuleMaker>, L<Module::Starter>, L<Minilla::Tutorial>,
+L<Dist::Milla::Tutorial>, L<Dist::Zilla::Starter>
=cut
use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
-$VERSION = '7.40';
+$VERSION = '7.42';
$VERSION =~ tr/_//d;
$CLASS = 'version';
use vars qw($VERSION $CLASS $STRICT $LAX);
-$VERSION = '7.40';
+$VERSION = '7.42';
$VERSION =~ tr/_//d;
#--------------------------------------------------------------------------#
# There's just too much Dynaloader incest here to turn on strict vars.
use strict 'refs';
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(&Mksymlists);
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
sub Mksymlists {
use strict;
use warnings;
-our $VERSION = '7.40';
+our $VERSION = '7.42';
$VERSION =~ tr/_//d;
use Cwd;
Digest::MD5 cpan/Digest-MD5/MD5.pm df5f0663f0f755be7eda6e3d2f008f2629246b19
Digest::MD5 cpan/Digest-MD5/MD5.xs 249bed648232192ce018f7f894ad127c3a639831
Digest::MD5 cpan/Digest-MD5/t/files.t e987329d2411ff60ad9a2bdf93fdf5f6943467e8
-ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm 231d7e8db3303dc593350e54572270806a8de687
Filter::Util::Call pod/perlfilter.pod e9833bf4ebc51087dfee5c553e0f8a5eef67212d
Locale::Maketext::Simple cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm 57ed38905791a17c150210cd6f42ead22a7707b6
Math::Complex cpan/Math-Complex/lib/Math/Complex.pm 198ea6c6c584f5ea79a0fd7e9d411d0878f3b2af