diff -Nru libmoosex-role-parameterized-perl-1.08/Build.PL libmoosex-role-parameterized-perl-1.09/Build.PL --- libmoosex-role-parameterized-perl-1.08/Build.PL 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/Build.PL 2016-08-07 01:20:36.000000000 +0000 @@ -1,17 +1,32 @@ # This Build.PL for MooseX-Role-Parameterized was generated by -# Dist::Zilla::Plugin::ModuleBuildTiny::Fallback 0.005 -if (eval 'use Module::Build::Tiny 0.037; 1') +# Dist::Zilla::Plugin::ModuleBuildTiny::Fallback 0.023 +use strict; +use warnings; + +my %configure_requires = ( + 'Module::Build::Tiny' => '0.034', +); + +my %errors = map { + eval "require $_; $_->VERSION($configure_requires{$_}); 1"; + $_ => $@, +} keys %configure_requires; + +if (!grep { $_ } values %errors) { - print "Congratulations, your toolchain understands 'configure_requires'!\n\n"; + # This section for MooseX-Role-Parameterized was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.015. + use strict; + use warnings; - # This section for MooseX-Role-Parameterized was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.006. use 5.008001; - # use Module::Build::Tiny 0.037; - Build_PL(); + # use Module::Build::Tiny 0.034; + Module::Build::Tiny::Build_PL(); } else { - $ENV{PERL_MB_FALLBACK_SILENCE_WARNING} or warn <<'EOW'; + if (not $ENV{PERL_MB_FALLBACK_SILENCE_WARNING}) + { + warn <<'EOW' *** WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING *** If you're seeing this warning, your toolchain is really, really old* and you'll @@ -42,11 +57,18 @@ PERL_MB_FALLBACK_SILENCE_WARNING environment variable, but please don't do that until you fix your toolchain as described above. + +Errors from configure prereqs: EOW - sleep 10 if -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); + . do { + require Data::Dumper; Data::Dumper->new([ \%errors ])->Indent(2)->Terse(1)->Sortkeys(1)->Dump; + }; + + sleep 10 if -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); + } - # This section was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.020. + # This section was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.007. use strict; use warnings; @@ -54,20 +76,18 @@ my %module_build_args = ( - "build_requires" => {}, "configure_requires" => { - "ExtUtils::MakeMaker" => 0, - "Module::Build::Tiny" => "0.037" + "Module::Build::Tiny" => "0.034", + "perl" => "5.008001" }, - "dist_abstract" => "roles with composition parameters", + "dist_abstract" => "Moose roles with composition parameters", "dist_author" => [ "Shawn M Moore " ], "dist_name" => "MooseX-Role-Parameterized", - "dist_version" => "1.08", + "dist_version" => "1.09", "license" => "perl", "module_name" => "MooseX::Role::Parameterized", - "recommends" => {}, "recursive_test_files" => 1, "requires" => { "Carp" => 0, @@ -78,16 +98,15 @@ "Moose::Role" => 0, "Moose::Util" => 0, "namespace::autoclean" => 0, - "namespace::clean" => 0, + "namespace::clean" => "0.19", "perl" => "5.008001" }, - "script_files" => [], "test_requires" => { - "CPAN::Meta::Check" => "0.007", + "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Data::Dumper" => 0, - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Moose::Util::TypeConstraints" => 0, "MooseX::Role::WithOverloading" => 0, "Storable" => 0, @@ -97,6 +116,7 @@ "Test::Requires" => 0, "lib" => 0, "overload" => 0, + "perl" => "5.008001", "strict" => 0, "warnings" => 0 } @@ -104,11 +124,11 @@ my %fallback_build_requires = ( - "CPAN::Meta::Check" => "0.007", + "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Data::Dumper" => 0, - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Moose::Util::TypeConstraints" => 0, "MooseX::Role::WithOverloading" => 0, "Storable" => 0, @@ -118,6 +138,7 @@ "Test::Requires" => 0, "lib" => 0, "overload" => 0, + "perl" => "5.008001", "strict" => 0, "warnings" => 0 ); @@ -130,5 +151,6 @@ my $build = Module::Build->new(%module_build_args); + $build->create_build_script; } diff -Nru libmoosex-role-parameterized-perl-1.08/Changes libmoosex-role-parameterized-perl-1.09/Changes --- libmoosex-role-parameterized-perl-1.08/Changes 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/Changes 2016-08-07 01:20:36.000000000 +0000 @@ -1,5 +1,9 @@ Revision history for MooseX-Role-Parameterized +1.09 2016-08-07 01:20:31Z + - Give 'anonymous' generated roles names that are similar to the original + parameterized role so debug output is easier to read + 1.08 2014-08-23 22:38:12Z - add x_breaks metadata for incompatibility issue with MooseX::Storage (now resolved with MooseX-Storage-0.47) diff -Nru libmoosex-role-parameterized-perl-1.08/CONTRIBUTING libmoosex-role-parameterized-perl-1.09/CONTRIBUTING --- libmoosex-role-parameterized-perl-1.08/CONTRIBUTING 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/CONTRIBUTING 2016-08-07 01:20:36.000000000 +0000 @@ -4,10 +4,12 @@ Thank you for considering contributing to this distribution. This file contains instructions that will help you work with the source code. -PLEASE NOTE that if you have any questions or difficulties, you can reach me -through the bug queue described later in this document, or by emailing me -directly. You are not required to follow any of the steps in this document to -submit a patch or bug report; these are just guidelines, intended to help you. +PLEASE NOTE that if you have any questions or difficulties, you can reach the +maintainer(s) through the bug queue described later in this document +(preferred), or by emailing the releaser directly. You are not required to +follow any of the steps in this document to submit a patch or bug report; +these are just recommendations, intended to help you (and help us help you +faster). The distribution is managed with Dist::Zilla (https://metacpan.org/release/Dist-Zilla). This means than many of the usual files you might expect are not in the @@ -24,7 +26,7 @@ You may need to satisfy some dependencies. The easiest way to satisfy dependencies is to install the last release -- this is available at -https://metacpan.org/release/MooseX-Role-Parameterized. +https://metacpan.org/release/MooseX-Role-Parameterized If you use cpanminus, you can do it without downloading the tarball first: @@ -75,25 +77,24 @@ changes to your clone, and then submitting a pull request. Detailed instructions for doing that is available here: -https://help.github.com/ https://help.github.com/articles/creating-a-pull-request If you have found a bug, but do not have an accompanying patch to fix it, you can submit an issue report here: https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Role-Parameterized -or via bug-MooseX-Role-Parameterized@rt.cpan.org. +or via email: bug-MooseX-Role-Parameterized@rt.cpan.org There is also a mailing list available for users of this distribution, at -http://lists.perl.org/list/moose.html. +http://lists.perl.org/list/moose.html There is also an irc channel available for users of this distribution, at -irc://irc.perl.org/#moose. +irc://irc.perl.org/#moose If you send me a patch or pull request, your name and email address will be -included in the documentation as a contributor, unless you specifically -request for it not to be (using the attribution on the commit or patch). -If you wish to be listed under a different name, you should submit a pull +included in the documentation as a contributor (using the attribution on the +commit or patch), unless you specifically request for it not to be. If you +wish to be listed under a different name or address, you should submit a pull request to the .mailmap file to contain the correct mapping. -This file was generated via Dist::Zilla::Plugin::GenerateFile::ShareDir 0.005 from a -template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.072. +This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.012 from a +template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.117. diff -Nru libmoosex-role-parameterized-perl-1.08/debian/changelog libmoosex-role-parameterized-perl-1.09/debian/changelog --- libmoosex-role-parameterized-perl-1.08/debian/changelog 2014-08-27 21:11:06.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/debian/changelog 2016-08-11 00:59:16.000000000 +0000 @@ -1,3 +1,23 @@ +libmoosex-role-parameterized-perl (1.09-1) unstable; urgency=medium + + * Team upload. + + [ Salvatore Bonaccorso ] + * debian/control: Use HTTPS transport protocol for Vcs-Git URI + + [ gregor herrmann ] + * debian/copyright: change Copyright-Format 1.0 URL to HTTPS. + + [ Nick Morrott ] + * Import upstream version 1.09 + * Declare compliance with Debian Policy 3.9.8 + * Update upstream copyright details + * Add Testsuite header to make package autopkgtest-able + * Refresh (build-) dependencies + * Update metadata + + -- Nick Morrott Thu, 11 Aug 2016 01:59:16 +0100 + libmoosex-role-parameterized-perl (1.08-1) unstable; urgency=medium * Team upload. diff -Nru libmoosex-role-parameterized-perl-1.08/debian/control libmoosex-role-parameterized-perl-1.09/debian/control --- libmoosex-role-parameterized-perl-1.08/debian/control 2014-08-27 21:11:06.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/debian/control 2016-08-11 00:59:16.000000000 +0000 @@ -7,22 +7,22 @@ Ansgar Burchardt , gregor herrmann Section: perl +Testsuite: autopkgtest-pkg-perl Priority: optional Build-Depends: debhelper (>= 9.20140227~), - libmodule-build-tiny-perl (>= 0.037), + libmodule-build-tiny-perl, perl -Build-Depends-Indep: libcpan-meta-check-perl, +Build-Depends-Indep: libcpan-meta-check-perl (>= 0.011), libmodule-runtime-perl, - libmoose-perl (>= 2.0300), + libmoose-perl, libmoosex-role-withoverloading-perl (>= 0.14), libnamespace-autoclean-perl, libnamespace-clean-perl, libtest-fatal-perl, - libtest-requires-perl, - perl (>= 5.13.4) | libtest-simple-perl (>= 0.96) -Standards-Version: 3.9.5 + libtest-requires-perl +Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmoosex-role-parameterized-perl.git -Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmoosex-role-parameterized-perl.git +Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmoosex-role-parameterized-perl.git Homepage: https://metacpan.org/release/MooseX-Role-Parameterized Package: libmoosex-role-parameterized-perl @@ -30,7 +30,7 @@ Depends: ${misc:Depends}, ${perl:Depends}, libmodule-runtime-perl, - libmoose-perl (>= 2.0300), + libmoose-perl, libnamespace-autoclean-perl, libnamespace-clean-perl Breaks: libmoosex-storage-perl (<< 0.47) diff -Nru libmoosex-role-parameterized-perl-1.08/debian/copyright libmoosex-role-parameterized-perl-1.09/debian/copyright --- libmoosex-role-parameterized-perl-1.08/debian/copyright 2014-08-27 21:11:06.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/debian/copyright 2016-08-11 00:59:16.000000000 +0000 @@ -1,11 +1,10 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: MooseX-Role-Parameterized Upstream-Contact: Karen Etheridge Source: https://metacpan.org/release/MooseX-Role-Parameterized Files: * -Copyright: 2007-2010, Infinity Interactive, Inc. - 2008, Shawn M Moore +Copyright: 2008, Shawn M Moore License: Artistic or GPL-1+ Files: debian/* diff -Nru libmoosex-role-parameterized-perl-1.08/debian/upstream/metadata libmoosex-role-parameterized-perl-1.09/debian/upstream/metadata --- libmoosex-role-parameterized-perl-1.08/debian/upstream/metadata 2014-08-27 21:11:06.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/debian/upstream/metadata 2016-08-11 00:59:16.000000000 +0000 @@ -2,7 +2,7 @@ Archive: CPAN Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Role-Parameterized Bug-Submit: bug-MooseX-Role-Parameterized@rt.cpan.org -Contact: Shawn M Moore +Contact: Karen Etheridge Homepage: https://github.com/moose/MooseX-Role-Parameterized Name: MooseX-Role-Parameterized Repository: https://github.com/moose/MooseX-Role-Parameterized.git diff -Nru libmoosex-role-parameterized-perl-1.08/dist.ini libmoosex-role-parameterized-perl-1.09/dist.ini --- libmoosex-role-parameterized-perl-1.08/dist.ini 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/dist.ini 2016-08-07 01:20:36.000000000 +0000 @@ -5,7 +5,7 @@ copyright_year = 2008 [@Author::ETHER] -:version = 0.068 +:version = 0.094 Authority.authority = cpan:SARTAK -remove = Test::PodSpelling ; TODO -remove = Test::Pod::No404s ; Several of the blog articles we link to return 404 for bots :( @@ -13,18 +13,15 @@ AutoPrereqs.skip[1] = ^P::Role$ AutoPrereqs.skip[2] = ^Test::Consumer$ Test::ReportPrereqs.include = Dist::CheckConflicts +Test::MinimumVersion.max_target_perl = 5.008003 +StaticInstall.dry_run = 0 ; we can safely set this here [MetaResources] x_IRC = irc://irc.perl.org/#moose x_MailingList = http://lists.perl.org/list/moose.html -; authordep Pod::Weaver::Section::Contributors - [Breaks] MooseX::Storage = <= 0.46 [Test::CheckBreaks] conflicts_module = Moose::Conflicts - -[Test::CleanNamespaces] -skip = ^MooseX::Role::Parameterized$ ; TODO: init_meta not yet being installed as a clean method diff -Nru libmoosex-role-parameterized-perl-1.08/INSTALL libmoosex-role-parameterized-perl-1.09/INSTALL --- libmoosex-role-parameterized-perl-1.08/INSTALL 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/INSTALL 2016-08-07 01:20:36.000000000 +0000 @@ -1,4 +1,3 @@ - This is the Perl distribution MooseX-Role-Parameterized. Installing MooseX-Role-Parameterized is straightforward. @@ -9,10 +8,10 @@ % cpanm MooseX::Role::Parameterized -If you are installing into a system-wide directory, you may need to pass the -"-S" flag to cpanm, which uses sudo to install the module: - - % cpanm -S MooseX::Role::Parameterized +If it does not have permission to install modules to the current perl, cpanm +will automatically set up and install to a local::lib in your home directory. +See the local::lib documentation (https://metacpan.org/pod/local::lib) for +details on enabling it in your environment. ## Installing with the CPAN shell @@ -32,9 +31,9 @@ % ./Build install -If you are installing into a system-wide directory, you may need to run: - - % sudo ./Build install +If your perl is system-managed, you can create a local::lib in your home +directory to install modules to. For details, see the local::lib documentation: +https://metacpan.org/pod/local::lib ## Documentation diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Extending.pod libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Extending.pod --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Extending.pod 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Extending.pod 2016-08-07 01:20:36.000000000 +0000 @@ -13,7 +13,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 DESCRIPTION @@ -62,6 +62,17 @@ =head1 NAME +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,8 @@ package MooseX::Role::Parameterized::Meta::Role::Parameterized; # ABSTRACT: metaclass for parameterized roles -$MooseX::Role::Parameterized::Meta::Role::Parameterized::VERSION = '1.08'; + +our $VERSION = '1.09'; + use Moose; extends 'Moose::Meta::Role'; with 'MooseX::Role::Parameterized::Meta::Trait::Parameterized'; @@ -22,7 +24,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 DESCRIPTION @@ -30,6 +32,17 @@ with their parameters bound. See L which has all the guts. +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,8 @@ package MooseX::Role::Parameterized::Meta::Trait::Parameterizable; # ABSTRACT: trait for parameterizable roles -$MooseX::Role::Parameterized::Meta::Trait::Parameterizable::VERSION = '1.08'; + +our $VERSION = '1.09'; + use Moose::Role; use MooseX::Role::Parameterized::Meta::Role::Parameterized; use MooseX::Role::Parameterized::Parameters; @@ -46,6 +48,7 @@ ); } +my $package_counter = 0; sub generate_role { my $self = shift; my %args = @_; @@ -60,19 +63,16 @@ my $parameterized_role_metaclass = $self->parameterized_role_metaclass; use_module($parameterized_role_metaclass); - my $role; - if ($args{package}) { - $role = $parameterized_role_metaclass->create( - $args{package}, - genitor => $self, - parameters => $parameters, - ); - } else { - $role = $parameterized_role_metaclass->create_anon_role( - genitor => $self, - parameters => $parameters, - ); + my $package = $args{package}; + unless ($package) { + $package_counter++; + $package = $self->name . '::__ANON__::SERIAL::' . $package_counter; } + my $role = $parameterized_role_metaclass->create( + $package, + genitor => $self, + parameters => $parameters, + ); local $MooseX::Role::Parameterized::CURRENT_METACLASS = $role; @@ -156,7 +156,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 DESCRIPTION @@ -237,6 +237,17 @@ Overrides L to automatically generate the parameterized role. +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,8 @@ package MooseX::Role::Parameterized::Meta::Trait::Parameterized; # ABSTRACT: trait for parameterized roles -$MooseX::Role::Parameterized::Meta::Trait::Parameterized::VERSION = '1.08'; + +our $VERSION = '1.09'; + use Moose::Role; use MooseX::Role::Parameterized::Parameters; use Moose::Util 'find_meta'; @@ -50,7 +52,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 DESCRIPTION @@ -74,6 +76,17 @@ Returns the L object that represents the specific parameter values for this parameterized role. +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Parameters.pm libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Parameters.pm --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Parameters.pm 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Parameters.pm 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,8 @@ package MooseX::Role::Parameterized::Parameters; # ABSTRACT: base class for parameters -$MooseX::Role::Parameterized::Parameters::VERSION = '1.08'; + +our $VERSION = '1.09'; + use Moose; __PACKAGE__->meta->make_immutable; no Moose; @@ -19,7 +21,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 DESCRIPTION @@ -33,6 +35,17 @@ Each parameterized role gets their own instance of the anonymous subclass (owned by the parameterizable role). +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Tutorial.pod libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Tutorial.pod --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized/Tutorial.pod 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized/Tutorial.pod 2016-08-07 01:20:36.000000000 +0000 @@ -13,7 +13,7 @@ =head1 VERSION -version 1.08 +version 1.09 =head1 MOTIVATION @@ -134,7 +134,7 @@ isa => $p->type, ... ); - } + }; =item Inform a role of your class' attributes and methods @@ -150,7 +150,7 @@ role { my $p = shift; around $p->instrument_method => sub { ... }; - } + }; =item Arbitrary execution choices @@ -170,7 +170,7 @@ if ($p->save_intermediate) { ... } ... }; - } + }; =item Deciding a backend @@ -193,7 +193,7 @@ method thaw => \&YAML::Load; } ... - } + }; =item Additional validation @@ -219,10 +219,21 @@ or confess "Your push parameter must be a scalar"; ... - } + }; =back +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also a mailing list available for users of this distribution, at +L. + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. + =head1 AUTHOR Shawn M Moore diff -Nru libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized.pm libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized.pm --- libmoosex-role-parameterized-perl-1.08/lib/MooseX/Role/Parameterized.pm 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/lib/MooseX/Role/Parameterized.pm 2016-08-07 01:20:36.000000000 +0000 @@ -1,15 +1,15 @@ -package MooseX::Role::Parameterized; -# git description: v1.07-1-gaaeb0e0 -$MooseX::Role::Parameterized::VERSION = '1.08'; -# ABSTRACT: roles with composition parameters +package MooseX::Role::Parameterized; # git description: v1.08-19-g804deed +# ABSTRACT: Moose roles with composition parameters # KEYWORDS: moose extension parameter role arguments dynamic +our $VERSION = '1.09'; + use 5.008001; use Moose 2.0300 (); use Moose::Exporter; use Carp 'confess'; use Moose::Util 'find_meta'; -use namespace::clean; +use namespace::clean 0.19; use MooseX::Role::Parameterized::Meta::Trait::Parameterizable; @@ -91,11 +91,11 @@ =head1 NAME -MooseX::Role::Parameterized - roles with composition parameters +MooseX::Role::Parameterized - Moose roles with composition parameters =head1 VERSION -version 1.08 +version 1.09 =head1 SYNOPSIS @@ -213,20 +213,24 @@ L - this extension ported to JavaScript's Joose -=head1 AUTHOR +=head1 SUPPORT -Shawn M Moore +Bugs may be submitted through L +(or L). -=head1 COPYRIGHT AND LICENSE +There is also a mailing list available for users of this distribution, at +L. -This software is copyright (c) 2008 by Shawn M Moore. +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#moose>. -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. +=head1 AUTHOR + +Shawn M Moore =head1 CONTRIBUTORS -=for stopwords Karen Etheridge Dave Rolsky Oliver Charles Jesse Luehrs Yuval Kogman Florian Ragwitz Robert 'phaylon' Sedlacek Chris Weyl Csson Todd Hepler Ricardo Signes +=for stopwords Karen Etheridge Dave Rolsky Jesse Luehrs Oliver Charles Yuval Kogman Robert 'phaylon' Sedlacek Florian Ragwitz Mark Fowler Chris Weyl Csson Andy Jack Ricardo Signes Todd Hepler =over 4 @@ -240,11 +244,11 @@ =item * -Oliver Charles +Jesse Luehrs =item * -Jesse Luehrs +Oliver Charles =item * @@ -252,11 +256,15 @@ =item * +Robert 'phaylon' Sedlacek + +=item * + Florian Ragwitz =item * -Robert 'phaylon' Sedlacek +Mark Fowler =item * @@ -268,12 +276,23 @@ =item * -Todd Hepler +Andy Jack =item * Ricardo Signes +=item * + +Todd Hepler + =back +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2008 by Shawn M Moore. + +This is free software; you can redistribute it and/or modify it under +the same terms as the Perl 5 programming language system itself. + =cut diff -Nru libmoosex-role-parameterized-perl-1.08/Makefile.PL libmoosex-role-parameterized-perl-1.09/Makefile.PL --- libmoosex-role-parameterized-perl-1.08/Makefile.PL 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/Makefile.PL 2016-08-07 01:20:36.000000000 +0000 @@ -1,28 +1,28 @@ # This Makefile.PL for MooseX-Role-Parameterized was generated by -# Dist::Zilla::Plugin::MakeMaker::Fallback 0.013 -# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.24. +# Dist::Zilla::Plugin::MakeMaker::Fallback 0.023 +# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.38. # Don't edit it but the dist.ini and plugins used to construct it. use strict; use warnings; +use 5.008001; +use ExtUtils::MakeMaker; + BEGIN { my %configure_requires = ( - 'ExtUtils::MakeMaker' => '0', - 'Module::Build::Tiny' => '0.037', + 'Module::Build::Tiny' => '0.034', ); my @missing = grep { ! eval "require $_; $_->VERSION($configure_requires{$_}); 1" } keys %configure_requires; -if (not @missing) -{ - print "Congratulations, your toolchain understands 'configure_requires'!\n\n"; -} -else +if (@missing) { - $ENV{PERL_MM_FALLBACK_SILENCE_WARNING} or warn <<'EOW'; + if (not $ENV{PERL_MM_FALLBACK_SILENCE_WARNING}) + { + warn <<'EOW'; *** WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING *** If you're seeing this warning, your toolchain is really, really old* and you'll @@ -54,30 +54,23 @@ You can also silence this warning for future installations by setting the PERL_MM_FALLBACK_SILENCE_WARNING environment variable. - EOW - - sleep 10 if -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); -} + sleep 10 if -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); + } } - -use 5.008001; - -use ExtUtils::MakeMaker; - - +} # end BEGIN my %WriteMakefileArgs = ( - "ABSTRACT" => "roles with composition parameters", + "ABSTRACT" => "Moose roles with composition parameters", "AUTHOR" => "Shawn M Moore ", "CONFIGURE_REQUIRES" => { - "ExtUtils::MakeMaker" => 0, - "Module::Build::Tiny" => "0.037" + "Module::Build::Tiny" => "0.034" }, "DISTNAME" => "MooseX-Role-Parameterized", - "EXE_FILES" => [], "LICENSE" => "perl", + "MIN_PERL_VERSION" => "5.008001", "NAME" => "MooseX::Role::Parameterized", + "PL_FILES" => {}, "PREREQ_PM" => { "Carp" => 0, "Module::Runtime" => 0, @@ -87,14 +80,14 @@ "Moose::Role" => 0, "Moose::Util" => 0, "namespace::autoclean" => 0, - "namespace::clean" => 0 + "namespace::clean" => "0.19" }, "TEST_REQUIRES" => { - "CPAN::Meta::Check" => "0.007", + "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Data::Dumper" => 0, - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Moose::Util::TypeConstraints" => 0, "MooseX::Role::WithOverloading" => 0, "Storable" => 0, @@ -107,20 +100,19 @@ "strict" => 0, "warnings" => 0 }, - "VERSION" => "1.08", + "VERSION" => "1.09", "test" => { "TESTS" => "t/*.t" } ); - my %FallbackPrereqs = ( - "CPAN::Meta::Check" => "0.007", + "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Carp" => 0, "Data::Dumper" => 0, - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Module::Runtime" => 0, "Moose" => "2.0300", "Moose::Exporter" => 0, @@ -136,13 +128,12 @@ "Test::Requires" => 0, "lib" => 0, "namespace::autoclean" => 0, - "namespace::clean" => 0, + "namespace::clean" => "0.19", "overload" => 0, "strict" => 0, "warnings" => 0 ); - unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; @@ -153,6 +144,3 @@ unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); - - - diff -Nru libmoosex-role-parameterized-perl-1.08/MANIFEST libmoosex-role-parameterized-perl-1.09/MANIFEST --- libmoosex-role-parameterized-perl-1.08/MANIFEST 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/MANIFEST 2016-08-07 01:20:36.000000000 +0000 @@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.020. +# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.007. Build.PL CONTRIBUTING Changes @@ -41,6 +41,7 @@ t/021-parameter-trait.t t/022-export-p-trait.t t/023-metarole-import-params.t +t/024-named-anonymous.t t/100-erroneous-keywords.t t/101-alias-excludes.t t/102-nested.t @@ -48,17 +49,16 @@ t/200-cooperative.t t/lib/Bar.pm t/zzz-check-breaks.t -weaver.ini xt/author/00-compile.t +xt/author/clean-namespaces.t +xt/author/eol.t +xt/author/kwalitee.t +xt/author/mojibake.t xt/author/no-tabs.t +xt/author/pod-coverage.t +xt/author/pod-syntax.t +xt/author/portability.t xt/release/changes_has_content.t -xt/release/clean-namespaces.t xt/release/cpan-changes.t xt/release/distmeta.t -xt/release/eol.t -xt/release/kwalitee.t xt/release/minimum-version.t -xt/release/mojibake.t -xt/release/pod-coverage.t -xt/release/pod-syntax.t -xt/release/portability.t diff -Nru libmoosex-role-parameterized-perl-1.08/META.json libmoosex-role-parameterized-perl-1.09/META.json --- libmoosex-role-parameterized-perl-1.08/META.json 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/META.json 2016-08-07 01:20:36.000000000 +0000 @@ -1,10 +1,10 @@ { - "abstract" : "roles with composition parameters", + "abstract" : "Moose roles with composition parameters", "author" : [ "Shawn M Moore " ], "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142060", + "generated_by" : "Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.150009", "keywords" : [ "moose", "extension", @@ -18,7 +18,7 @@ ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "MooseX-Role-Parameterized", "no_index" : { @@ -30,46 +30,44 @@ "prereqs" : { "configure" : { "requires" : { - "ExtUtils::MakeMaker" : "0", - "Module::Build::Tiny" : "0.037" + "Module::Build::Tiny" : "0.034", + "perl" : "5.008001" } }, "develop" : { "recommends" : { - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.072" + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.117" }, "requires" : { "Dist::Zilla" : "5", - "Dist::Zilla::Plugin::Authority" : "0", + "Dist::Zilla::Plugin::Authority" : "1.009", "Dist::Zilla::Plugin::AutoMetaResources" : "0", - "Dist::Zilla::Plugin::AutoPrereqs" : "0", + "Dist::Zilla::Plugin::AutoPrereqs" : "5.038", "Dist::Zilla::Plugin::Breaks" : "0", + "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : "0.004", "Dist::Zilla::Plugin::CheckIssues" : "0", "Dist::Zilla::Plugin::CheckPrereqsIndexed" : "0", "Dist::Zilla::Plugin::CheckSelfDependency" : "0", "Dist::Zilla::Plugin::CheckStrictVersion" : "0", "Dist::Zilla::Plugin::ConfirmRelease" : "0", "Dist::Zilla::Plugin::CopyFilesFromRelease" : "0", - "Dist::Zilla::Plugin::EOLTests" : "0", - "Dist::Zilla::Plugin::ExecDir" : "0", "Dist::Zilla::Plugin::FileFinder::ByName" : "0", - "Dist::Zilla::Plugin::GenerateFile::ShareDir" : "0", + "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : "0", "Dist::Zilla::Plugin::Git::Check" : "0", "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch" : "0.004", "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts" : "0", "Dist::Zilla::Plugin::Git::Commit" : "2.020", "Dist::Zilla::Plugin::Git::Contributors" : "0.004", - "Dist::Zilla::Plugin::Git::Describe" : "0", + "Dist::Zilla::Plugin::Git::Describe" : "0.004", "Dist::Zilla::Plugin::Git::GatherDir" : "2.016", - "Dist::Zilla::Plugin::Git::NextVersion" : "0", "Dist::Zilla::Plugin::Git::Push" : "0", "Dist::Zilla::Plugin::Git::Remote::Check" : "0", "Dist::Zilla::Plugin::Git::Tag" : "0", - "Dist::Zilla::Plugin::GitHub::Update" : "0", - "Dist::Zilla::Plugin::GithubMeta" : "0", - "Dist::Zilla::Plugin::InstallGuide" : "0", + "Dist::Zilla::Plugin::GitHub::Update" : "0.40", + "Dist::Zilla::Plugin::GithubMeta" : "0.54", + "Dist::Zilla::Plugin::InstallGuide" : "1.200005", "Dist::Zilla::Plugin::Keywords" : "0.004", - "Dist::Zilla::Plugin::License" : "0", + "Dist::Zilla::Plugin::License" : "5.038", "Dist::Zilla::Plugin::MakeMaker::Fallback" : "0.012", "Dist::Zilla::Plugin::Manifest" : "0", "Dist::Zilla::Plugin::MetaConfig" : "0", @@ -79,51 +77,56 @@ "Dist::Zilla::Plugin::MetaResources" : "0", "Dist::Zilla::Plugin::MetaTests" : "0", "Dist::Zilla::Plugin::MetaYAML" : "0", - "Dist::Zilla::Plugin::MinimumPerl" : "0", - "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback" : "0.005", - "Dist::Zilla::Plugin::MojibakeTests" : "0", - "Dist::Zilla::Plugin::NextRelease" : "4.300018", - "Dist::Zilla::Plugin::PkgVersion" : "5.010", - "Dist::Zilla::Plugin::PodCoverageTests" : "0", - "Dist::Zilla::Plugin::PodSyntaxTests" : "0", - "Dist::Zilla::Plugin::PodWeaver" : "0", + "Dist::Zilla::Plugin::MinimumPerl" : "1.006", + "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback" : "0.018", + "Dist::Zilla::Plugin::MojibakeTests" : "0.8", + "Dist::Zilla::Plugin::NextRelease" : "5.033", + "Dist::Zilla::Plugin::PodCoverageTests" : "5.040", + "Dist::Zilla::Plugin::PodSyntaxTests" : "5.040", + "Dist::Zilla::Plugin::PodWeaver" : "4.005", "Dist::Zilla::Plugin::Prereqs" : "0", - "Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0", + "Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0.006", "Dist::Zilla::Plugin::PromptIfStale" : "0", "Dist::Zilla::Plugin::Readme" : "0", "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180", - "Dist::Zilla::Plugin::Run::AfterBuild" : "0", - "Dist::Zilla::Plugin::Run::AfterRelease" : "0", - "Dist::Zilla::Plugin::RunExtraTests" : "0.019", - "Dist::Zilla::Plugin::ShareDir" : "0", - "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.008", + "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.004", + "Dist::Zilla::Plugin::Run::AfterBuild" : "0.038", + "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038", + "Dist::Zilla::Plugin::RunExtraTests" : "0.024", + "Dist::Zilla::Plugin::StaticInstall" : "0.005", + "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.012", "Dist::Zilla::Plugin::Test::ChangesHasContent" : "0", "Dist::Zilla::Plugin::Test::CheckBreaks" : "0", - "Dist::Zilla::Plugin::Test::CleanNamespaces" : "0", + "Dist::Zilla::Plugin::Test::CleanNamespaces" : "0.006", "Dist::Zilla::Plugin::Test::Compile" : "2.039", - "Dist::Zilla::Plugin::Test::Kwalitee" : "0", + "Dist::Zilla::Plugin::Test::EOL" : "0.17", + "Dist::Zilla::Plugin::Test::Kwalitee" : "2.10", "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000003", - "Dist::Zilla::Plugin::Test::NoTabs" : "0", - "Dist::Zilla::Plugin::Test::Pod::No404s" : "0", - "Dist::Zilla::Plugin::Test::PodSpelling" : "0", - "Dist::Zilla::Plugin::Test::Portability" : "0", - "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0", + "Dist::Zilla::Plugin::Test::NoTabs" : "0.08", + "Dist::Zilla::Plugin::Test::Portability" : "2.000007", + "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022", "Dist::Zilla::Plugin::TestRelease" : "0", "Dist::Zilla::Plugin::UploadToCPAN" : "0", - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.068", + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.094", "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Pod::Coverage::TrustPod" : "0", - "Pod::Weaver::Section::Contributors" : "0", + "Software::License::Perl_5" : "0", "Test::CPAN::Changes" : "0.19", "Test::CPAN::Meta" : "0", "Test::CleanNamespaces" : "0.15", + "Test::EOL" : "0", "Test::Kwalitee" : "1.21", - "Test::More" : "0.94", + "Test::Mojibake" : "0", + "Test::More" : "0.96", "Test::NoTabs" : "0", "Test::Pod" : "1.41", - "Test::Pod::Coverage" : "1.08" + "Test::Pod::Coverage" : "1.08", + "Test::Portability::Files" : "0", + "blib" : "1.01", + "strict" : "0", + "warnings" : "0" } }, "runtime" : { @@ -136,7 +139,7 @@ "Moose::Role" : "0", "Moose::Util" : "0", "namespace::autoclean" : "0", - "namespace::clean" : "0", + "namespace::clean" : "0.19", "perl" : "5.008001" } }, @@ -145,11 +148,11 @@ "CPAN::Meta" : "2.120900" }, "requires" : { - "CPAN::Meta::Check" : "0.007", + "CPAN::Meta::Check" : "0.011", "CPAN::Meta::Requirements" : "0", "Data::Dumper" : "0", - "ExtUtils::MakeMaker" : "0", "File::Spec" : "0", + "Module::Metadata" : "0", "Moose::Util::TypeConstraints" : "0", "MooseX::Role::WithOverloading" : "0", "Storable" : "0", @@ -159,6 +162,7 @@ "Test::Requires" : "0", "lib" : "0", "overload" : "0", + "perl" : "5.008001", "strict" : "0", "warnings" : "0" } @@ -167,23 +171,23 @@ "provides" : { "MooseX::Role::Parameterized" : { "file" : "lib/MooseX/Role/Parameterized.pm", - "version" : "1.08" + "version" : "1.09" }, "MooseX::Role::Parameterized::Meta::Role::Parameterized" : { "file" : "lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm", - "version" : "1.08" + "version" : "1.09" }, "MooseX::Role::Parameterized::Meta::Trait::Parameterizable" : { "file" : "lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm", - "version" : "1.08" + "version" : "1.09" }, "MooseX::Role::Parameterized::Meta::Trait::Parameterized" : { "file" : "lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm", - "version" : "1.08" + "version" : "1.09" }, "MooseX::Role::Parameterized::Parameters" : { "file" : "lib/MooseX/Role/Parameterized/Parameters.pm", - "version" : "1.08" + "version" : "1.09" } }, "release_status" : "stable", @@ -201,10 +205,10 @@ "x_IRC" : "irc://irc.perl.org/#moose", "x_MailingList" : "http://lists.perl.org/list/moose.html" }, - "version" : "1.08", + "version" : "1.09", "x_Dist_Zilla" : { "perl" : { - "version" : "5.021003" + "version" : 5.025003 }, "plugins" : [ { @@ -216,22 +220,24 @@ } }, "name" : "@Author::ETHER/bundle_plugins", - "version" : "5.020" + "version" : "6.007" }, { - "class" : "Dist::Zilla::Plugin::Git::NextVersion", + "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional", "config" : { - "Dist::Zilla::Plugin::Git::NextVersion" : { - "first_version" : "0.001", - "version_by_branch" : "0", - "version_regexp" : "(?^:^v([\\d._]+)(-TRIAL)?$)" + "Dist::Zilla::Plugin::RewriteVersion" : { + "add_tarball_name" : 0, + "finders" : [ + ":ExecFiles", + ":InstallModules" + ], + "global" : 1, + "skip_version_provider" : 0 }, - "Dist::Zilla::Role::Git::Repo" : { - "repo_root" : "." - } + "Dist::Zilla::Plugin::RewriteVersion::Transitional" : {} }, - "name" : "@Author::ETHER/Git::NextVersion", - "version" : "2.023" + "name" : "@Author::ETHER/RewriteVersion::Transitional", + "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", @@ -243,120 +249,128 @@ "Dist::Zilla::PluginBundle::Author::ETHER" ], "phase" : "build", + "run_under_travis" : 0, "skip" : [] } }, "name" : "@Author::ETHER/stale modules, build", - "version" : "0.024" + "version" : "0.051" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", "config" : { "Dist::Zilla::Plugin::PromptIfStale" : { - "check_all_plugins" : "1", - "check_all_prereqs" : "1", + "check_all_plugins" : 1, + "check_all_prereqs" : 1, "modules" : [], "phase" : "release", + "run_under_travis" : 0, "skip" : [] } }, "name" : "@Author::ETHER/stale modules, release", - "version" : "0.024" - }, - { - "class" : "Dist::Zilla::Plugin::ExecDir", - "name" : "@Author::ETHER/ExecDir", - "version" : "5.020" - }, - { - "class" : "Dist::Zilla::Plugin::ShareDir", - "name" : "@Author::ETHER/ShareDir", - "version" : "5.020" + "version" : "0.051" }, { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", - "version" : "5.020" - }, - { - "class" : "Dist::Zilla::Plugin::FileFinder::ByName", - "name" : "@Author::ETHER/ExtraTestFiles", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", "config" : { - "Dist::Zilla::Plugin::Git::GatherDir" : { - "include_untracked" : "0" + "Dist::Zilla::Plugin::GatherDir" : { + "exclude_filename" : [ + "CONTRIBUTING", + "LICENSE", + "README.pod" + ], + "exclude_match" : [], + "follow_symlinks" : 0, + "include_dotfiles" : 0, + "prefix" : "", + "prune_directory" : [], + "root" : "." }, - "Dist::Zilla::Role::Git::Repo" : { - "repo_root" : "." + "Dist::Zilla::Plugin::Git::GatherDir" : { + "include_untracked" : 0 } }, "name" : "@Author::ETHER/Git::GatherDir", - "version" : "2.023" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", - "version" : "5.020" - }, - { - "class" : "Dist::Zilla::Plugin::License", - "name" : "@Author::ETHER/License", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", - "version" : "5.020" + "version" : "6.007" + }, + { + "class" : "Dist::Zilla::Plugin::License", + "name" : "@Author::ETHER/License", + "version" : "6.007" }, { - "class" : "Dist::Zilla::Plugin::GenerateFile::ShareDir", + "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", "config" : { - "Dist::Zilla::Plugin::GenerateFile::ShareDir" : { + "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : { "destination_filename" : "CONTRIBUTING", "dist" : "Dist-Zilla-PluginBundle-Author-ETHER", "encoding" : "UTF-8", "has_xs" : 0, + "location" : "build", "source_filename" : "CONTRIBUTING" + }, + "Dist::Zilla::Role::RepoFileInjector" : { + "allow_overwrite" : 1, + "repo_root" : ".", + "version" : "0.007" } }, "name" : "@Author::ETHER/generate CONTRIBUTING", - "version" : "0.005" + "version" : "0.012" + }, + { + "class" : "Dist::Zilla::Plugin::InstallGuide", + "name" : "@Author::ETHER/InstallGuide", + "version" : "1.200007" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", "config" : { "Dist::Zilla::Plugin::Test::Compile" : { - "bail_out_on_fail" : "1", + "bail_out_on_fail" : 1, "fail_on_warning" : "author", - "fake_home" : "0", + "fake_home" : 0, "filename" : "xt/author/00-compile.t", "module_finder" : [ ":InstallModules" ], - "needs_display" : "0", + "needs_display" : 0, "phase" : "develop", "script_finder" : [ - ":ExecFiles", + ":PerlExecFiles", "@Author::ETHER/Examples" ], "skips" : [] } }, "name" : "@Author::ETHER/Test::Compile", - "version" : "2.046" + "version" : "2.054" }, { "class" : "Dist::Zilla::Plugin::Test::NoTabs", @@ -368,93 +382,115 @@ ":ExecFiles", "@Author::ETHER/Examples", ":TestFiles", - "@Author::ETHER/ExtraTestFiles" + ":ExtraTestFiles" ] } }, "name" : "@Author::ETHER/Test::NoTabs", - "version" : "0.09" + "version" : "0.15" }, { - "class" : "Dist::Zilla::Plugin::EOLTests", - "name" : "@Author::ETHER/EOLTests", - "version" : "0.02" + "class" : "Dist::Zilla::Plugin::Test::EOL", + "config" : { + "Dist::Zilla::Plugin::Test::EOL" : { + "filename" : "xt/author/eol.t", + "finder" : [ + ":ExecFiles", + ":ExtraTestFiles", + ":InstallModules", + ":TestFiles", + "@Author::ETHER/Examples" + ], + "trailing_whitespace" : 1 + } + }, + "name" : "@Author::ETHER/Test::EOL", + "version" : "0.19" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", + "config" : { + "Dist::Zilla::Plugin::Test::CPAN::Changes" : { + "changelog" : "Changes" + } + }, "name" : "@Author::ETHER/Test::CPAN::Changes", - "version" : "0.008" + "version" : "0.012" }, { "class" : "Dist::Zilla::Plugin::Test::ChangesHasContent", "name" : "@Author::ETHER/Test::ChangesHasContent", - "version" : "0.006" + "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "name" : "@Author::ETHER/Test::MinimumVersion", - "version" : "2.000005" + "version" : "2.000006" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "@Author::ETHER/PodSyntaxTests", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::PodCoverageTests", "name" : "@Author::ETHER/PodCoverageTests", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Test::Kwalitee", "config" : { "Dist::Zilla::Plugin::Test::Kwalitee" : { - "filename" : "xt/release/kwalitee.t", + "filename" : "xt/author/kwalitee.t", "skiptest" : [] } }, "name" : "@Author::ETHER/Test::Kwalitee", - "version" : "2.10" + "version" : "2.12" }, { "class" : "Dist::Zilla::Plugin::MojibakeTests", "name" : "@Author::ETHER/MojibakeTests", - "version" : "0.7" + "version" : "0.8" }, { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "@Author::ETHER/Test::ReportPrereqs", - "version" : "0.019" + "version" : "0.025" }, { "class" : "Dist::Zilla::Plugin::Test::Portability", "name" : "@Author::ETHER/Test::Portability", - "version" : "2.000005" + "version" : "2.000007" }, { - "class" : "Dist::Zilla::Plugin::Git::Describe", - "name" : "@Author::ETHER/Git::Describe", - "version" : "0.003" - }, - { - "class" : "Dist::Zilla::Plugin::PkgVersion", - "name" : "@Author::ETHER/PkgVersion", - "version" : "5.020" + "class" : "Dist::Zilla::Plugin::Test::CleanNamespaces", + "config" : { + "Dist::Zilla::Plugin::Test::CleanNamespaces" : { + "filename" : "xt/author/clean-namespaces.t", + "skips" : [] + } + }, + "name" : "@Author::ETHER/Test::CleanNamespaces", + "version" : "0.006" }, { - "class" : "Dist::Zilla::Plugin::Authority", - "name" : "@Author::ETHER/Authority", - "version" : "1.006" + "class" : "Dist::Zilla::Plugin::Git::Describe", + "name" : "@Author::ETHER/Git::Describe", + "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::PodWeaver", "config" : { "Dist::Zilla::Plugin::PodWeaver" : { + "config_plugins" : [ + "@Author::ETHER" + ], "finder" : [ ":InstallModules", ":ExecFiles" @@ -462,119 +498,149 @@ "plugins" : [ { "class" : "Pod::Weaver::Plugin::EnsurePod5", - "name" : "@CorePrep/EnsurePod5", - "version" : "4.006" + "name" : "@Author::ETHER/EnsurePod5", + "version" : "4.013" }, { "class" : "Pod::Weaver::Plugin::H1Nester", - "name" : "@CorePrep/H1Nester", - "version" : "4.006" + "name" : "@Author::ETHER/H1Nester", + "version" : "4.013" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", - "name" : "@Default/SingleEncoding", - "version" : "4.006" + "name" : "@Author::ETHER/SingleEncoding", + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Plugin::Transformer", + "name" : "@Author::ETHER/List", + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Plugin::Transformer", + "name" : "@Author::ETHER/Verbatim", + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Section::Region", + "name" : "@Author::ETHER/header", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Name", - "name" : "@Default/Name", - "version" : "4.006" + "name" : "@Author::ETHER/Name", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Version", - "name" : "@Default/Version", - "version" : "4.006" + "name" : "@Author::ETHER/Version", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Region", - "name" : "@Default/prelude", - "version" : "4.006" + "name" : "@Author::ETHER/prelude", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", - "version" : "4.006" + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", - "version" : "4.006" + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", - "version" : "4.006" + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", - "version" : "4.006" + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", - "version" : "4.006" + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", - "version" : "4.006" + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Section::Collect", + "name" : "TYPES", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Leftovers", - "name" : "@Default/Leftovers", - "version" : "4.006" + "name" : "@Author::ETHER/Leftovers", + "version" : "4.013" }, { "class" : "Pod::Weaver::Section::Region", - "name" : "@Default/postlude", - "version" : "4.006" + "name" : "@Author::ETHER/postlude", + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Section::GenerateSection", + "name" : "@Author::ETHER/generate SUPPORT", + "version" : "1.02" + }, + { + "class" : "Pod::Weaver::Section::AllowOverride", + "name" : "@Author::ETHER/allow override SUPPORT", + "version" : "0.05" }, { "class" : "Pod::Weaver::Section::Authors", - "name" : "@Default/Authors", - "version" : "4.006" + "name" : "@Author::ETHER/Authors", + "version" : "4.013" + }, + { + "class" : "Pod::Weaver::Section::Contributors", + "name" : "@Author::ETHER/Contributors", + "version" : "0.009" }, { "class" : "Pod::Weaver::Section::Legal", - "name" : "@Default/Legal", - "version" : "4.006" + "name" : "@Author::ETHER/Legal", + "version" : "4.013" }, { - "class" : "Pod::Weaver::Section::Contributors", - "name" : "Contributors", - "version" : "0.008" + "class" : "Pod::Weaver::Section::Region", + "name" : "@Author::ETHER/footer", + "version" : "4.013" } ] } }, "name" : "@Author::ETHER/PodWeaver", - "version" : "4.006" - }, - { - "class" : "Dist::Zilla::Plugin::NextRelease", - "name" : "@Author::ETHER/NextRelease", - "version" : "5.020" - }, - { - "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", - "name" : "@Author::ETHER/ReadmeAnyFromPod", - "version" : "0.142250" + "version" : "4.008" }, { "class" : "Dist::Zilla::Plugin::GithubMeta", "name" : "@Author::ETHER/GithubMeta", - "version" : "0.46" + "version" : "0.54" }, { "class" : "Dist::Zilla::Plugin::AutoMetaResources", "name" : "@Author::ETHER/AutoMetaResources", - "version" : "1.20" + "version" : "1.21" + }, + { + "class" : "Dist::Zilla::Plugin::Authority", + "name" : "@Author::ETHER/Authority", + "version" : "1.009" }, { "class" : "Dist::Zilla::Plugin::MetaNoIndex", "name" : "@Author::ETHER/MetaNoIndex", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", @@ -587,23 +653,29 @@ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "5.020" + "version" : "6.007" } - ] + ], + "include_underscores" : 0 }, "Dist::Zilla::Role::MetaProvider::Provider" : { - "inherit_missing" : "1", - "inherit_version" : "1", - "meta_noindex" : "1" + "$Dist::Zilla::Role::MetaProvider::Provider::VERSION" : "2.002003", + "inherit_missing" : 0, + "inherit_version" : 0, + "meta_noindex" : 1 + }, + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000033", + "version" : "0.004" } }, "name" : "@Author::ETHER/MetaProvides::Package", - "version" : "2.000004" + "version" : "2.004002" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::ETHER/MetaConfig", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Keywords", @@ -620,35 +692,22 @@ } }, "name" : "@Author::ETHER/Keywords", - "version" : "0.006" - }, - { - "class" : "Dist::Zilla::Plugin::Git::Contributors", - "config" : { - "Dist::Zilla::Plugin::Git::Contributors" : { - "include_authors" : "0", - "include_releaser" : "1", - "order_by" : "commits", - "paths" : [] - } - }, - "name" : "@Author::ETHER/Git::Contributors", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::ETHER/AutoPrereqs", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps", "name" : "@Author::ETHER/Prereqs::AuthorDeps", - "version" : "0.003" + "version" : "0.006" }, { "class" : "Dist::Zilla::Plugin::MinimumPerl", "name" : "@Author::ETHER/MinimumPerl", - "version" : "1.003" + "version" : "1.006" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -659,32 +718,81 @@ } }, "name" : "@Author::ETHER/pluginbundle_version", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::MakeMaker::Fallback", "config" : { + "Dist::Zilla::Plugin::MakeMaker::Awesome" : { + "version" : "0.38" + }, "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 9 } }, "name" : "@Author::ETHER/MakeMaker::Fallback", - "version" : "0.013" + "version" : "0.023" }, { "class" : "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback", "config" : { + "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback" : { + "mb_version" : "0.28", + "plugins" : [ + { + "class" : "Dist::Zilla::Plugin::ModuleBuild", + "config" : { + "Dist::Zilla::Role::TestRunner" : { + "default_jobs" : 9 + } + }, + "name" : "ModuleBuild, via ModuleBuildTiny::Fallback", + "version" : "6.007" + }, + { + "class" : "Dist::Zilla::Plugin::ModuleBuildTiny", + "config" : { + "Dist::Zilla::Role::TestRunner" : { + "default_jobs" : 9 + } + }, + "name" : "ModuleBuildTiny, via ModuleBuildTiny::Fallback", + "version" : "0.015" + } + ] + }, "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 9 } }, "name" : "@Author::ETHER/ModuleBuildTiny::Fallback", - "version" : "0.005" + "version" : "0.023" }, { - "class" : "Dist::Zilla::Plugin::InstallGuide", - "name" : "@Author::ETHER/InstallGuide", - "version" : "1.200003" + "class" : "Dist::Zilla::Plugin::Git::Contributors", + "config" : { + "Dist::Zilla::Plugin::Git::Contributors" : { + "include_authors" : 0, + "include_releaser" : 1, + "order_by" : "commits", + "paths" : [ + "." + ] + } + }, + "name" : "@Author::ETHER/Git::Contributors", + "version" : "0.023" + }, + { + "class" : "Dist::Zilla::Plugin::StaticInstall", + "config" : { + "Dist::Zilla::Plugin::StaticInstall" : { + "dry_run" : 0, + "mode" : "auto" + } + }, + "name" : "@Author::ETHER/StaticInstall", + "version" : "0.009" }, { "class" : "Dist::Zilla::Plugin::RunExtraTests", @@ -694,7 +802,7 @@ } }, "name" : "@Author::ETHER/RunExtraTests", - "version" : "0.022" + "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::CheckSelfDependency", @@ -703,22 +811,42 @@ "finder" : [ ":InstallModules" ] + }, + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000033", + "version" : "0.004" } }, "name" : "@Author::ETHER/CheckSelfDependency", - "version" : "0.007" + "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { + "fatal_errors" : 1, + "quiet" : 1, "run" : [ - "bash -c \"if [[ `dirname %d` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi; if [[ %d =~ ^%n-[.[:xdigit:]]+$ ]]; then rm -f .latest; ln -s %d .latest; fi\"" + "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" ] } }, - "name" : "@Author::ETHER/Run::AfterBuild", - "version" : "0.023" + "name" : "@Author::ETHER/.ackrc", + "version" : "0.043" + }, + { + "class" : "Dist::Zilla::Plugin::Run::AfterBuild", + "config" : { + "Dist::Zilla::Plugin::Run::Role::Runner" : { + "eval" : [ + "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" + ], + "fatal_errors" : 1, + "quiet" : 1 + } + }, + "name" : "@Author::ETHER/.latest", + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::CheckStrictVersion", @@ -741,7 +869,7 @@ } }, "name" : "@Author::ETHER/initial check", - "version" : "2.023" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts", @@ -751,7 +879,7 @@ } }, "name" : "@Author::ETHER/Git::CheckFor::MergeConflicts", - "version" : "0.011" + "version" : "0.013" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch", @@ -761,22 +889,22 @@ } }, "name" : "@Author::ETHER/Git::CheckFor::CorrectBranch", - "version" : "0.011" + "version" : "0.013" }, { "class" : "Dist::Zilla::Plugin::Git::Remote::Check", "name" : "@Author::ETHER/Git::Remote::Check", - "version" : "0.1.2" + "version" : "0.2.0" }, { "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed", "name" : "@Author::ETHER/CheckPrereqsIndexed", - "version" : "0.012" + "version" : "0.018" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::ETHER/TestRelease", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Git::Check", @@ -794,34 +922,45 @@ } }, "name" : "@Author::ETHER/after tests", - "version" : "2.023" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::CheckIssues", "name" : "@Author::ETHER/CheckIssues", - "version" : "0.002" + "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::ETHER/UploadToCPAN", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", + "config" : { + "Dist::Zilla::Plugin::CopyFilesFromRelease" : { + "filename" : [ + "CONTRIBUTING", + "Changes", + "INSTALL", + "LICENCE", + "LICENSE", + "ppport.h" + ], + "match" : [] + } + }, "name" : "@Author::ETHER/CopyFilesFromRelease", - "version" : "0.002" + "version" : "0.006" }, { - "class" : "Dist::Zilla::Plugin::Run::AfterRelease", + "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", "config" : { - "Dist::Zilla::Plugin::Run::Role::Runner" : { - "run" : [ - "rm -f README.md" - ] + "Dist::Zilla::Role::FileWatcher" : { + "version" : "0.006" } }, - "name" : "@Author::ETHER/remove old READMEs", - "version" : "0.023" + "name" : "@Author::ETHER/ReadmeAnyFromPod", + "version" : "0.161170" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", @@ -830,49 +969,105 @@ "add_files_in" : [ "." ], - "commit_msg" : "%N-%v%t%n%n%c", - "time_zone" : "local" + "commit_msg" : "%N-%v%t%n%n%c" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ + "CONTRIBUTING", "Changes", - "README.md", - "README.pod", "LICENSE", - "CONTRIBUTING" + "README.pod" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "repo_root" : "." + }, + "Dist::Zilla::Role::Git::StringFormatter" : { + "time_zone" : "local" } }, - "name" : "@Author::ETHER/Git::Commit", - "version" : "2.023" + "name" : "@Author::ETHER/release snapshot", + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "config" : { "Dist::Zilla::Plugin::Git::Tag" : { "branch" : null, + "changelog" : "Changes", "signed" : 0, - "tag" : "v1.08", - "tag_format" : "v%v%t", - "tag_message" : "v%v%t", - "time_zone" : "local" + "tag" : "v1.09", + "tag_format" : "v%v", + "tag_message" : "v%v%t" }, "Dist::Zilla::Role::Git::Repo" : { "repo_root" : "." + }, + "Dist::Zilla::Role::Git::StringFormatter" : { + "time_zone" : "local" } }, "name" : "@Author::ETHER/Git::Tag", - "version" : "2.023" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::GitHub::Update", + "config" : { + "Dist::Zilla::Plugin::GitHub::Update" : { + "metacpan" : 1 + } + }, "name" : "@Author::ETHER/GitHub::Update", - "version" : "0.38" + "version" : "0.42" + }, + { + "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", + "config" : { + "Dist::Zilla::Plugin::BumpVersionAfterRelease" : { + "finders" : [ + ":ExecFiles", + ":InstallModules" + ], + "global" : 1, + "munge_makefile_pl" : 1 + }, + "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : {} + }, + "name" : "@Author::ETHER/BumpVersionAfterRelease::Transitional", + "version" : "0.007" + }, + { + "class" : "Dist::Zilla::Plugin::NextRelease", + "name" : "@Author::ETHER/NextRelease", + "version" : "6.007" + }, + { + "class" : "Dist::Zilla::Plugin::Git::Commit", + "config" : { + "Dist::Zilla::Plugin::Git::Commit" : { + "add_files_in" : [], + "commit_msg" : "increment $VERSION after %v release" + }, + "Dist::Zilla::Role::Git::DirtyFiles" : { + "allow_dirty" : [ + "Changes" + ], + "allow_dirty_match" : [ + "(?^:^lib/.*\\.pm$)" + ], + "changelog" : "Changes" + }, + "Dist::Zilla::Role::Git::Repo" : { + "repo_root" : "." + }, + "Dist::Zilla::Role::Git::StringFormatter" : { + "time_zone" : "local" + } + }, + "name" : "@Author::ETHER/post-release commit", + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::Push", @@ -888,27 +1083,45 @@ } }, "name" : "@Author::ETHER/Git::Push", - "version" : "2.023" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { - "run" : "REDACTED" + "fatal_errors" : 0, + "quiet" : 0, + "run" : [ + "REDACTED" + ] } }, "name" : "@Author::ETHER/install release", - "version" : "0.023" + "version" : "0.043" + }, + { + "class" : "Dist::Zilla::Plugin::Run::AfterRelease", + "config" : { + "Dist::Zilla::Plugin::Run::Role::Runner" : { + "eval" : [ + "print \"release complete!\\xa\"" + ], + "fatal_errors" : 1, + "quiet" : 1 + } + }, + "name" : "@Author::ETHER/release complete", + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::ETHER/ConfirmRelease", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::MetaResources", "name" : "MetaResources", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::Breaks", @@ -917,74 +1130,81 @@ }, { "class" : "Dist::Zilla::Plugin::Test::CheckBreaks", - "name" : "Test::CheckBreaks", - "version" : "0.009" - }, - { - "class" : "Dist::Zilla::Plugin::Test::CleanNamespaces", "config" : { - "Dist::Zilla::Plugin::Test::CleanNamespaces" : { - "filename" : "xt/release/clean-namespaces.t", - "skips" : [ - "^MooseX::Role::Parameterized$" - ] + "Dist::Zilla::Plugin::Test::CheckBreaks" : { + "conflicts_module" : "Moose::Conflicts", + "no_forced_deps" : 0 + }, + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000033", + "version" : "0.004" } }, - "name" : "Test::CleanNamespaces", - "version" : "0.005" + "name" : "Test::CheckBreaks", + "version" : "0.016" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", - "version" : "5.020" + "version" : "6.007" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":ExtraTestFiles", + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", - "version" : "5.020" + "version" : "6.007" + }, + { + "class" : "Dist::Zilla::Plugin::FinderCode", + "name" : ":PerlExecFiles", + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", - "version" : "5.020" + "version" : "6.007" }, { "class" : "Dist::Zilla::Plugin::VerifyPhases", "name" : "@Author::ETHER/PHASE VERIFICATION", - "version" : "0.003" + "version" : "0.014" } ], "zilla" : { "class" : "Dist::Zilla::Dist::Builder", "config" : { - "is_trial" : "0" + "is_trial" : 0 }, - "version" : "5.020" + "version" : "6.007" } }, "x_authority" : "cpan:SARTAK", @@ -994,15 +1214,19 @@ "x_contributors" : [ "Karen Etheridge ", "Dave Rolsky ", - "Oliver Charles ", "Jesse Luehrs ", + "Oliver Charles ", "Yuval Kogman ", - "Florian Ragwitz ", "Robert 'phaylon' Sedlacek ", + "Florian Ragwitz ", + "Mark Fowler ", "Chris Weyl ", "Csson ", - "Todd Hepler ", - "Ricardo Signes " - ] + "Andy Jack ", + "Ricardo Signes ", + "Todd Hepler " + ], + "x_serialization_backend" : "Cpanel::JSON::XS version 3.0217", + "x_static_install" : 1 } diff -Nru libmoosex-role-parameterized-perl-1.08/META.yml libmoosex-role-parameterized-perl-1.09/META.yml --- libmoosex-role-parameterized-perl-1.08/META.yml 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/META.yml 2016-08-07 01:20:36.000000000 +0000 @@ -1,13 +1,13 @@ --- -abstract: 'roles with composition parameters' +abstract: 'Moose roles with composition parameters' author: - 'Shawn M Moore ' build_requires: - CPAN::Meta::Check: '0.007' + CPAN::Meta::Check: '0.011' CPAN::Meta::Requirements: '0' Data::Dumper: '0' - ExtUtils::MakeMaker: '0' File::Spec: '0' + Module::Metadata: '0' Moose::Util::TypeConstraints: '0' MooseX::Role::WithOverloading: '0' Storable: '0' @@ -17,13 +17,14 @@ Test::Requires: '0' lib: '0' overload: '0' + perl: '5.008001' strict: '0' warnings: '0' configure_requires: - ExtUtils::MakeMaker: '0' - Module::Build::Tiny: '0.037' + Module::Build::Tiny: '0.034' + perl: '5.008001' dynamic_config: 0 -generated_by: 'Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142060' +generated_by: 'Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.150009' keywords: - moose - extension @@ -43,19 +44,19 @@ provides: MooseX::Role::Parameterized: file: lib/MooseX/Role/Parameterized.pm - version: '1.08' + version: '1.09' MooseX::Role::Parameterized::Meta::Role::Parameterized: file: lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm - version: '1.08' + version: '1.09' MooseX::Role::Parameterized::Meta::Trait::Parameterizable: file: lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm - version: '1.08' + version: '1.09' MooseX::Role::Parameterized::Meta::Trait::Parameterized: file: lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm - version: '1.08' + version: '1.09' MooseX::Role::Parameterized::Parameters: file: lib/MooseX/Role/Parameterized/Parameters.pm - version: '1.08' + version: '1.09' requires: Carp: '0' Module::Runtime: '0' @@ -65,7 +66,7 @@ Moose::Role: '0' Moose::Util: '0' namespace::autoclean: '0' - namespace::clean: '0' + namespace::clean: '0.19' perl: '5.008001' resources: IRC: irc://irc.perl.org/#moose @@ -73,10 +74,10 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Role-Parameterized homepage: https://github.com/moose/MooseX-Role-Parameterized repository: https://github.com/moose/MooseX-Role-Parameterized.git -version: '1.08' +version: '1.09' x_Dist_Zilla: perl: - version: '5.021003' + version: '5.025003' plugins: - class: Dist::Zilla::Plugin::Prereqs @@ -85,18 +86,20 @@ phase: develop type: requires name: '@Author::ETHER/bundle_plugins' - version: '5.020' + version: '6.007' - - class: Dist::Zilla::Plugin::Git::NextVersion + class: Dist::Zilla::Plugin::RewriteVersion::Transitional config: - Dist::Zilla::Plugin::Git::NextVersion: - first_version: '0.001' - version_by_branch: '0' - version_regexp: (?^:^v([\d._]+)(-TRIAL)?$) - Dist::Zilla::Role::Git::Repo: - repo_root: . - name: '@Author::ETHER/Git::NextVersion' - version: '2.023' + Dist::Zilla::Plugin::RewriteVersion: + add_tarball_name: 0 + finders: + - ':ExecFiles' + - ':InstallModules' + global: 1 + skip_version_provider: 0 + Dist::Zilla::Plugin::RewriteVersion::Transitional: {} + name: '@Author::ETHER/RewriteVersion::Transitional' + version: '0.007' - class: Dist::Zilla::Plugin::PromptIfStale config: @@ -106,94 +109,102 @@ modules: - Dist::Zilla::PluginBundle::Author::ETHER phase: build + run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, build' - version: '0.024' + version: '0.051' - class: Dist::Zilla::Plugin::PromptIfStale config: Dist::Zilla::Plugin::PromptIfStale: - check_all_plugins: '1' - check_all_prereqs: '1' + check_all_plugins: 1 + check_all_prereqs: 1 modules: [] phase: release + run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, release' - version: '0.024' - - - class: Dist::Zilla::Plugin::ExecDir - name: '@Author::ETHER/ExecDir' - version: '5.020' - - - class: Dist::Zilla::Plugin::ShareDir - name: '@Author::ETHER/ShareDir' - version: '5.020' + version: '0.051' - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' - version: '5.020' - - - class: Dist::Zilla::Plugin::FileFinder::ByName - name: '@Author::ETHER/ExtraTestFiles' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Git::GatherDir config: + Dist::Zilla::Plugin::GatherDir: + exclude_filename: + - CONTRIBUTING + - LICENSE + - README.pod + exclude_match: [] + follow_symlinks: 0 + include_dotfiles: 0 + prefix: '' + prune_directory: [] + root: . Dist::Zilla::Plugin::Git::GatherDir: - include_untracked: '0' - Dist::Zilla::Role::Git::Repo: - repo_root: . + include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' - version: '2.023' + version: '2.039' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' - version: '5.020' - - - class: Dist::Zilla::Plugin::License - name: '@Author::ETHER/License' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' - version: '5.020' + version: '6.007' - - class: Dist::Zilla::Plugin::GenerateFile::ShareDir + class: Dist::Zilla::Plugin::License + name: '@Author::ETHER/License' + version: '6.007' + - + class: Dist::Zilla::Plugin::GenerateFile::FromShareDir config: - Dist::Zilla::Plugin::GenerateFile::ShareDir: + Dist::Zilla::Plugin::GenerateFile::FromShareDir: destination_filename: CONTRIBUTING dist: Dist-Zilla-PluginBundle-Author-ETHER encoding: UTF-8 has_xs: 0 + location: build source_filename: CONTRIBUTING + Dist::Zilla::Role::RepoFileInjector: + allow_overwrite: 1 + repo_root: . + version: '0.007' name: '@Author::ETHER/generate CONTRIBUTING' - version: '0.005' + version: '0.012' + - + class: Dist::Zilla::Plugin::InstallGuide + name: '@Author::ETHER/InstallGuide' + version: '1.200007' - class: Dist::Zilla::Plugin::Test::Compile config: Dist::Zilla::Plugin::Test::Compile: bail_out_on_fail: '1' fail_on_warning: author - fake_home: '0' + fake_home: 0 filename: xt/author/00-compile.t module_finder: - ':InstallModules' - needs_display: '0' + needs_display: 0 phase: develop script_finder: - - ':ExecFiles' + - ':PerlExecFiles' - '@Author::ETHER/Examples' skips: [] name: '@Author::ETHER/Test::Compile' - version: '2.046' + version: '2.054' - class: Dist::Zilla::Plugin::Test::NoTabs config: @@ -204,167 +215,206 @@ - ':ExecFiles' - '@Author::ETHER/Examples' - ':TestFiles' - - '@Author::ETHER/ExtraTestFiles' + - ':ExtraTestFiles' name: '@Author::ETHER/Test::NoTabs' - version: '0.09' + version: '0.15' - - class: Dist::Zilla::Plugin::EOLTests - name: '@Author::ETHER/EOLTests' - version: '0.02' + class: Dist::Zilla::Plugin::Test::EOL + config: + Dist::Zilla::Plugin::Test::EOL: + filename: xt/author/eol.t + finder: + - ':ExecFiles' + - ':ExtraTestFiles' + - ':InstallModules' + - ':TestFiles' + - '@Author::ETHER/Examples' + trailing_whitespace: 1 + name: '@Author::ETHER/Test::EOL' + version: '0.19' - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Test::CPAN::Changes + config: + Dist::Zilla::Plugin::Test::CPAN::Changes: + changelog: Changes name: '@Author::ETHER/Test::CPAN::Changes' - version: '0.008' + version: '0.012' - class: Dist::Zilla::Plugin::Test::ChangesHasContent name: '@Author::ETHER/Test::ChangesHasContent' - version: '0.006' + version: '0.010' - class: Dist::Zilla::Plugin::Test::MinimumVersion name: '@Author::ETHER/Test::MinimumVersion' - version: '2.000005' + version: '2.000006' - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::ETHER/PodSyntaxTests' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::PodCoverageTests name: '@Author::ETHER/PodCoverageTests' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Test::Kwalitee config: Dist::Zilla::Plugin::Test::Kwalitee: - filename: xt/release/kwalitee.t + filename: xt/author/kwalitee.t skiptest: [] name: '@Author::ETHER/Test::Kwalitee' - version: '2.10' + version: '2.12' - class: Dist::Zilla::Plugin::MojibakeTests name: '@Author::ETHER/MojibakeTests' - version: '0.7' + version: '0.8' - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: '@Author::ETHER/Test::ReportPrereqs' - version: '0.019' + version: '0.025' - class: Dist::Zilla::Plugin::Test::Portability name: '@Author::ETHER/Test::Portability' - version: '2.000005' + version: '2.000007' + - + class: Dist::Zilla::Plugin::Test::CleanNamespaces + config: + Dist::Zilla::Plugin::Test::CleanNamespaces: + filename: xt/author/clean-namespaces.t + skips: [] + name: '@Author::ETHER/Test::CleanNamespaces' + version: '0.006' - class: Dist::Zilla::Plugin::Git::Describe name: '@Author::ETHER/Git::Describe' - version: '0.003' - - - class: Dist::Zilla::Plugin::PkgVersion - name: '@Author::ETHER/PkgVersion' - version: '5.020' - - - class: Dist::Zilla::Plugin::Authority - name: '@Author::ETHER/Authority' - version: '1.006' + version: '0.007' - class: Dist::Zilla::Plugin::PodWeaver config: Dist::Zilla::Plugin::PodWeaver: + config_plugins: + - '@Author::ETHER' finder: - ':InstallModules' - ':ExecFiles' plugins: - class: Pod::Weaver::Plugin::EnsurePod5 - name: '@CorePrep/EnsurePod5' - version: '4.006' + name: '@Author::ETHER/EnsurePod5' + version: '4.013' - class: Pod::Weaver::Plugin::H1Nester - name: '@CorePrep/H1Nester' - version: '4.006' + name: '@Author::ETHER/H1Nester' + version: '4.013' - class: Pod::Weaver::Plugin::SingleEncoding - name: '@Default/SingleEncoding' - version: '4.006' + name: '@Author::ETHER/SingleEncoding' + version: '4.013' + - + class: Pod::Weaver::Plugin::Transformer + name: '@Author::ETHER/List' + version: '4.013' + - + class: Pod::Weaver::Plugin::Transformer + name: '@Author::ETHER/Verbatim' + version: '4.013' + - + class: Pod::Weaver::Section::Region + name: '@Author::ETHER/header' + version: '4.013' - class: Pod::Weaver::Section::Name - name: '@Default/Name' - version: '4.006' + name: '@Author::ETHER/Name' + version: '4.013' - class: Pod::Weaver::Section::Version - name: '@Default/Version' - version: '4.006' + name: '@Author::ETHER/Version' + version: '4.013' - class: Pod::Weaver::Section::Region - name: '@Default/prelude' - version: '4.006' + name: '@Author::ETHER/prelude' + version: '4.013' - class: Pod::Weaver::Section::Generic name: SYNOPSIS - version: '4.006' + version: '4.013' - class: Pod::Weaver::Section::Generic name: DESCRIPTION - version: '4.006' + version: '4.013' - class: Pod::Weaver::Section::Generic name: OVERVIEW - version: '4.006' + version: '4.013' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES - version: '4.006' + version: '4.013' - class: Pod::Weaver::Section::Collect name: METHODS - version: '4.006' + version: '4.013' - class: Pod::Weaver::Section::Collect name: FUNCTIONS - version: '4.006' + version: '4.013' + - + class: Pod::Weaver::Section::Collect + name: TYPES + version: '4.013' - class: Pod::Weaver::Section::Leftovers - name: '@Default/Leftovers' - version: '4.006' + name: '@Author::ETHER/Leftovers' + version: '4.013' - class: Pod::Weaver::Section::Region - name: '@Default/postlude' - version: '4.006' + name: '@Author::ETHER/postlude' + version: '4.013' + - + class: Pod::Weaver::Section::GenerateSection + name: '@Author::ETHER/generate SUPPORT' + version: '1.02' + - + class: Pod::Weaver::Section::AllowOverride + name: '@Author::ETHER/allow override SUPPORT' + version: '0.05' - class: Pod::Weaver::Section::Authors - name: '@Default/Authors' - version: '4.006' + name: '@Author::ETHER/Authors' + version: '4.013' + - + class: Pod::Weaver::Section::Contributors + name: '@Author::ETHER/Contributors' + version: '0.009' - class: Pod::Weaver::Section::Legal - name: '@Default/Legal' - version: '4.006' + name: '@Author::ETHER/Legal' + version: '4.013' - - class: Pod::Weaver::Section::Contributors - name: Contributors - version: '0.008' + class: Pod::Weaver::Section::Region + name: '@Author::ETHER/footer' + version: '4.013' name: '@Author::ETHER/PodWeaver' - version: '4.006' - - - class: Dist::Zilla::Plugin::NextRelease - name: '@Author::ETHER/NextRelease' - version: '5.020' - - - class: Dist::Zilla::Plugin::ReadmeAnyFromPod - name: '@Author::ETHER/ReadmeAnyFromPod' - version: '0.142250' + version: '4.008' - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::ETHER/GithubMeta' - version: '0.46' + version: '0.54' - class: Dist::Zilla::Plugin::AutoMetaResources name: '@Author::ETHER/AutoMetaResources' - version: '1.20' + version: '1.21' + - + class: Dist::Zilla::Plugin::Authority + name: '@Author::ETHER/Authority' + version: '1.009' - class: Dist::Zilla::Plugin::MetaNoIndex name: '@Author::ETHER/MetaNoIndex' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::MetaProvides::Package config: @@ -375,17 +425,22 @@ - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '5.020' + version: '6.007' + include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: - inherit_missing: '1' - inherit_version: '1' + $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002003' + inherit_missing: '0' + inherit_version: '0' meta_noindex: '1' + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000033' + version: '0.004' name: '@Author::ETHER/MetaProvides::Package' - version: '2.000004' + version: '2.004002' - class: Dist::Zilla::Plugin::MetaConfig name: '@Author::ETHER/MetaConfig' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Keywords config: @@ -398,29 +453,19 @@ - arguments - dynamic name: '@Author::ETHER/Keywords' - version: '0.006' - - - class: Dist::Zilla::Plugin::Git::Contributors - config: - Dist::Zilla::Plugin::Git::Contributors: - include_authors: '0' - include_releaser: '1' - order_by: commits - paths: [] - name: '@Author::ETHER/Git::Contributors' version: '0.007' - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::ETHER/AutoPrereqs' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Prereqs::AuthorDeps name: '@Author::ETHER/Prereqs::AuthorDeps' - version: '0.003' + version: '0.006' - class: Dist::Zilla::Plugin::MinimumPerl name: '@Author::ETHER/MinimumPerl' - version: '1.003' + version: '1.006' - class: Dist::Zilla::Plugin::Prereqs config: @@ -428,48 +473,97 @@ phase: develop type: recommends name: '@Author::ETHER/pluginbundle_version' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::MakeMaker::Fallback config: + Dist::Zilla::Plugin::MakeMaker::Awesome: + version: '0.38' Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/MakeMaker::Fallback' - version: '0.013' + version: '0.023' - class: Dist::Zilla::Plugin::ModuleBuildTiny::Fallback config: + Dist::Zilla::Plugin::ModuleBuildTiny::Fallback: + mb_version: '0.28' + plugins: + - + class: Dist::Zilla::Plugin::ModuleBuild + config: + Dist::Zilla::Role::TestRunner: + default_jobs: 9 + name: 'ModuleBuild, via ModuleBuildTiny::Fallback' + version: '6.007' + - + class: Dist::Zilla::Plugin::ModuleBuildTiny + config: + Dist::Zilla::Role::TestRunner: + default_jobs: 9 + name: 'ModuleBuildTiny, via ModuleBuildTiny::Fallback' + version: '0.015' Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/ModuleBuildTiny::Fallback' - version: '0.005' + version: '0.023' - - class: Dist::Zilla::Plugin::InstallGuide - name: '@Author::ETHER/InstallGuide' - version: '1.200003' + class: Dist::Zilla::Plugin::Git::Contributors + config: + Dist::Zilla::Plugin::Git::Contributors: + include_authors: 0 + include_releaser: 1 + order_by: commits + paths: + - . + name: '@Author::ETHER/Git::Contributors' + version: '0.023' + - + class: Dist::Zilla::Plugin::StaticInstall + config: + Dist::Zilla::Plugin::StaticInstall: + dry_run: 0 + mode: auto + name: '@Author::ETHER/StaticInstall' + version: '0.009' - class: Dist::Zilla::Plugin::RunExtraTests config: Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/RunExtraTests' - version: '0.022' + version: '0.029' - class: Dist::Zilla::Plugin::CheckSelfDependency config: Dist::Zilla::Plugin::CheckSelfDependency: finder: - ':InstallModules' + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000033' + version: '0.004' name: '@Author::ETHER/CheckSelfDependency' - version: '0.007' + version: '0.011' - class: Dist::Zilla::Plugin::Run::AfterBuild config: Dist::Zilla::Plugin::Run::Role::Runner: + fatal_errors: 1 + quiet: 1 run: - - "bash -c \"if [[ `dirname %d` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi; if [[ %d =~ ^%n-[.[:xdigit:]]+$ ]]; then rm -f .latest; ln -s %d .latest; fi\"" - name: '@Author::ETHER/Run::AfterBuild' - version: '0.023' + - "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" + name: '@Author::ETHER/.ackrc' + version: '0.043' + - + class: Dist::Zilla::Plugin::Run::AfterBuild + config: + Dist::Zilla::Plugin::Run::Role::Runner: + eval: + - "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" + fatal_errors: 1 + quiet: 1 + name: '@Author::ETHER/.latest' + version: '0.043' - class: Dist::Zilla::Plugin::CheckStrictVersion name: '@Author::ETHER/CheckStrictVersion' @@ -486,33 +580,33 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/initial check' - version: '2.023' + version: '2.039' - class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts config: Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/Git::CheckFor::MergeConflicts' - version: '0.011' + version: '0.013' - class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch config: Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/Git::CheckFor::CorrectBranch' - version: '0.011' + version: '0.013' - class: Dist::Zilla::Plugin::Git::Remote::Check name: '@Author::ETHER/Git::Remote::Check' - version: 0.1.2 + version: 0.2.0 - class: Dist::Zilla::Plugin::CheckPrereqsIndexed name: '@Author::ETHER/CheckPrereqsIndexed' - version: '0.012' + version: '0.018' - class: Dist::Zilla::Plugin::TestRelease name: '@Author::ETHER/TestRelease' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Git::Check config: @@ -525,27 +619,36 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/after tests' - version: '2.023' + version: '2.039' - class: Dist::Zilla::Plugin::CheckIssues name: '@Author::ETHER/CheckIssues' - version: '0.002' + version: '0.010' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::ETHER/UploadToCPAN' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::CopyFilesFromRelease + config: + Dist::Zilla::Plugin::CopyFilesFromRelease: + filename: + - CONTRIBUTING + - Changes + - INSTALL + - LICENCE + - LICENSE + - ppport.h + match: [] name: '@Author::ETHER/CopyFilesFromRelease' - version: '0.002' + version: '0.006' - - class: Dist::Zilla::Plugin::Run::AfterRelease + class: Dist::Zilla::Plugin::ReadmeAnyFromPod config: - Dist::Zilla::Plugin::Run::Role::Runner: - run: - - 'rm -f README.md' - name: '@Author::ETHER/remove old READMEs' - version: '0.023' + Dist::Zilla::Role::FileWatcher: + version: '0.006' + name: '@Author::ETHER/ReadmeAnyFromPod' + version: '0.161170' - class: Dist::Zilla::Plugin::Git::Commit config: @@ -553,38 +656,77 @@ add_files_in: - . commit_msg: '%N-%v%t%n%n%c' - time_zone: local Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: + - CONTRIBUTING - Changes - - README.md - - README.pod - LICENSE - - CONTRIBUTING + - README.pod allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: repo_root: . - name: '@Author::ETHER/Git::Commit' - version: '2.023' + Dist::Zilla::Role::Git::StringFormatter: + time_zone: local + name: '@Author::ETHER/release snapshot' + version: '2.039' - class: Dist::Zilla::Plugin::Git::Tag config: Dist::Zilla::Plugin::Git::Tag: branch: ~ + changelog: Changes signed: 0 - tag: v1.08 - tag_format: v%v%t + tag: v1.09 + tag_format: v%v tag_message: v%v%t - time_zone: local Dist::Zilla::Role::Git::Repo: repo_root: . + Dist::Zilla::Role::Git::StringFormatter: + time_zone: local name: '@Author::ETHER/Git::Tag' - version: '2.023' + version: '2.039' - class: Dist::Zilla::Plugin::GitHub::Update + config: + Dist::Zilla::Plugin::GitHub::Update: + metacpan: 1 name: '@Author::ETHER/GitHub::Update' - version: '0.38' + version: '0.42' + - + class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional + config: + Dist::Zilla::Plugin::BumpVersionAfterRelease: + finders: + - ':ExecFiles' + - ':InstallModules' + global: 1 + munge_makefile_pl: 1 + Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional: {} + name: '@Author::ETHER/BumpVersionAfterRelease::Transitional' + version: '0.007' + - + class: Dist::Zilla::Plugin::NextRelease + name: '@Author::ETHER/NextRelease' + version: '6.007' + - + class: Dist::Zilla::Plugin::Git::Commit + config: + Dist::Zilla::Plugin::Git::Commit: + add_files_in: [] + commit_msg: 'increment $VERSION after %v release' + Dist::Zilla::Role::Git::DirtyFiles: + allow_dirty: + - Changes + allow_dirty_match: + - (?^:^lib/.*\.pm$) + changelog: Changes + Dist::Zilla::Role::Git::Repo: + repo_root: . + Dist::Zilla::Role::Git::StringFormatter: + time_zone: local + name: '@Author::ETHER/post-release commit' + version: '2.039' - class: Dist::Zilla::Plugin::Git::Push config: @@ -595,92 +737,115 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/Git::Push' - version: '2.023' + version: '2.039' - class: Dist::Zilla::Plugin::Run::AfterRelease config: Dist::Zilla::Plugin::Run::Role::Runner: - run: REDACTED + fatal_errors: 0 + quiet: 0 + run: + - REDACTED name: '@Author::ETHER/install release' - version: '0.023' + version: '0.043' + - + class: Dist::Zilla::Plugin::Run::AfterRelease + config: + Dist::Zilla::Plugin::Run::Role::Runner: + eval: + - 'print "release complete!\xa"' + fatal_errors: 1 + quiet: 1 + name: '@Author::ETHER/release complete' + version: '0.043' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::ETHER/ConfirmRelease' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::MetaResources name: MetaResources - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::Breaks name: Breaks version: '0.003' - class: Dist::Zilla::Plugin::Test::CheckBreaks - name: Test::CheckBreaks - version: '0.009' - - - class: Dist::Zilla::Plugin::Test::CleanNamespaces config: - Dist::Zilla::Plugin::Test::CleanNamespaces: - filename: xt/release/clean-namespaces.t - skips: - - ^MooseX::Role::Parameterized$ - name: Test::CleanNamespaces - version: '0.005' + Dist::Zilla::Plugin::Test::CheckBreaks: + conflicts_module: Moose::Conflicts + no_forced_deps: 0 + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000033' + version: '0.004' + name: Test::CheckBreaks + version: '0.016' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' - version: '5.020' + version: '6.007' + - + class: Dist::Zilla::Plugin::FinderCode + name: ':ExtraTestFiles' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' - version: '5.020' + version: '6.007' + - + class: Dist::Zilla::Plugin::FinderCode + name: ':PerlExecFiles' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' - version: '5.020' + version: '6.007' - class: Dist::Zilla::Plugin::VerifyPhases name: '@Author::ETHER/PHASE VERIFICATION' - version: '0.003' + version: '0.014' zilla: class: Dist::Zilla::Dist::Builder config: is_trial: '0' - version: '5.020' + version: '6.007' x_authority: cpan:SARTAK x_breaks: MooseX::Storage: '<= 0.46' x_contributors: - 'Karen Etheridge ' - 'Dave Rolsky ' - - 'Oliver Charles ' - 'Jesse Luehrs ' + - 'Oliver Charles ' - 'Yuval Kogman ' - - 'Florian Ragwitz ' - "Robert 'phaylon' Sedlacek " + - 'Florian Ragwitz ' + - 'Mark Fowler ' - 'Chris Weyl ' - 'Csson ' - - 'Todd Hepler ' + - 'Andy Jack ' - 'Ricardo Signes ' + - 'Todd Hepler ' +x_serialization_backend: 'YAML::Tiny version 1.69' +x_static_install: 1 diff -Nru libmoosex-role-parameterized-perl-1.08/README libmoosex-role-parameterized-perl-1.09/README --- libmoosex-role-parameterized-perl-1.08/README 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/README 2016-08-07 01:20:36.000000000 +0000 @@ -1,9 +1,9 @@ This archive contains the distribution MooseX-Role-Parameterized, -version 1.08: +version 1.09: - roles with composition parameters + Moose roles with composition parameters This software is copyright (c) 2008 by Shawn M Moore. @@ -11,5 +11,5 @@ the same terms as the Perl 5 programming language system itself. -This README file was generated by Dist::Zilla::Plugin::Readme v5.020. +This README file was generated by Dist::Zilla::Plugin::Readme v6.007. diff -Nru libmoosex-role-parameterized-perl-1.08/t/003-apply.t libmoosex-role-parameterized-perl-1.09/t/003-apply.t --- libmoosex-role-parameterized-perl-1.08/t/003-apply.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/003-apply.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,13 +1,13 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; my %args; do { package MyRole::Storage; use MooseX::Role::Parameterized; - use Moose::Util::TypeConstraints; + use Moose::Util::TypeConstraints 'enum'; parameter format => ( isa => (enum ['Dumper', 'Storable']), diff -Nru libmoosex-role-parameterized-perl-1.08/t/004-with.t libmoosex-role-parameterized-perl-1.09/t/004-with.t --- libmoosex-role-parameterized-perl-1.08/t/004-with.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/004-with.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyItem::Role::Wearable; diff -Nru libmoosex-role-parameterized-perl-1.08/t/005-with-parameterized.t libmoosex-role-parameterized-perl-1.09/t/005-with-parameterized.t --- libmoosex-role-parameterized-perl-1.08/t/005-with-parameterized.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/005-with-parameterized.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyItem::Role::Wearable; diff -Nru libmoosex-role-parameterized-perl-1.08/t/006-requires.t libmoosex-role-parameterized-perl-1.09/t/006-requires.t --- libmoosex-role-parameterized-perl-1.08/t/006-requires.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/006-requires.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; do { diff -Nru libmoosex-role-parameterized-perl-1.08/t/007-excludes.t libmoosex-role-parameterized-perl-1.09/t/007-excludes.t --- libmoosex-role-parameterized-perl-1.08/t/007-excludes.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/007-excludes.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; do { diff -Nru libmoosex-role-parameterized-perl-1.08/t/008-method-modifers.t libmoosex-role-parameterized-perl-1.09/t/008-method-modifers.t --- libmoosex-role-parameterized-perl-1.08/t/008-method-modifers.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/008-method-modifers.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; my @calls; diff -Nru libmoosex-role-parameterized-perl-1.08/t/009-override-super.t libmoosex-role-parameterized-perl-1.09/t/009-override-super.t --- libmoosex-role-parameterized-perl-1.08/t/009-override-super.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/009-override-super.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; my @calls; diff -Nru libmoosex-role-parameterized-perl-1.08/t/00-report-prereqs.dd libmoosex-role-parameterized-perl-1.09/t/00-report-prereqs.dd --- libmoosex-role-parameterized-perl-1.08/t/00-report-prereqs.dd 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/00-report-prereqs.dd 2016-08-07 01:20:36.000000000 +0000 @@ -1,46 +1,44 @@ do { my $x = { 'configure' => { 'requires' => { - 'ExtUtils::MakeMaker' => '0', - 'Module::Build::Tiny' => '0.037' + 'Module::Build::Tiny' => '0.034', + 'perl' => '5.008001' } }, 'develop' => { 'recommends' => { - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.072' + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.117' }, 'requires' => { 'Dist::Zilla' => '5', - 'Dist::Zilla::Plugin::Authority' => '0', + 'Dist::Zilla::Plugin::Authority' => '1.009', 'Dist::Zilla::Plugin::AutoMetaResources' => '0', - 'Dist::Zilla::Plugin::AutoPrereqs' => '0', + 'Dist::Zilla::Plugin::AutoPrereqs' => '5.038', 'Dist::Zilla::Plugin::Breaks' => '0', + 'Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional' => '0.004', 'Dist::Zilla::Plugin::CheckIssues' => '0', 'Dist::Zilla::Plugin::CheckPrereqsIndexed' => '0', 'Dist::Zilla::Plugin::CheckSelfDependency' => '0', 'Dist::Zilla::Plugin::CheckStrictVersion' => '0', 'Dist::Zilla::Plugin::ConfirmRelease' => '0', 'Dist::Zilla::Plugin::CopyFilesFromRelease' => '0', - 'Dist::Zilla::Plugin::EOLTests' => '0', - 'Dist::Zilla::Plugin::ExecDir' => '0', 'Dist::Zilla::Plugin::FileFinder::ByName' => '0', - 'Dist::Zilla::Plugin::GenerateFile::ShareDir' => '0', + 'Dist::Zilla::Plugin::GenerateFile::FromShareDir' => '0', 'Dist::Zilla::Plugin::Git::Check' => '0', 'Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch' => '0.004', 'Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts' => '0', 'Dist::Zilla::Plugin::Git::Commit' => '2.020', 'Dist::Zilla::Plugin::Git::Contributors' => '0.004', - 'Dist::Zilla::Plugin::Git::Describe' => '0', + 'Dist::Zilla::Plugin::Git::Describe' => '0.004', 'Dist::Zilla::Plugin::Git::GatherDir' => '2.016', - 'Dist::Zilla::Plugin::Git::NextVersion' => '0', 'Dist::Zilla::Plugin::Git::Push' => '0', 'Dist::Zilla::Plugin::Git::Remote::Check' => '0', 'Dist::Zilla::Plugin::Git::Tag' => '0', - 'Dist::Zilla::Plugin::GitHub::Update' => '0', - 'Dist::Zilla::Plugin::GithubMeta' => '0', - 'Dist::Zilla::Plugin::InstallGuide' => '0', + 'Dist::Zilla::Plugin::GitHub::Update' => '0.40', + 'Dist::Zilla::Plugin::GithubMeta' => '0.54', + 'Dist::Zilla::Plugin::InstallGuide' => '1.200005', 'Dist::Zilla::Plugin::Keywords' => '0.004', - 'Dist::Zilla::Plugin::License' => '0', + 'Dist::Zilla::Plugin::License' => '5.038', 'Dist::Zilla::Plugin::MakeMaker::Fallback' => '0.012', 'Dist::Zilla::Plugin::Manifest' => '0', 'Dist::Zilla::Plugin::MetaConfig' => '0', @@ -50,51 +48,56 @@ 'Dist::Zilla::Plugin::MetaResources' => '0', 'Dist::Zilla::Plugin::MetaTests' => '0', 'Dist::Zilla::Plugin::MetaYAML' => '0', - 'Dist::Zilla::Plugin::MinimumPerl' => '0', - 'Dist::Zilla::Plugin::ModuleBuildTiny::Fallback' => '0.005', - 'Dist::Zilla::Plugin::MojibakeTests' => '0', - 'Dist::Zilla::Plugin::NextRelease' => '4.300018', - 'Dist::Zilla::Plugin::PkgVersion' => '5.010', - 'Dist::Zilla::Plugin::PodCoverageTests' => '0', - 'Dist::Zilla::Plugin::PodSyntaxTests' => '0', - 'Dist::Zilla::Plugin::PodWeaver' => '0', + 'Dist::Zilla::Plugin::MinimumPerl' => '1.006', + 'Dist::Zilla::Plugin::ModuleBuildTiny::Fallback' => '0.018', + 'Dist::Zilla::Plugin::MojibakeTests' => '0.8', + 'Dist::Zilla::Plugin::NextRelease' => '5.033', + 'Dist::Zilla::Plugin::PodCoverageTests' => '5.040', + 'Dist::Zilla::Plugin::PodSyntaxTests' => '5.040', + 'Dist::Zilla::Plugin::PodWeaver' => '4.005', 'Dist::Zilla::Plugin::Prereqs' => '0', - 'Dist::Zilla::Plugin::Prereqs::AuthorDeps' => '0', + 'Dist::Zilla::Plugin::Prereqs::AuthorDeps' => '0.006', 'Dist::Zilla::Plugin::PromptIfStale' => '0', 'Dist::Zilla::Plugin::Readme' => '0', 'Dist::Zilla::Plugin::ReadmeAnyFromPod' => '0.142180', - 'Dist::Zilla::Plugin::Run::AfterBuild' => '0', - 'Dist::Zilla::Plugin::Run::AfterRelease' => '0', - 'Dist::Zilla::Plugin::RunExtraTests' => '0.019', - 'Dist::Zilla::Plugin::ShareDir' => '0', - 'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0.008', + 'Dist::Zilla::Plugin::RewriteVersion::Transitional' => '0.004', + 'Dist::Zilla::Plugin::Run::AfterBuild' => '0.038', + 'Dist::Zilla::Plugin::Run::AfterRelease' => '0.038', + 'Dist::Zilla::Plugin::RunExtraTests' => '0.024', + 'Dist::Zilla::Plugin::StaticInstall' => '0.005', + 'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0.012', 'Dist::Zilla::Plugin::Test::ChangesHasContent' => '0', 'Dist::Zilla::Plugin::Test::CheckBreaks' => '0', - 'Dist::Zilla::Plugin::Test::CleanNamespaces' => '0', + 'Dist::Zilla::Plugin::Test::CleanNamespaces' => '0.006', 'Dist::Zilla::Plugin::Test::Compile' => '2.039', - 'Dist::Zilla::Plugin::Test::Kwalitee' => '0', + 'Dist::Zilla::Plugin::Test::EOL' => '0.17', + 'Dist::Zilla::Plugin::Test::Kwalitee' => '2.10', 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000003', - 'Dist::Zilla::Plugin::Test::NoTabs' => '0', - 'Dist::Zilla::Plugin::Test::Pod::No404s' => '0', - 'Dist::Zilla::Plugin::Test::PodSpelling' => '0', - 'Dist::Zilla::Plugin::Test::Portability' => '0', - 'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0', + 'Dist::Zilla::Plugin::Test::NoTabs' => '0.08', + 'Dist::Zilla::Plugin::Test::Portability' => '2.000007', + 'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0.022', 'Dist::Zilla::Plugin::TestRelease' => '0', 'Dist::Zilla::Plugin::UploadToCPAN' => '0', - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.068', + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.094', 'File::Spec' => '0', 'IO::Handle' => '0', 'IPC::Open3' => '0', 'Pod::Coverage::TrustPod' => '0', - 'Pod::Weaver::Section::Contributors' => '0', + 'Software::License::Perl_5' => '0', 'Test::CPAN::Changes' => '0.19', 'Test::CPAN::Meta' => '0', 'Test::CleanNamespaces' => '0.15', + 'Test::EOL' => '0', 'Test::Kwalitee' => '1.21', - 'Test::More' => '0.94', + 'Test::Mojibake' => '0', + 'Test::More' => '0.96', 'Test::NoTabs' => '0', 'Test::Pod' => '1.41', - 'Test::Pod::Coverage' => '1.08' + 'Test::Pod::Coverage' => '1.08', + 'Test::Portability::Files' => '0', + 'blib' => '1.01', + 'strict' => '0', + 'warnings' => '0' } }, 'runtime' => { @@ -107,7 +110,7 @@ 'Moose::Role' => '0', 'Moose::Util' => '0', 'namespace::autoclean' => '0', - 'namespace::clean' => '0', + 'namespace::clean' => '0.19', 'perl' => '5.008001' } }, @@ -116,11 +119,11 @@ 'CPAN::Meta' => '2.120900' }, 'requires' => { - 'CPAN::Meta::Check' => '0.007', + 'CPAN::Meta::Check' => '0.011', 'CPAN::Meta::Requirements' => '0', 'Data::Dumper' => '0', - 'ExtUtils::MakeMaker' => '0', 'File::Spec' => '0', + 'Module::Metadata' => '0', 'Moose::Util::TypeConstraints' => '0', 'MooseX::Role::WithOverloading' => '0', 'Storable' => '0', @@ -130,6 +133,7 @@ 'Test::Requires' => '0', 'lib' => '0', 'overload' => '0', + 'perl' => '5.008001', 'strict' => '0', 'warnings' => '0' } diff -Nru libmoosex-role-parameterized-perl-1.08/t/00-report-prereqs.t libmoosex-role-parameterized-perl-1.09/t/00-report-prereqs.t --- libmoosex-role-parameterized-perl-1.08/t/00-report-prereqs.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/00-report-prereqs.t 2016-08-07 01:20:36.000000000 +0000 @@ -3,11 +3,11 @@ use strict; use warnings; -# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.019 +# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.025 use Test::More tests => 1; -use ExtUtils::MakeMaker; +use Module::Metadata; use File::Spec; # from $version::LAX @@ -60,6 +60,7 @@ } my @include = qw( + Pod::Coverage Dist::CheckConflicts ); @@ -78,10 +79,10 @@ # Add dynamic prereqs to the included modules list (if we can) my ($source) = grep { -f } 'MYMETA.json', 'MYMETA.yml'; -if ( $source && $HAS_CPAN_META ) { - if ( my $meta = eval { CPAN::Meta->load_file($source) } ) { - $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs); - } +if ( $source && $HAS_CPAN_META + && (my $meta = eval { CPAN::Meta->load_file($source) } ) +) { + $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs); } else { $source = 'static metadata'; @@ -122,7 +123,7 @@ my $req_string = $want eq 'any' ? 'any version required' : "version '$want' required"; if ($prefix) { - my $have = MM->parse_version( File::Spec->catfile($prefix, $file) ); + my $have = Module::Metadata->new_from_file( File::Spec->catfile($prefix, $file) )->version; $have = "undef" unless defined $have; push @reports, [$mod, $want, $have]; @@ -150,9 +151,16 @@ my $ml = _max( map { length $_->[0] } @reports ); my $wl = _max( map { length $_->[1] } @reports ); my $hl = _max( map { length $_->[2] } @reports ); - splice @reports, 1, 0, ["-" x $ml, "-" x $wl, "-" x $hl]; - push @full_reports, map { sprintf(" %*s %*s %*s\n", -$ml, $_->[0], $wl, $_->[1], $hl, $_->[2]) } @reports; + if ($type eq 'modules') { + splice @reports, 1, 0, ["-" x $ml, "", "-" x $hl]; + push @full_reports, map { sprintf(" %*s %*s\n", -$ml, $_->[0], $hl, $_->[2]) } @reports; + } + else { + splice @reports, 1, 0, ["-" x $ml, "-" x $wl, "-" x $hl]; + push @full_reports, map { sprintf(" %*s %*s %*s\n", -$ml, $_->[0], $wl, $_->[1], $hl, $_->[2]) } @reports; + } + push @full_reports, "\n"; } } diff -Nru libmoosex-role-parameterized-perl-1.08/t/010-blessed-confess.t libmoosex-role-parameterized-perl-1.09/t/010-blessed-confess.t --- libmoosex-role-parameterized-perl-1.08/t/010-blessed-confess.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/010-blessed-confess.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyRole; diff -Nru libmoosex-role-parameterized-perl-1.08/t/011-reference-parameters.t libmoosex-role-parameterized-perl-1.09/t/011-reference-parameters.t --- libmoosex-role-parameterized-perl-1.08/t/011-reference-parameters.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/011-reference-parameters.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyRole::Delegator; diff -Nru libmoosex-role-parameterized-perl-1.08/t/012-rename-role.t libmoosex-role-parameterized-perl-1.09/t/012-rename-role.t --- libmoosex-role-parameterized-perl-1.08/t/012-rename-role.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/012-rename-role.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyRole; diff -Nru libmoosex-role-parameterized-perl-1.08/t/013-does.t libmoosex-role-parameterized-perl-1.09/t/013-does.t --- libmoosex-role-parameterized-perl-1.08/t/013-does.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/013-does.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Moose; { diff -Nru libmoosex-role-parameterized-perl-1.08/t/014-compose-parameterizable.t libmoosex-role-parameterized-perl-1.09/t/014-compose-parameterizable.t --- libmoosex-role-parameterized-perl-1.08/t/014-compose-parameterizable.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/014-compose-parameterizable.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyRole; diff -Nru libmoosex-role-parameterized-perl-1.08/t/015-compose-keywords.t libmoosex-role-parameterized-perl-1.09/t/015-compose-keywords.t --- libmoosex-role-parameterized-perl-1.08/t/015-compose-keywords.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/015-compose-keywords.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package OtherRole; diff -Nru libmoosex-role-parameterized-perl-1.08/t/016-trait.t libmoosex-role-parameterized-perl-1.09/t/016-trait.t --- libmoosex-role-parameterized-perl-1.08/t/016-trait.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/016-trait.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/env perl use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyTrait::Label; diff -Nru libmoosex-role-parameterized-perl-1.08/t/017-current_metaclass.t libmoosex-role-parameterized-perl-1.09/t/017-current_metaclass.t --- libmoosex-role-parameterized-perl-1.08/t/017-current_metaclass.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/017-current_metaclass.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package Labeled; diff -Nru libmoosex-role-parameterized-perl-1.08/t/018-parameter-roles.t libmoosex-role-parameterized-perl-1.09/t/018-parameter-roles.t --- libmoosex-role-parameterized-perl-1.08/t/018-parameter-roles.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/018-parameter-roles.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,7 +1,6 @@ use strict; use warnings; -use Test::More skip_all => "Not implemented yet"; -#use Test::More; +use Test::More 0.88 skip_all => "Not implemented yet"; { package Test::Role; diff -Nru libmoosex-role-parameterized-perl-1.08/t/020-metaclass-reinitialize.t libmoosex-role-parameterized-perl-1.09/t/020-metaclass-reinitialize.t --- libmoosex-role-parameterized-perl-1.08/t/020-metaclass-reinitialize.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/020-metaclass-reinitialize.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; BEGIN { require Moose; diff -Nru libmoosex-role-parameterized-perl-1.08/t/021-parameter-trait.t libmoosex-role-parameterized-perl-1.09/t/021-parameter-trait.t --- libmoosex-role-parameterized-perl-1.08/t/021-parameter-trait.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/021-parameter-trait.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyTrait::Labeled; diff -Nru libmoosex-role-parameterized-perl-1.08/t/022-export-p-trait.t libmoosex-role-parameterized-perl-1.09/t/022-export-p-trait.t --- libmoosex-role-parameterized-perl-1.08/t/022-export-p-trait.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/022-export-p-trait.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; BEGIN { package MyTrait::Label; diff -Nru libmoosex-role-parameterized-perl-1.08/t/024-named-anonymous.t libmoosex-role-parameterized-perl-1.09/t/024-named-anonymous.t --- libmoosex-role-parameterized-perl-1.08/t/024-named-anonymous.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/024-named-anonymous.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,49 @@ +use strict; +use warnings; +use Test::More; + +{ + package Test::Role; + use MooseX::Role::Parameterized; + + parameter default_beer => ( + isa => "Str", + is => "ro", + required => 1, + ); + + role { + my $p = shift; + + has beer => ( + isa => "Str", + is => "ro", + default => $p->default_beer, + ); + }; + + package Test::Class; + use Moose; + + with 'Test::Role' => { default_beer => "O'Doul's" }; + + package Test::Class2; + use Moose; + + with 'Test::Role' => { default_beer => "Root" }; + +} + +like( + ($_->new->meta->calculate_all_roles)[0]->name, + qr/\ATest::Role::__ANON__::SERIAL::[0-9]+\z/, + "Right looking role name for $_", +) for qw( Test::Class Test::Class2 ); + +isnt( + (Test::Class->new->meta->calculate_all_roles)[0]->name, + (Test::Class2->new->meta->calculate_all_roles)[0]->name, + 'role names are unique' +); + +done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/t/100-erroneous-keywords.t libmoosex-role-parameterized-perl-1.09/t/100-erroneous-keywords.t --- libmoosex-role-parameterized-perl-1.08/t/100-erroneous-keywords.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/100-erroneous-keywords.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; do { diff -Nru libmoosex-role-parameterized-perl-1.08/t/101-alias-excludes.t libmoosex-role-parameterized-perl-1.09/t/101-alias-excludes.t --- libmoosex-role-parameterized-perl-1.08/t/101-alias-excludes.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/101-alias-excludes.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; do { diff -Nru libmoosex-role-parameterized-perl-1.08/t/102-nested.t libmoosex-role-parameterized-perl-1.09/t/102-nested.t --- libmoosex-role-parameterized-perl-1.08/t/102-nested.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/102-nested.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; use lib 't/lib'; diff -Nru libmoosex-role-parameterized-perl-1.08/t/150-composite-role-application.t libmoosex-role-parameterized-perl-1.09/t/150-composite-role-application.t --- libmoosex-role-parameterized-perl-1.08/t/150-composite-role-application.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/150-composite-role-application.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; do { package MyCompositeRoleA; diff -Nru libmoosex-role-parameterized-perl-1.08/t/200-cooperative.t libmoosex-role-parameterized-perl-1.09/t/200-cooperative.t --- libmoosex-role-parameterized-perl-1.08/t/200-cooperative.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/200-cooperative.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Requires { 'MooseX::Role::WithOverloading' => '0.14', diff -Nru libmoosex-role-parameterized-perl-1.08/t/zzz-check-breaks.t libmoosex-role-parameterized-perl-1.09/t/zzz-check-breaks.t --- libmoosex-role-parameterized-perl-1.08/t/zzz-check-breaks.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/t/zzz-check-breaks.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,9 +1,9 @@ use strict; use warnings; -# this test was generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.009 +# this test was generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.016 -use Test::More; +use Test::More tests => 1; SKIP: { eval 'require Moose::Conflicts; Moose::Conflicts->check_conflicts'; @@ -13,16 +13,18 @@ pass 'conflicts checked via Moose::Conflicts'; } +# this data duplicates x_breaks in META.json my $breaks = { "MooseX::Storage" => "<= 0.46" }; use CPAN::Meta::Requirements; +use CPAN::Meta::Check 0.011; + my $reqs = CPAN::Meta::Requirements->new; $reqs->add_string_requirement($_, $breaks->{$_}) foreach keys %$breaks; -use CPAN::Meta::Check 0.007 'check_requirements'; -our $result = check_requirements($reqs, 'conflicts'); +our $result = CPAN::Meta::Check::check_requirements($reqs, 'conflicts'); if (my @breaks = grep { defined $result->{$_} } keys %$result) { @@ -30,6 +32,3 @@ diag "$result->{$_}" for sort @breaks; diag "\n", 'You should now update these modules!'; } - - -done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/weaver.ini libmoosex-role-parameterized-perl-1.09/weaver.ini --- libmoosex-role-parameterized-perl-1.08/weaver.ini 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/weaver.ini 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -[@Default] - -[Contributors] diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/00-compile.t libmoosex-role-parameterized-perl-1.09/xt/author/00-compile.t --- libmoosex-role-parameterized-perl-1.08/xt/author/00-compile.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/00-compile.t 2016-08-07 01:20:36.000000000 +0000 @@ -2,11 +2,11 @@ use strict; use warnings; -# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.046 - -use Test::More 0.94 tests => 5 + ($ENV{AUTHOR_TESTING} ? 1 : 0); +# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.054 +use Test::More 0.94; +plan tests => 6; my @module_files = ( 'MooseX/Role/Parameterized.pm', @@ -40,6 +40,9 @@ waitpid($pid, 0); is($?, 0, "$lib loaded ok"); + shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/ + and not eval { require blib; blib->VERSION('1.01') }; + if (@_warnings) { warn @_warnings; @@ -49,6 +52,7 @@ -is(scalar(@warnings), 0, 'no warnings found') or diag 'got warnings: ', explain \@warnings if $ENV{AUTHOR_TESTING}; +is(scalar(@warnings), 0, 'no warnings found') + or diag 'got warnings: ', explain(\@warnings); BAIL_OUT("Compilation problems") if !Test::More->builder->is_passing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/clean-namespaces.t libmoosex-role-parameterized-perl-1.09/xt/author/clean-namespaces.t --- libmoosex-role-parameterized-perl-1.08/xt/author/clean-namespaces.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/clean-namespaces.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,11 @@ +use strict; +use warnings; + +# this test was generated with Dist::Zilla::Plugin::Test::CleanNamespaces 0.006 + +use Test::More 0.94; +use Test::CleanNamespaces 0.15; + +subtest all_namespaces_clean => sub { all_namespaces_clean() }; + +done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/eol.t libmoosex-role-parameterized-perl-1.09/xt/author/eol.t --- libmoosex-role-parameterized-perl-1.08/xt/author/eol.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/eol.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,65 @@ +use strict; +use warnings; + +# this test was generated with Dist::Zilla::Plugin::Test::EOL 0.19 + +use Test::More 0.88; +use Test::EOL; + +my @files = ( + 'lib/MooseX/Role/Parameterized.pm', + 'lib/MooseX/Role/Parameterized/Extending.pod', + 'lib/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm', + 'lib/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm', + 'lib/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm', + 'lib/MooseX/Role/Parameterized/Parameters.pm', + 'lib/MooseX/Role/Parameterized/Tutorial.pod', + 't/00-report-prereqs.dd', + 't/00-report-prereqs.t', + 't/001-parameters.t', + 't/002-role-block.t', + 't/003-apply.t', + 't/004-with.t', + 't/005-with-parameterized.t', + 't/006-requires.t', + 't/007-excludes.t', + 't/008-method-modifers.t', + 't/009-override-super.t', + 't/010-blessed-confess.t', + 't/011-reference-parameters.t', + 't/012-rename-role.t', + 't/013-does.t', + 't/014-compose-parameterizable.t', + 't/015-compose-keywords.t', + 't/016-trait.t', + 't/017-current_metaclass.t', + 't/018-parameter-roles.t', + 't/020-metaclass-reinitialize.t', + 't/021-parameter-trait.t', + 't/022-export-p-trait.t', + 't/023-metarole-import-params.t', + 't/024-named-anonymous.t', + 't/100-erroneous-keywords.t', + 't/101-alias-excludes.t', + 't/102-nested.t', + 't/150-composite-role-application.t', + 't/200-cooperative.t', + 't/lib/Bar.pm', + 't/zzz-check-breaks.t', + 'xt/author/00-compile.t', + 'xt/author/clean-namespaces.t', + 'xt/author/eol.t', + 'xt/author/kwalitee.t', + 'xt/author/mojibake.t', + 'xt/author/no-tabs.t', + 'xt/author/pod-coverage.t', + 'xt/author/pod-syntax.t', + 'xt/author/portability.t', + 'xt/release/changes_has_content.t', + 'xt/release/cpan-changes.t', + 'xt/release/distmeta.t', + 'xt/release/minimum-version.t' +); + +eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files; +done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/kwalitee.t libmoosex-role-parameterized-perl-1.09/xt/author/kwalitee.t --- libmoosex-role-parameterized-perl-1.08/xt/author/kwalitee.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/kwalitee.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,9 @@ +# this test was generated with Dist::Zilla::Plugin::Test::Kwalitee 2.12 +use strict; +use warnings; +use Test::More 0.88; +use Test::Kwalitee 1.21 'kwalitee_ok'; + +kwalitee_ok(); + +done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/mojibake.t libmoosex-role-parameterized-perl-1.09/xt/author/mojibake.t --- libmoosex-role-parameterized-perl-1.08/xt/author/mojibake.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/mojibake.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,9 @@ +#!perl + +use strict; +use warnings qw(all); + +use Test::More; +use Test::Mojibake; + +all_files_encoding_ok(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/no-tabs.t libmoosex-role-parameterized-perl-1.09/xt/author/no-tabs.t --- libmoosex-role-parameterized-perl-1.08/xt/author/no-tabs.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/no-tabs.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -# this test was generated with Dist::Zilla::Plugin::Test::NoTabs 0.09 +# this test was generated with Dist::Zilla::Plugin::Test::NoTabs 0.15 use Test::More 0.88; use Test::NoTabs; @@ -38,6 +38,7 @@ 't/021-parameter-trait.t', 't/022-export-p-trait.t', 't/023-metarole-import-params.t', + 't/024-named-anonymous.t', 't/100-erroneous-keywords.t', 't/101-alias-excludes.t', 't/102-nested.t', @@ -46,18 +47,18 @@ 't/lib/Bar.pm', 't/zzz-check-breaks.t', 'xt/author/00-compile.t', + 'xt/author/clean-namespaces.t', + 'xt/author/eol.t', + 'xt/author/kwalitee.t', + 'xt/author/mojibake.t', 'xt/author/no-tabs.t', + 'xt/author/pod-coverage.t', + 'xt/author/pod-syntax.t', + 'xt/author/portability.t', 'xt/release/changes_has_content.t', - 'xt/release/clean-namespaces.t', 'xt/release/cpan-changes.t', 'xt/release/distmeta.t', - 'xt/release/eol.t', - 'xt/release/kwalitee.t', - 'xt/release/minimum-version.t', - 'xt/release/mojibake.t', - 'xt/release/pod-coverage.t', - 'xt/release/pod-syntax.t', - 'xt/release/portability.t' + 'xt/release/minimum-version.t' ); notabs_ok($_) foreach @files; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/pod-coverage.t libmoosex-role-parameterized-perl-1.09/xt/author/pod-coverage.t --- libmoosex-role-parameterized-perl-1.08/xt/author/pod-coverage.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/pod-coverage.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,7 @@ +#!perl +# This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests. + +use Test::Pod::Coverage 1.08; +use Pod::Coverage::TrustPod; + +all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' }); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/pod-syntax.t libmoosex-role-parameterized-perl-1.09/xt/author/pod-syntax.t --- libmoosex-role-parameterized-perl-1.08/xt/author/pod-syntax.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/pod-syntax.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,7 @@ +#!perl +# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. +use strict; use warnings; +use Test::More; +use Test::Pod 1.41; + +all_pod_files_ok(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/author/portability.t libmoosex-role-parameterized-perl-1.09/xt/author/portability.t --- libmoosex-role-parameterized-perl-1.08/xt/author/portability.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/author/portability.t 2016-08-07 01:20:36.000000000 +0000 @@ -0,0 +1,12 @@ +#!perl + +use strict; +use warnings; + +use Test::More; + +eval 'use Test::Portability::Files'; +plan skip_all => 'Test::Portability::Files required for testing portability' + if $@; + +run_tests(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/changes_has_content.t libmoosex-role-parameterized-perl-1.09/xt/release/changes_has_content.t --- libmoosex-role-parameterized-perl-1.08/xt/release/changes_has_content.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/changes_has_content.t 2016-08-07 01:20:36.000000000 +0000 @@ -4,7 +4,7 @@ note 'Checking Changes'; my $changes_file = 'Changes'; -my $newver = '1.08'; +my $newver = '1.09'; my $trial_token = '-TRIAL'; SKIP: { diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/clean-namespaces.t libmoosex-role-parameterized-perl-1.09/xt/release/clean-namespaces.t --- libmoosex-role-parameterized-perl-1.08/xt/release/clean-namespaces.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/clean-namespaces.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -use strict; -use warnings; - -# this test was generated with Dist::Zilla::Plugin::Test::CleanNamespaces 0.005 - -use Test::More 0.94; -use Test::CleanNamespaces 0.15; - -subtest all_namespaces_clean => sub { - namespaces_clean( - grep { my $mod = $_; not grep { $mod =~ $_ } qr/^MooseX::Role::Parameterized$/ } - Test::CleanNamespaces->find_modules - ); -}; - -done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/cpan-changes.t libmoosex-role-parameterized-perl-1.09/xt/release/cpan-changes.t --- libmoosex-role-parameterized-perl-1.08/xt/release/cpan-changes.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/cpan-changes.t 2016-08-07 01:20:36.000000000 +0000 @@ -1,11 +1,10 @@ -#!perl - use strict; use warnings; -use Test::More 0.96 tests => 2; -use_ok('Test::CPAN::Changes'); +# this test was generated with Dist::Zilla::Plugin::Test::CPAN::Changes 0.012 + +use Test::More 0.96 tests => 1; +use Test::CPAN::Changes; subtest 'changes_ok' => sub { changes_file_ok('Changes'); }; -done_testing(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/eol.t libmoosex-role-parameterized-perl-1.09/xt/release/eol.t --- libmoosex-role-parameterized-perl-1.08/xt/release/eol.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/eol.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -use strict; -use warnings; -use Test::More; - -eval 'use Test::EOL'; -plan skip_all => 'Test::EOL required' if $@; - -all_perl_files_ok({ trailing_whitespace => 1 }); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/kwalitee.t libmoosex-role-parameterized-perl-1.09/xt/release/kwalitee.t --- libmoosex-role-parameterized-perl-1.08/xt/release/kwalitee.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/kwalitee.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -# this test was generated with Dist::Zilla::Plugin::Test::Kwalitee 2.10 -use strict; -use warnings; -use Test::More 0.88; -use Test::Kwalitee 1.21 'kwalitee_ok'; - -kwalitee_ok(); - -done_testing; diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/minimum-version.t libmoosex-role-parameterized-perl-1.09/xt/release/minimum-version.t --- libmoosex-role-parameterized-perl-1.08/xt/release/minimum-version.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/minimum-version.t 2016-08-07 01:20:36.000000000 +0000 @@ -5,4 +5,4 @@ eval "use Test::MinimumVersion"; plan skip_all => "Test::MinimumVersion required for testing minimum versions" if $@; -all_minimum_version_ok( qq{5.008001} ); +all_minimum_version_ok( qq{5.008003} ); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/mojibake.t libmoosex-role-parameterized-perl-1.09/xt/release/mojibake.t --- libmoosex-role-parameterized-perl-1.08/xt/release/mojibake.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/mojibake.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -#!perl - -use strict; -use warnings qw(all); - -use Test::More; - -## no critic (ProhibitStringyEval, RequireCheckingReturnValueOfEval) -eval q(use Test::Mojibake); -plan skip_all => q(Test::Mojibake required for source encoding testing) if $@; - -all_files_encoding_ok(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/pod-coverage.t libmoosex-role-parameterized-perl-1.09/xt/release/pod-coverage.t --- libmoosex-role-parameterized-perl-1.08/xt/release/pod-coverage.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/pod-coverage.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -#!perl -# This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests. - -use Test::Pod::Coverage 1.08; -use Pod::Coverage::TrustPod; - -all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' }); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/pod-syntax.t libmoosex-role-parameterized-perl-1.09/xt/release/pod-syntax.t --- libmoosex-role-parameterized-perl-1.08/xt/release/pod-syntax.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/pod-syntax.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -#!perl -# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. -use Test::More; -use Test::Pod 1.41; - -all_pod_files_ok(); diff -Nru libmoosex-role-parameterized-perl-1.08/xt/release/portability.t libmoosex-role-parameterized-perl-1.09/xt/release/portability.t --- libmoosex-role-parameterized-perl-1.08/xt/release/portability.t 2014-08-23 22:38:25.000000000 +0000 +++ libmoosex-role-parameterized-perl-1.09/xt/release/portability.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -#!perl - -use strict; -use warnings; - -use Test::More; - -eval 'use Test::Portability::Files'; -plan skip_all => 'Test::Portability::Files required for testing portability' - if $@; -run_tests();