diff -Nru libmoosex-undeftolerant-perl-0.20/Build.PL libmoosex-undeftolerant-perl-0.21/Build.PL --- libmoosex-undeftolerant-perl-0.20/Build.PL 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/Build.PL 2016-10-23 01:05:21.000000000 +0000 @@ -1,31 +1,32 @@ # This Build.PL for MooseX-UndefTolerant was generated by -# Dist::Zilla::Plugin::ModuleBuildTiny::Fallback 0.018 +# Dist::Zilla::Plugin::ModuleBuildTiny::Fallback 0.023 use strict; use warnings; my %configure_requires = ( - 'Module::Build::Tiny' => '0.007', + 'Module::Build::Tiny' => '0.034', ); -my @missing = grep { - ! eval "require $_; $_->VERSION($configure_requires{$_}); 1" +my %errors = map { + eval "require $_; $_->VERSION($configure_requires{$_}); 1"; + $_ => $@, } keys %configure_requires; -if (not @missing) +if (!grep { $_ } values %errors) { - # This section for MooseX-UndefTolerant was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.013. + # This section for MooseX-UndefTolerant was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.015. use strict; use warnings; use 5.006; - # use Module::Build::Tiny 0.007; + # use Module::Build::Tiny 0.034; Module::Build::Tiny::Build_PL(); } else { - if ($ENV{PERL_MB_FALLBACK_SILENCE_WARNING}) + if (not $ENV{PERL_MB_FALLBACK_SILENCE_WARNING}) { - warn <<'EOW'; + 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 @@ -56,12 +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 + . 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.039. + # This section was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.008. use strict; use warnings; @@ -70,7 +77,7 @@ my %module_build_args = ( "configure_requires" => { - "Module::Build::Tiny" => "0.007", + "Module::Build::Tiny" => "0.034", "perl" => "5.006" }, "dist_abstract" => "Make your attribute(s) tolerant to undef initialization", @@ -78,7 +85,7 @@ "Cory G Watson " ], "dist_name" => "MooseX-UndefTolerant", - "dist_version" => "0.20", + "dist_version" => "0.21", "license" => "perl", "module_name" => "MooseX::UndefTolerant", "recursive_test_files" => 1, @@ -92,12 +99,12 @@ "warnings" => 0 }, "test_requires" => { - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Test::Fatal" => 0, "Test::Moose" => 0, "Test::More" => "0.88", - "Test::NoWarnings" => "1.04", + "if" => 0, "lib" => 0, "perl" => "5.006" } @@ -105,12 +112,12 @@ my %fallback_build_requires = ( - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Test::Fatal" => 0, "Test::Moose" => 0, "Test::More" => "0.88", - "Test::NoWarnings" => "1.04", + "if" => 0, "lib" => 0, "perl" => "5.006" ); diff -Nru libmoosex-undeftolerant-perl-0.20/Changes libmoosex-undeftolerant-perl-0.21/Changes --- libmoosex-undeftolerant-perl-0.20/Changes 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/Changes 2016-10-23 01:05:21.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for MooseX-UndefTolerant +0.21 2016-10-23 01:05:18Z + * avoid failing tests when upstream modules warn + 0.20 2015-08-16 02:45:25Z * repository migrated to the github moose organization diff -Nru libmoosex-undeftolerant-perl-0.20/CONTRIBUTING libmoosex-undeftolerant-perl-0.21/CONTRIBUTING --- libmoosex-undeftolerant-perl-0.20/CONTRIBUTING 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/CONTRIBUTING 2016-10-23 01:05:21.000000000 +0000 @@ -26,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-UndefTolerant. +https://metacpan.org/release/MooseX-UndefTolerant If you use cpanminus, you can do it without downloading the tarball first: @@ -82,12 +82,12 @@ 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-UndefTolerant -or via bug-MooseX-UndefTolerant@rt.cpan.org. +or via email: bug-MooseX-UndefTolerant@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 (using the attribution on the @@ -96,5 +96,5 @@ request to the .mailmap file to contain the correct mapping. -This file was generated via Dist::Zilla::Plugin::GenerateFile::ShareDir 0.006 from a -template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.102. +This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.012 from a +template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.121. diff -Nru libmoosex-undeftolerant-perl-0.20/debian/changelog libmoosex-undeftolerant-perl-0.21/debian/changelog --- libmoosex-undeftolerant-perl-0.20/debian/changelog 2015-10-24 19:26:44.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/changelog 2019-02-20 14:13:21.000000000 +0000 @@ -1,3 +1,40 @@ +libmoosex-undeftolerant-perl (0.21-1) unstable; urgency=medium + + [ upstream ] + * New release. + + [ Salvatore Bonaccorso ] + * Update Vcs-* headers for switch to salsa.debian.org. + + [ gregor herrmann ] + * Update URLs from {search,www}.cpan.org to MetaCPAN. + * Update GitHub URLs to use HTTPS. + + [ Jonas Smedegaard ] + * Simplify rules. + Stop build-depend on devscripts cdbs. + * Update git-buildpackage config: Filter any .git* file. + * Update watch file: + + Bump to file format 4. + + Rewrite usage comment. + + Use substitution strings. + * Update copyright info: + + Use https protocol in Format and Upstream-Contact URLs. + + Extend coverage of packaging. + * Stop build-depend on dh-buildinfo. + * Relax to (build-)depend unversioned on libmoose-perl: + Needed version satisfied even in oldstable. + * Mark build-dependencies needed only for testsuite as such. + * Drop obsolete lintian override regarding debhelper 9. + * Tighten lintian overrides regarding License-Reference. + * Declare compliance with Debian Policy 4.3.0. + * Enable autopkgtest. + * Set Rules-Requires-Root: no. + * Wrap and sort control file. + * Stop build-depend on libtest-nowarnings-perl. + + -- Jonas Smedegaard Wed, 20 Feb 2019 15:13:21 +0100 + libmoosex-undeftolerant-perl (0.20-1) unstable; urgency=low [ upstream ] diff -Nru libmoosex-undeftolerant-perl-0.20/debian/control libmoosex-undeftolerant-perl-0.21/debian/control --- libmoosex-undeftolerant-perl-0.20/debian/control 2015-10-24 19:18:48.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/control 2019-02-20 14:10:57.000000000 +0000 @@ -1,32 +1,34 @@ Source: libmoosex-undeftolerant-perl Section: perl Priority: optional -Build-Depends: cdbs (>= 0.4.122~), - devscripts, - perl, - libmodule-build-tiny-perl, +Build-Depends: debhelper, - dh-buildinfo, - libmoose-perl (>= 0.89), - libnamespace-autoclean-perl, - libtest-checkdeps-perl, - libtest-fatal-perl, - libtest-nowarnings-perl + libmodule-build-tiny-perl, + libmoose-perl , + libnamespace-autoclean-perl , + libtest-checkdeps-perl , + libtest-fatal-perl , + perl, Maintainer: Debian Perl Group -Uploaders: Jonas Smedegaard -Standards-Version: 3.9.6 -Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmoosex-undeftolerant-perl -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmoosex-undeftolerant-perl.git +Uploaders: + Jonas Smedegaard , +Standards-Version: 4.3.0 +Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libmoosex-undeftolerant-perl.git +Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libmoosex-undeftolerant-perl Homepage: https://github.com/moose/MooseX-UndefTolerant +Testsuite: autopkgtest-pkg-perl +Rules-Requires-Root: no Package: libmoosex-undeftolerant-perl Architecture: all -Depends: ${cdbs:Depends}, +Depends: + libmoose-perl, + libnamespace-autoclean-perl, ${misc:Depends}, - ${perl:Depends} -Recommends: ${cdbs:Recommends} + ${perl:Depends}, Description: makes Moose attribute(s) tolerant to undef initialization - Loading MooseX::UndefTolerant in your Moose class makes initialization - of your attributes tolerant of undef. If you specify the value of undef - to any of the attributes they will not be initialized, effectively - behaving as if you had not provided a value at all. + Loading MooseX::UndefTolerant in your Moose class + makes initialization of your attributes tolerant of undef. + If you specify the value of undef to any of the attributes + they will not be initialized, + effectively behaving as if you had not provided a value at all. diff -Nru libmoosex-undeftolerant-perl-0.20/debian/control.in libmoosex-undeftolerant-perl-0.21/debian/control.in --- libmoosex-undeftolerant-perl-0.20/debian/control.in 2015-10-24 18:48:09.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/control.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -Source: libmoosex-undeftolerant-perl -Section: perl -Priority: optional -Build-Depends: @cdbs@ -Maintainer: Debian Perl Group -Uploaders: Jonas Smedegaard -Standards-Version: 3.9.6 -Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmoosex-undeftolerant-perl -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmoosex-undeftolerant-perl.git -Homepage: https://github.com/moose/MooseX-UndefTolerant - -Package: libmoosex-undeftolerant-perl -Architecture: all -Depends: ${cdbs:Depends}, - ${misc:Depends}, - ${perl:Depends} -Recommends: ${cdbs:Recommends} -Description: makes Moose attribute(s) tolerant to undef initialization - Loading MooseX::UndefTolerant in your Moose class makes initialization - of your attributes tolerant of undef. If you specify the value of undef - to any of the attributes they will not be initialized, effectively - behaving as if you had not provided a value at all. diff -Nru libmoosex-undeftolerant-perl-0.20/debian/copyright libmoosex-undeftolerant-perl-0.21/debian/copyright --- libmoosex-undeftolerant-perl-0.20/debian/copyright 2015-10-24 18:49:39.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/copyright 2019-02-20 14:08:25.000000000 +0000 @@ -1,27 +1,29 @@ -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::UndefTolerant -Upstream-Contact: http://rt.cpan.org/Dist/Display.html?Queue=MooseX-UndefTolerant +Upstream-Contact: https://rt.cpan.org/Dist/Display.html?Queue=MooseX-UndefTolerant mailto:bug-MooseX-UndefTolerant@rt.cpan.org -Source: http://search.cpan.org/dist/MooseX-UndefTolerant/ - git://github.com/moose/MooseX-UndefTolerant +Source: https://metacpan.org/release/MooseX-UndefTolerant + https://github.com/moose/MooseX-UndefTolerant Files: * Copyright: 2011, Cory G Watson License-Grant: - This is free software; you can redistribute it and/or modify it under - the same terms as the Perl 5 programming language system itself. + This is free software; + you can redistribute it and/or modify it + under the same terms as the Perl 5 programming language system itself. License: Artistic or GPL-1+ Comment: - Perl 5 is licensed under either the 'Artistic license' or the 'GNU - General Public License' version 1 or later. + Perl 5 is licensed under either the Artistic license + or the GNU General Public License version 1 or later. Files: debian/* -Copyright: 2012-2013,2015, Jonas Smedegaard +Copyright: 2012-2013,2015-2019, Jonas Smedegaard License-Grant: - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 3, or (at your option) any - later version. + This program is free software; + you can redistribute it and/or modify it + under the terms of the GNU General Public License + as published by the Free Software Foundation; + either version 3, or (at your option) any later version. License: GPL-3+ License: Artistic diff -Nru libmoosex-undeftolerant-perl-0.20/debian/copyright-check libmoosex-undeftolerant-perl-0.21/debian/copyright-check --- libmoosex-undeftolerant-perl-0.20/debian/copyright-check 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/copyright-check 2019-02-20 14:08:25.000000000 +0000 @@ -0,0 +1,29 @@ +#!/bin/sh +# Copyright 2016-2019, Jonas Smedegaard +# Description: helper script to update copyright_hints +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +set -eu + +# extract metadata from graphics files before copyright check +# - and skip data files unlikely to contain copyright/licensing info. +export DEB_COPYRIGHT_EXTRACT_EXTS="gif jpg png" +export DEB_COPYRIGHT_CHECK_IGNORE_EXTS="epgz ico" + +make -f /usr/share/cdbs/1/rules/utils.mk pre-build || true +make -f /usr/share/cdbs/1/rules/utils.mk clean DEB_COPYRIGHT_CHECK_STRICT=1 + +# unconditionally merge changes - safe to do with git-tracked package +[ ! -f debian/copyright_newhints ] || mv -f debian/copyright_newhints debian/copyright_hints diff -Nru libmoosex-undeftolerant-perl-0.20/debian/copyright_hints libmoosex-undeftolerant-perl-0.21/debian/copyright_hints --- libmoosex-undeftolerant-perl-0.20/debian/copyright_hints 2015-10-24 18:51:15.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/copyright_hints 2019-02-20 14:11:17.000000000 +0000 @@ -1,4 +1,4 @@ -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: FIXME Upstream-Contact: FIXME Source: FIXME @@ -12,13 +12,11 @@ META.json META.yml Makefile.PL - debian/README.source debian/compat debian/control - debian/control.in debian/gbp.conf + debian/rules debian/source/format - debian/source/lintian-overrides debian/watch dist.ini lib/MooseX/UndefTolerant/ApplicationToClass.pm @@ -43,37 +41,51 @@ xt/author/kwalitee.t xt/author/mojibake.t xt/author/no-tabs.t + xt/author/pod-no404s.t xt/author/pod-spell.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 - xt/release/pod-no404s.t - xt/release/pod-syntax.t - xt/release/portability.t -Copyright: *No copyright* +Copyright: NONE License: UNKNOWN FIXME -Files: lib/MooseX/UndefTolerant.pm +Files: README + lib/MooseX/UndefTolerant.pm lib/MooseX/UndefTolerant/Attribute.pm -Copyright: 2011, Cory G Watson - AND LICENCE -License: UNKNOWN +Copyright: 2011, Cory G Watson. +License: Artistic or GPL-1+ FIXME -Files: debian/rules -Copyright: 2012-2013, 2015 Jonas Smedegaard -License: GPL-3+ +Files: LICENSE +Copyright: 1989, Free Software Foundation, Inc. + 19xx name of author + 19yy + 2011, Cory G Watson. + disclaimer" for the program, if + ed by the Free + interest in the + of this Package, but belong to whomever generated them, and may be sold + the software, and +License: Artistic or GPL-1+ FIXME -Files: LICENCE -Copyright: 2011, Cory G Watson -License: GPL-ever +Files: debian/copyright-check +Copyright: 2016-2019, Jonas Smedegaard + check +License: GPL-3+ FIXME -Files: README -Copyright: 2011, Cory G Watson +Files: debian/source/lintian-overrides +Copyright: Artistic + GPL-1+ + GPL-3+ + artistic + gpl-1+ + gpl-3+ License: UNKNOWN FIXME diff -Nru libmoosex-undeftolerant-perl-0.20/debian/gbp.conf libmoosex-undeftolerant-perl-0.21/debian/gbp.conf --- libmoosex-undeftolerant-perl-0.20/debian/gbp.conf 2015-10-24 18:28:47.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/gbp.conf 2019-02-20 14:08:25.000000000 +0000 @@ -3,3 +3,4 @@ [DEFAULT] pristine-tar = True sign-tags = True +filter = */.git* diff -Nru libmoosex-undeftolerant-perl-0.20/debian/README.source libmoosex-undeftolerant-perl-0.21/debian/README.source --- libmoosex-undeftolerant-perl-0.20/debian/README.source 2015-10-24 18:28:47.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/README.source 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -CDBS+git-buildpackage ---------------------- - -This source package uses CDBS and git-buildpackage. NMUs need not (but -are encouraged to) make special use of these tools. In particular, the -debian/control.in file can be completely ignored. - -More info here: http://wiki.debian.org/CDBS+git-buildpackage - - - -- Jonas Smedegaard Mon, 18 Feb 2013 12:55:37 +0100 diff -Nru libmoosex-undeftolerant-perl-0.20/debian/rules libmoosex-undeftolerant-perl-0.21/debian/rules --- libmoosex-undeftolerant-perl-0.20/debian/rules 2015-10-24 19:26:14.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/rules 2019-02-20 14:08:25.000000000 +0000 @@ -1,46 +1,9 @@ #!/usr/bin/make -f -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2012-2013, 2015 Jonas Smedegaard -# Description: Main Debian packaging script for MooseX::UndefTolerant -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -include /usr/share/cdbs/1/rules/upstream-tarball.mk -include /usr/share/cdbs/1/rules/utils.mk -include /usr/share/cdbs/1/class/perl-build.mk -include /usr/share/cdbs/1/rules/debhelper.mk - -pkg = $(DEB_SOURCE_PACKAGE) - -DEB_UPSTREAM_PACKAGE = MooseX-UndefTolerant -DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/MooseX -#DEB_UPSTREAM_URL = http://search.cpan.org/CPAN/authors/id/E/ET/ETHER - -# Build-depend unversioned on debhelper -# TODO: Drop when adopted in cdbs -CDBS_BUILD_DEPENDS_rules_debhelper_v9 = debhelper - -# Needed both by upstream build process and at runtime -deps = libmoose-perl (>= 0.89), libnamespace-autoclean-perl - -# Needed by upstream regression tests -perl-t-deps = checkdeps fatal nowarnings -deps-test = $(patsubst %,$(comma) libtest-%-perl,$(perl-t-deps)) - -CDBS_BUILD_DEPENDS += , $(deps), $(deps-test) -CDBS_DEPENDS_$(pkg) = $(deps) # Remove empty manpages -binary-strip/$(pkg):: - find $(curdestdir) -type f -empty -delete +override_dh_auto_install: + dh_auto_install + find debian/*/usr/share/man* -type f -empty -delete + +%: + dh $@ diff -Nru libmoosex-undeftolerant-perl-0.20/debian/source/lintian-overrides libmoosex-undeftolerant-perl-0.21/debian/source/lintian-overrides --- libmoosex-undeftolerant-perl-0.20/debian/source/lintian-overrides 2015-08-03 15:02:15.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/source/lintian-overrides 2019-02-20 14:08:25.000000000 +0000 @@ -1,8 +1,7 @@ # License is in License-Reference field (see bug#786450) -missing-license-text-in-dep5-copyright - -# License is in License-Reference field (see bug#786450) -missing-license-paragraph-in-dep5-copyright - -# Debhelper 9 is satisfied even in oldstable -package-needs-versioned-debhelper-build-depends 9 +missing-license-paragraph-in-dep5-copyright artistic * +missing-license-paragraph-in-dep5-copyright gpl-1\+ * +missing-license-paragraph-in-dep5-copyright gpl-3\+ * +missing-license-text-in-dep5-copyright Artistic * +missing-license-text-in-dep5-copyright GPL-1\+ * +missing-license-text-in-dep5-copyright GPL-3\+ * diff -Nru libmoosex-undeftolerant-perl-0.20/debian/watch libmoosex-undeftolerant-perl-0.21/debian/watch --- libmoosex-undeftolerant-perl-0.20/debian/watch 2015-10-24 18:28:47.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/debian/watch 2019-02-20 14:08:25.000000000 +0000 @@ -1,3 +1,6 @@ -# Run the "uscan" command to check for upstream updates and more. -version=3 -http://search.cpan.org/dist/MooseX-UndefTolerant/ .*/MooseX-UndefTolerant-(\d.*)\.tar\.gz +version=4 +# check: uscan --report +# update: gbp import-orig --upstream-vcs-tag=vX.Y.Z --uscan + +https://metacpan.org/release/MooseX-UndefTolerant \ +.*/MooseX-UndefTolerant@ANY_VERSION@@ARCHIVE_EXT@ diff -Nru libmoosex-undeftolerant-perl-0.20/dist.ini libmoosex-undeftolerant-perl-0.21/dist.ini --- libmoosex-undeftolerant-perl-0.20/dist.ini 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/dist.ini 2016-10-23 01:05:21.000000000 +0000 @@ -5,7 +5,7 @@ copyright_year = 2011 [@Author::ETHER] -:version = 0.094 +:version = 0.097 authority = cpan:GPHAT surgical_podweaver = 1 AutoPrereqs.skip = ^Foo|Bar|Baz @@ -17,4 +17,6 @@ x_MailingList = http://lists.perl.org/list/moose.html [Test::CheckBreaks] +:version = 0.017 conflicts_module = Moose::Conflicts +conflicts_module = Module::Runtime::Conflicts diff -Nru libmoosex-undeftolerant-perl-0.20/INSTALL libmoosex-undeftolerant-perl-0.21/INSTALL --- libmoosex-undeftolerant-perl-0.20/INSTALL 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/INSTALL 2016-10-23 01:05:21.000000000 +0000 @@ -8,10 +8,10 @@ % cpanm MooseX::UndefTolerant -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::UndefTolerant +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 @@ -31,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-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/ApplicationToClass.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/ApplicationToClass.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/ApplicationToClass.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/ApplicationToClass.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::ApplicationToClass; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use Moose::Role; diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/ApplicationToRole.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/ApplicationToRole.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/ApplicationToRole.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/ApplicationToRole.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::ApplicationToRole; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use Moose::Role; diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Attribute.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Attribute.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Attribute.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Attribute.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::Attribute; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use Moose::Role; use namespace::autoclean; @@ -44,7 +44,7 @@ =head1 VERSION -version 0.20 +version 0.21 =head1 SYNOPSIS @@ -68,16 +68,27 @@ =head1 DESCRIPTION -Applying this trait to your attribute makes it's initialization tolerant of +Applying this trait to your attribute makes its initialization tolerant of of undef. If you specify the value of undef to any of the attributes they will not be initialized (or will be set to the default, if applicable). Effectively behaving as if you had not provided a value at all. +=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 Cory G Watson -=head1 COPYRIGHT AND LICENCE +=head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Cory G Watson. diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Class.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Class.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Class.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Class.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::Class; -our $VERSION = '0.20'; +our $VERSION = '0.21'; # applied to metaclass, for Moose >= 1.9900 diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Composite.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Composite.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Composite.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Composite.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::Composite; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use Moose::Role; diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Constructor.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Constructor.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Constructor.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Constructor.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::Constructor; -our $VERSION = '0.20'; +our $VERSION = '0.21'; # applied to constructor method metaclass, for Moose < 1.9900 diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Role.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Role.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant/Role.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant/Role.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ package MooseX::UndefTolerant::Role; -our $VERSION = '0.20'; +our $VERSION = '0.21'; use Moose::Role; diff -Nru libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant.pm libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant.pm --- libmoosex-undeftolerant-perl-0.20/lib/MooseX/UndefTolerant.pm 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/lib/MooseX/UndefTolerant.pm 2016-10-23 01:05:21.000000000 +0000 @@ -1,6 +1,6 @@ -package MooseX::UndefTolerant; # git description: v0.19-9-gbec8e8b +package MooseX::UndefTolerant; # git description: v0.20-6-ga1774a5 -our $VERSION = '0.20'; +our $VERSION = '0.21'; use strict; use warnings; @@ -62,7 +62,7 @@ =head1 VERSION -version 0.20 +version 0.21 =head1 SYNOPSIS @@ -178,6 +178,17 @@ =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 Cory G Watson @@ -210,7 +221,7 @@ =back -=head1 COPYRIGHT AND LICENCE +=head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Cory G Watson. diff -Nru libmoosex-undeftolerant-perl-0.20/LICENCE libmoosex-undeftolerant-perl-0.21/LICENCE --- libmoosex-undeftolerant-perl-0.20/LICENCE 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/LICENCE 1970-01-01 00:00:00.000000000 +0000 @@ -1,379 +0,0 @@ -This software is copyright (c) 2011 by Cory G Watson. - -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. - -Terms of the Perl programming language system itself - -a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or -b) the "Artistic License" - ---- The GNU General Public License, Version 1, February 1989 --- - -This software is Copyright (c) 2011 by Cory G Watson. - -This is free software, licensed under: - - The GNU General Public License, Version 1, February 1989 - - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 - - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation's -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of a such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must tell them their rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - - 1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - - 2. You may modify your copy or copies of the Program or any portion of -it, and copy and distribute such modifications under the terms of Paragraph -1 above, provided that you also do the following: - - a) cause the modified files to carry prominent notices stating that - you changed the files and the date of any change; and - - b) cause the whole of any work that you distribute or publish, that - in whole or in part contains the Program or any part thereof, either - with or without modifications, to be licensed at no charge to all - third parties under the terms of this General Public License (except - that you may choose to grant warranty protection to some or all - third parties, at your option). - - c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive use - in the simplest and most usual way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this General - Public License. - - d) You may charge a fee for the physical act of transferring a - copy, and you may at your option offer warranty protection in - exchange for a fee. - -Mere aggregation of another independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - - 3. You may copy and distribute the Program (or a portion or derivative of -it, under Paragraph 2) in object code or executable form under the terms of -Paragraphs 1 and 2 above provided that you also do one of the following: - - a) accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of - Paragraphs 1 and 2 above; or, - - b) accompany it with a written offer, valid for at least three - years, to give any third party free (except for a nominal charge - for the cost of distribution) a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of - Paragraphs 1 and 2 above; or, - - c) accompany it with the information you received as to where the - corresponding source code may be obtained. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. For an executable file, complete source code means -all the source code for all modules it contains; but, as a special -exception, it need not include source code for modules which are standard -libraries that accompany the operating system on which the executable -file runs, or for standard header files or definitions files that -accompany that operating system. - - 4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - - 5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients' exercise of the rights granted herein. - - 7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - - 8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - - To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19xx name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision' (a program to direct compilers to make passes - at assemblers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -That's all there is to it! - - ---- The Artistic License 1.0 --- - -This software is Copyright (c) 2011 by Cory G Watson. - -This is free software, licensed under: - - The Artistic License 1.0 - -The Artistic License - -Preamble - -The intent of this document is to state the conditions under which a Package -may be copied, such that the Copyright Holder maintains some semblance of -artistic control over the development of the package, while giving the users of -the package the right to use and distribute the Package in a more-or-less -customary fashion, plus the right to make reasonable modifications. - -Definitions: - - - "Package" refers to the collection of files distributed by the Copyright - Holder, and derivatives of that collection of files created through - textual modification. - - "Standard Version" refers to such a Package if it has not been modified, - or has been modified in accordance with the wishes of the Copyright - Holder. - - "Copyright Holder" is whoever is named in the copyright or copyrights for - the package. - - "You" is you, if you're thinking about copying or distributing this Package. - - "Reasonable copying fee" is whatever you can justify on the basis of media - cost, duplication charges, time of people involved, and so on. (You will - not be required to justify it to the Copyright Holder, but only to the - computing community at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item itself, though - there may be fees involved in handling the item. It also means that - recipients of the item may redistribute it under the same conditions they - received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived -from the Public Domain or from the Copyright Holder. A Package modified in such -a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that -you insert a prominent notice in each changed file stating how and when you -changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or an - equivalent medium, or placing the modifications on a major archive site - such as ftp.uu.net, or by allowing the Copyright Holder to include your - modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict with - standard executables, which must also be provided, and provide a separate - manual page for each non-standard executable that clearly documents how it - differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable -form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where to - get the Standard Version. - - b) accompany the distribution with the machine-readable source of the Package - with your modifications. - - c) accompany any non-standard executables with their corresponding Standard - Version executables, giving the non-standard executables non-standard - names, and clearly documenting the differences in manual pages (or - equivalent), together with instructions on where to get the Standard - Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this -Package. You may charge any fee you choose for support of this Package. You -may not charge a fee for this Package itself. However, you may distribute this -Package in aggregate with other (possibly commercial) programs as part of a -larger (possibly commercial) software distribution provided that you do not -advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output -from the programs of this Package do not automatically fall under the copyright -of this Package, but belong to whomever generated them, and may be sold -commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not -be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End - diff -Nru libmoosex-undeftolerant-perl-0.20/LICENSE libmoosex-undeftolerant-perl-0.21/LICENSE --- libmoosex-undeftolerant-perl-0.20/LICENSE 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/LICENSE 2016-10-23 01:05:21.000000000 +0000 @@ -0,0 +1,379 @@ +This software is copyright (c) 2011 by Cory G Watson. + +This is free software; you can redistribute it and/or modify it under +the same terms as the Perl 5 programming language system itself. + +Terms of the Perl programming language system itself + +a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or +b) the "Artistic License" + +--- The GNU General Public License, Version 1, February 1989 --- + +This software is Copyright (c) 2011 by Cory G Watson. + +This is free software, licensed under: + + The GNU General Public License, Version 1, February 1989 + + GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 + + Copyright (C) 1989 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The license agreements of most software companies try to keep users +at the mercy of those companies. By contrast, our General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. The +General Public License applies to the Free Software Foundation's +software and to any other program whose authors commit to using it. +You can use it for your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Specifically, the General Public License is designed to make +sure that you have the freedom to give away or sell copies of free +software, that you receive source code or can get it if you want it, +that you can change the software or use pieces of it in new free +programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of a such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must tell them their rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any program or other work which +contains a notice placed by the copyright holder saying it may be +distributed under the terms of this General Public License. The +"Program", below, refers to any such program or work, and a "work based +on the Program" means either the Program or any work containing the +Program or a portion of it, either verbatim or with modifications. Each +licensee is addressed as "you". + + 1. You may copy and distribute verbatim copies of the Program's source +code as you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this +General Public License and to the absence of any warranty; and give any +other recipients of the Program a copy of this General Public License +along with the Program. You may charge a fee for the physical act of +transferring a copy. + + 2. You may modify your copy or copies of the Program or any portion of +it, and copy and distribute such modifications under the terms of Paragraph +1 above, provided that you also do the following: + + a) cause the modified files to carry prominent notices stating that + you changed the files and the date of any change; and + + b) cause the whole of any work that you distribute or publish, that + in whole or in part contains the Program or any part thereof, either + with or without modifications, to be licensed at no charge to all + third parties under the terms of this General Public License (except + that you may choose to grant warranty protection to some or all + third parties, at your option). + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use + in the simplest and most usual way, to print or display an + announcement including an appropriate copyright notice and a notice + that there is no warranty (or else, saying that you provide a + warranty) and that users may redistribute the program under these + conditions, and telling the user how to view a copy of this General + Public License. + + d) You may charge a fee for the physical act of transferring a + copy, and you may at your option offer warranty protection in + exchange for a fee. + +Mere aggregation of another independent work with the Program (or its +derivative) on a volume of a storage or distribution medium does not bring +the other work under the scope of these terms. + + 3. You may copy and distribute the Program (or a portion or derivative of +it, under Paragraph 2) in object code or executable form under the terms of +Paragraphs 1 and 2 above provided that you also do one of the following: + + a) accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of + Paragraphs 1 and 2 above; or, + + b) accompany it with a written offer, valid for at least three + years, to give any third party free (except for a nominal charge + for the cost of distribution) a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of + Paragraphs 1 and 2 above; or, + + c) accompany it with the information you received as to where the + corresponding source code may be obtained. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form alone.) + +Source code for a work means the preferred form of the work for making +modifications to it. For an executable file, complete source code means +all the source code for all modules it contains; but, as a special +exception, it need not include source code for modules which are standard +libraries that accompany the operating system on which the executable +file runs, or for standard header files or definitions files that +accompany that operating system. + + 4. You may not copy, modify, sublicense, distribute or transfer the +Program except as expressly provided under this General Public License. +Any attempt otherwise to copy, modify, sublicense, distribute or transfer +the Program is void, and will automatically terminate your rights to use +the Program under this License. However, parties who have received +copies, or rights to use copies, from you under this General Public +License will not have their licenses terminated so long as such parties +remain in full compliance. + + 5. By copying, distributing or modifying the Program (or any work based +on the Program) you indicate your acceptance of this license to do so, +and all its terms and conditions. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the original +licensor to copy, distribute or modify the Program subject to these +terms and conditions. You may not impose any further restrictions on the +recipients' exercise of the rights granted herein. + + 7. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of the license which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +the license, you may choose any version ever published by the Free Software +Foundation. + + 8. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to humanity, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + + To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively convey +the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19xx name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the +appropriate parts of the General Public License. Of course, the +commands you use may be called something other than `show w' and `show +c'; they could even be mouse-clicks or menu items--whatever suits your +program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + program `Gnomovision' (a program to direct compilers to make passes + at assemblers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +That's all there is to it! + + +--- The Artistic License 1.0 --- + +This software is Copyright (c) 2011 by Cory G Watson. + +This is free software, licensed under: + + The Artistic License 1.0 + +The Artistic License + +Preamble + +The intent of this document is to state the conditions under which a Package +may be copied, such that the Copyright Holder maintains some semblance of +artistic control over the development of the package, while giving the users of +the package the right to use and distribute the Package in a more-or-less +customary fashion, plus the right to make reasonable modifications. + +Definitions: + + - "Package" refers to the collection of files distributed by the Copyright + Holder, and derivatives of that collection of files created through + textual modification. + - "Standard Version" refers to such a Package if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder. + - "Copyright Holder" is whoever is named in the copyright or copyrights for + the package. + - "You" is you, if you're thinking about copying or distributing this Package. + - "Reasonable copying fee" is whatever you can justify on the basis of media + cost, duplication charges, time of people involved, and so on. (You will + not be required to justify it to the Copyright Holder, but only to the + computing community at large as a market that must bear the fee.) + - "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that + recipients of the item may redistribute it under the same conditions they + received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you +duplicate all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications derived +from the Public Domain or from the Copyright Holder. A Package modified in such +a way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided that +you insert a prominent notice in each changed file stating how and when you +changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or an + equivalent medium, or placing the modifications on a major archive site + such as ftp.uu.net, or by allowing the Copyright Holder to include your + modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict with + standard executables, which must also be provided, and provide a separate + manual page for each non-standard executable that clearly documents how it + differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or executable +form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where to + get the Standard Version. + + b) accompany the distribution with the machine-readable source of the Package + with your modifications. + + c) accompany any non-standard executables with their corresponding Standard + Version executables, giving the non-standard executables non-standard + names, and clearly documenting the differences in manual pages (or + equivalent), together with instructions on where to get the Standard + Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this +Package. You may charge any fee you choose for support of this Package. You +may not charge a fee for this Package itself. However, you may distribute this +Package in aggregate with other (possibly commercial) programs as part of a +larger (possibly commercial) software distribution provided that you do not +advertise this Package as a product of your own. + +6. The scripts and library files supplied as input to or produced as output +from the programs of this Package do not automatically fall under the copyright +of this Package, but belong to whomever generated them, and may be sold +commercially, and may be aggregated with this Package. + +7. C or perl subroutines supplied by you and linked into this Package shall not +be considered part of this Package. + +8. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF +MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +The End + diff -Nru libmoosex-undeftolerant-perl-0.20/Makefile.PL libmoosex-undeftolerant-perl-0.21/Makefile.PL --- libmoosex-undeftolerant-perl-0.20/Makefile.PL 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/Makefile.PL 2016-10-23 01:05:21.000000000 +0000 @@ -1,25 +1,24 @@ # This Makefile.PL for MooseX-UndefTolerant was generated by -# Dist::Zilla::Plugin::MakeMaker::Fallback 0.019 -# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.34. +# 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.006; +use ExtUtils::MakeMaker; + BEGIN { my %configure_requires = ( - 'Module::Build::Tiny' => '0.007', + '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) { if (not $ENV{PERL_MM_FALLBACK_SILENCE_WARNING}) { @@ -61,14 +60,11 @@ } } # end BEGIN -use 5.006; -use ExtUtils::MakeMaker; - my %WriteMakefileArgs = ( "ABSTRACT" => "Make your attribute(s) tolerant to undef initialization", "AUTHOR" => "Cory G Watson ", "CONFIGURE_REQUIRES" => { - "Module::Build::Tiny" => "0.007" + "Module::Build::Tiny" => "0.034" }, "DISTNAME" => "MooseX-UndefTolerant", "LICENSE" => "perl", @@ -84,30 +80,30 @@ "warnings" => 0 }, "TEST_REQUIRES" => { - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Test::Fatal" => 0, "Test::Moose" => 0, "Test::More" => "0.88", - "Test::NoWarnings" => "1.04", + "if" => 0, "lib" => 0 }, - "VERSION" => "0.20", + "VERSION" => "0.21", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( - "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, + "Module::Metadata" => 0, "Moose" => "0.89", "Moose::Exporter" => 0, "Moose::Role" => 0, "Test::Fatal" => 0, "Test::Moose" => 0, "Test::More" => "0.88", - "Test::NoWarnings" => "1.04", + "if" => 0, "lib" => 0, "namespace::autoclean" => 0, "strict" => 0, diff -Nru libmoosex-undeftolerant-perl-0.20/MANIFEST libmoosex-undeftolerant-perl-0.21/MANIFEST --- libmoosex-undeftolerant-perl-0.20/MANIFEST 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/MANIFEST 2016-10-23 01:05:21.000000000 +0000 @@ -1,9 +1,9 @@ -# This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.039. +# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.008. Build.PL CONTRIBUTING Changes INSTALL -LICENCE +LICENSE MANIFEST META.json META.yml @@ -34,11 +34,11 @@ xt/author/kwalitee.t xt/author/mojibake.t xt/author/no-tabs.t +xt/author/pod-no404s.t xt/author/pod-spell.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 -xt/release/pod-no404s.t -xt/release/pod-syntax.t -xt/release/portability.t diff -Nru libmoosex-undeftolerant-perl-0.20/META.json libmoosex-undeftolerant-perl-0.21/META.json --- libmoosex-undeftolerant-perl-0.20/META.json 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/META.json 2016-10-23 01:05:21.000000000 +0000 @@ -4,7 +4,7 @@ "Cory G Watson " ], "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 5.039, CPAN::Meta::Converter version 2.150005", + "generated_by" : "Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -22,34 +22,33 @@ "prereqs" : { "configure" : { "requires" : { - "Module::Build::Tiny" : "0.007", + "Module::Build::Tiny" : "0.034", "perl" : "5.006" } }, "develop" : { "recommends" : { - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.102" + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.121" }, "requires" : { "Dist::Zilla" : "5", "Dist::Zilla::Plugin::Authority" : "1.009", - "Dist::Zilla::Plugin::AuthorityFromModule" : "0.002", "Dist::Zilla::Plugin::AutoMetaResources" : "0", - "Dist::Zilla::Plugin::AutoPrereqs" : "0", + "Dist::Zilla::Plugin::AutoPrereqs" : "5.038", "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : "0.004", "Dist::Zilla::Plugin::CheckIssues" : "0", - "Dist::Zilla::Plugin::CheckPrereqsIndexed" : "0", + "Dist::Zilla::Plugin::CheckPrereqsIndexed" : "0.019", "Dist::Zilla::Plugin::CheckSelfDependency" : "0", "Dist::Zilla::Plugin::CheckStrictVersion" : "0", "Dist::Zilla::Plugin::ConfirmRelease" : "0", "Dist::Zilla::Plugin::CopyFilesFromRelease" : "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::Contributors" : "0.029", "Dist::Zilla::Plugin::Git::Describe" : "0.004", "Dist::Zilla::Plugin::Git::GatherDir" : "2.016", "Dist::Zilla::Plugin::Git::Push" : "0", @@ -57,7 +56,7 @@ "Dist::Zilla::Plugin::Git::Tag" : "0", "Dist::Zilla::Plugin::GitHub::Update" : "0.40", "Dist::Zilla::Plugin::GithubMeta" : "0.54", - "Dist::Zilla::Plugin::InstallGuide" : "0", + "Dist::Zilla::Plugin::InstallGuide" : "1.200005", "Dist::Zilla::Plugin::Keywords" : "0.004", "Dist::Zilla::Plugin::License" : "5.038", "Dist::Zilla::Plugin::MakeMaker::Fallback" : "0.012", @@ -73,34 +72,34 @@ "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback" : "0.018", "Dist::Zilla::Plugin::MojibakeTests" : "0.8", "Dist::Zilla::Plugin::NextRelease" : "5.033", - "Dist::Zilla::Plugin::PodSyntaxTests" : "0", + "Dist::Zilla::Plugin::PodSyntaxTests" : "5.040", "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::RewriteVersion::Transitional" : "0.004", - "Dist::Zilla::Plugin::Run::AfterBuild" : "0.038", + "Dist::Zilla::Plugin::Run::AfterBuild" : "0.041", "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038", "Dist::Zilla::Plugin::RunExtraTests" : "0.024", "Dist::Zilla::Plugin::StaticInstall" : "0.005", "Dist::Zilla::Plugin::SurgicalPodWeaver" : "0", - "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.008", + "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.012", "Dist::Zilla::Plugin::Test::ChangesHasContent" : "0", - "Dist::Zilla::Plugin::Test::CheckBreaks" : "0", + "Dist::Zilla::Plugin::Test::CheckBreaks" : "0.017", "Dist::Zilla::Plugin::Test::CleanNamespaces" : "0.006", "Dist::Zilla::Plugin::Test::Compile" : "2.039", "Dist::Zilla::Plugin::Test::EOL" : "0.17", - "Dist::Zilla::Plugin::Test::Kwalitee" : "2.06", + "Dist::Zilla::Plugin::Test::Kwalitee" : "2.10", "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000003", "Dist::Zilla::Plugin::Test::NoTabs" : "0.08", - "Dist::Zilla::Plugin::Test::Pod::No404s" : "1.002", - "Dist::Zilla::Plugin::Test::PodSpelling" : "2.006001", - "Dist::Zilla::Plugin::Test::Portability" : "0", - "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.019", + "Dist::Zilla::Plugin::Test::Pod::No404s" : "1.003", + "Dist::Zilla::Plugin::Test::PodSpelling" : "2.006003", + "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.094", + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.097", "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", @@ -111,11 +110,13 @@ "Test::CleanNamespaces" : "0.15", "Test::EOL" : "0", "Test::Kwalitee" : "1.21", + "Test::MinimumVersion" : "0", "Test::Mojibake" : "0", "Test::More" : "0.96", "Test::NoTabs" : "0", "Test::Pod" : "1.41", "Test::Pod::No404s" : "0", + "Test::Portability::Files" : "0", "Test::Spelling" : "0.12", "blib" : "1.01", "perl" : "5.006" @@ -137,12 +138,12 @@ "CPAN::Meta" : "2.120900" }, "requires" : { - "ExtUtils::MakeMaker" : "0", "File::Spec" : "0", + "Module::Metadata" : "0", "Test::Fatal" : "0", "Test::Moose" : "0", "Test::More" : "0.88", - "Test::NoWarnings" : "1.04", + "if" : "0", "lib" : "0", "perl" : "5.006" } @@ -151,35 +152,35 @@ "provides" : { "MooseX::UndefTolerant" : { "file" : "lib/MooseX/UndefTolerant.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::ApplicationToClass" : { "file" : "lib/MooseX/UndefTolerant/ApplicationToClass.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::ApplicationToRole" : { "file" : "lib/MooseX/UndefTolerant/ApplicationToRole.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::Attribute" : { "file" : "lib/MooseX/UndefTolerant/Attribute.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::Class" : { "file" : "lib/MooseX/UndefTolerant/Class.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::Composite" : { "file" : "lib/MooseX/UndefTolerant/Composite.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::Constructor" : { "file" : "lib/MooseX/UndefTolerant/Constructor.pm", - "version" : "0.20" + "version" : "0.21" }, "MooseX::UndefTolerant::Role" : { "file" : "lib/MooseX/UndefTolerant/Role.pm", - "version" : "0.20" + "version" : "0.21" } }, "release_status" : "stable", @@ -197,10 +198,10 @@ "x_IRC" : "irc://irc.perl.org/#moose", "x_MailingList" : "http://lists.perl.org/list/moose.html" }, - "version" : "0.20", + "version" : "0.21", "x_Dist_Zilla" : { "perl" : { - "version" : "5.023001" + "version" : "5.025006" }, "plugins" : [ { @@ -212,7 +213,7 @@ } }, "name" : "@Author::ETHER/bundle_plugins", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional", @@ -241,41 +242,43 @@ "Dist::Zilla::PluginBundle::Author::ETHER" ], "phase" : "build", + "run_under_travis" : 0, "skip" : [] } }, "name" : "@Author::ETHER/stale modules, build", - "version" : "0.045" + "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.045" + "version" : "0.051" }, { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", - "version" : "5.039" - }, - { - "class" : "Dist::Zilla::Plugin::FileFinder::ByName", - "name" : "@Author::ETHER/ExtraTestFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", "config" : { "Dist::Zilla::Plugin::GatherDir" : { - "exclude_filename" : [], + "exclude_filename" : [ + "CONTRIBUTING", + "INSTALL", + "LICENCE", + "README.pod" + ], "exclude_match" : [], "follow_symlinks" : 0, "include_dotfiles" : 0, @@ -288,58 +291,63 @@ } }, "name" : "@Author::ETHER/Git::GatherDir", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::ETHER/License", - "version" : "5.039" + "version" : "6.008" }, { - "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.006" + "version" : "0.012" }, { "class" : "Dist::Zilla::Plugin::InstallGuide", "name" : "@Author::ETHER/InstallGuide", - "version" : "1.200006" + "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, "filename" : "xt/author/00-compile.t", @@ -368,7 +376,7 @@ ":ExecFiles", "@Author::ETHER/Examples", ":TestFiles", - "@Author::ETHER/ExtraTestFiles" + ":ExtraTestFiles" ] } }, @@ -381,52 +389,73 @@ "Dist::Zilla::Plugin::Test::EOL" : { "filename" : "xt/author/eol.t", "finder" : [ - ":InstallModules", ":ExecFiles", - "@Author::ETHER/Examples", + ":ExtraTestFiles", + ":InstallModules", ":TestFiles", - "@Author::ETHER/ExtraTestFiles" + "@Author::ETHER/Examples" ], - "trailing_whitespace" : "1" + "trailing_whitespace" : 1 } }, "name" : "@Author::ETHER/Test::EOL", - "version" : "0.18" + "version" : "0.19" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", + "config" : { + "Dist::Zilla::Plugin::Test::CPAN::Changes" : { + "changelog" : "Changes" + } + }, "name" : "@Author::ETHER/Test::CPAN::Changes", - "version" : "0.009" + "version" : "0.012" }, { "class" : "Dist::Zilla::Plugin::Test::ChangesHasContent", "name" : "@Author::ETHER/Test::ChangesHasContent", - "version" : "0.008" + "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "name" : "@Author::ETHER/Test::MinimumVersion", - "version" : "2.000006" + "version" : "2.000007" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "@Author::ETHER/PodSyntaxTests", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Test::PodSpelling", + "config" : { + "Dist::Zilla::Plugin::Test::PodSpelling" : { + "directories" : [ + "examples", + "lib", + "script", + "t", + "xt" + ], + "spell_cmd" : "", + "stopwords" : [ + "irc" + ], + "wordlist" : "Pod::Wordlist" + } + }, "name" : "@Author::ETHER/Test::PodSpelling", - "version" : "2.006009" + "version" : "2.007003" }, { "class" : "Dist::Zilla::Plugin::Test::Pod::No404s", "name" : "@Author::ETHER/Test::Pod::No404s", - "version" : "1.002" + "version" : "1.003" }, { "class" : "Dist::Zilla::Plugin::Test::Kwalitee", @@ -437,7 +466,7 @@ } }, "name" : "@Author::ETHER/Test::Kwalitee", - "version" : "2.11" + "version" : "2.12" }, { "class" : "Dist::Zilla::Plugin::MojibakeTests", @@ -447,12 +476,17 @@ { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "@Author::ETHER/Test::ReportPrereqs", - "version" : "0.021" + "version" : "0.025" }, { "class" : "Dist::Zilla::Plugin::Test::Portability", + "config" : { + "Dist::Zilla::Plugin::Test::Portability" : { + "options" : "" + } + }, "name" : "@Author::ETHER/Test::Portability", - "version" : "2.000006" + "version" : "2.001000" }, { "class" : "Dist::Zilla::Plugin::Test::CleanNamespaces", @@ -468,7 +502,7 @@ { "class" : "Dist::Zilla::Plugin::Git::Describe", "name" : "@Author::ETHER/Git::Describe", - "version" : "0.006" + "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::SurgicalPodWeaver", @@ -484,98 +518,108 @@ "plugins" : [ { "class" : "Pod::Weaver::Plugin::EnsurePod5", - "name" : "@CorePrep/EnsurePod5", - "version" : "4.012" + "name" : "@Author::ETHER/EnsurePod5", + "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::H1Nester", - "name" : "@CorePrep/H1Nester", - "version" : "4.012" + "name" : "@Author::ETHER/H1Nester", + "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", "name" : "@Author::ETHER/SingleEncoding", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/List", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/Verbatim", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/header", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Name", "name" : "@Author::ETHER/Name", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Version", "name" : "@Author::ETHER/Version", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/prelude", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "TYPES", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Leftovers", "name" : "@Author::ETHER/Leftovers", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/postlude", - "version" : "4.012" + "version" : "4.015" + }, + { + "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" : "@Author::ETHER/Authors", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Contributors", @@ -585,12 +629,12 @@ { "class" : "Pod::Weaver::Section::Legal", "name" : "@Author::ETHER/Legal", - "version" : "4.012" + "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/footer", - "version" : "4.012" + "version" : "4.015" } ] } @@ -599,16 +643,6 @@ "version" : "0.0023" }, { - "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", - "config" : { - "Dist::Zilla::Role::FileWatcher" : { - "version" : "0.006" - } - }, - "name" : "@Author::ETHER/ReadmeAnyFromPod", - "version" : "0.150250" - }, - { "class" : "Dist::Zilla::Plugin::GithubMeta", "name" : "@Author::ETHER/GithubMeta", "version" : "0.54" @@ -619,20 +653,6 @@ "version" : "1.21" }, { - "class" : "Dist::Zilla::Plugin::AuthorityFromModule", - "config" : { - "Dist::Zilla::Plugin::AuthorityFromModule" : { - "module" : "MooseX::UndefTolerant" - }, - "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000027", - "version" : "0.003" - } - }, - "name" : "@Author::ETHER/AuthorityFromModule", - "version" : "0.006" - }, - { "class" : "Dist::Zilla::Plugin::Authority", "name" : "@Author::ETHER/Authority", "version" : "1.009" @@ -640,7 +660,7 @@ { "class" : "Dist::Zilla::Plugin::MetaNoIndex", "name" : "@Author::ETHER/MetaNoIndex", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", @@ -653,23 +673,29 @@ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "5.039" + "version" : "6.008" } - ] + ], + "include_underscores" : 0 }, "Dist::Zilla::Role::MetaProvider::Provider" : { - "inherit_missing" : "0", - "inherit_version" : "0", - "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.003001" + "version" : "2.004002" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::ETHER/MetaConfig", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Keywords", @@ -679,32 +705,17 @@ } }, "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.014" + "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::ETHER/AutoPrereqs", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps", "name" : "@Author::ETHER/Prereqs::AuthorDeps", - "version" : "0.005" + "version" : "0.006" }, { "class" : "Dist::Zilla::Plugin::MinimumPerl", @@ -720,7 +731,7 @@ } }, "name" : "@Author::ETHER/pluginbundle_version", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -731,17 +742,20 @@ } }, "name" : "@Author::ETHER/pod_weaving", - "version" : "5.039" + "version" : "6.008" }, { "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.019" + "version" : "0.023" }, { "class" : "Dist::Zilla::Plugin::ModuleBuildTiny::Fallback", @@ -757,7 +771,7 @@ } }, "name" : "ModuleBuild, via ModuleBuildTiny::Fallback", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::ModuleBuildTiny", @@ -767,7 +781,7 @@ } }, "name" : "ModuleBuildTiny, via ModuleBuildTiny::Fallback", - "version" : "0.013" + "version" : "0.015" } ] }, @@ -776,18 +790,32 @@ } }, "name" : "@Author::ETHER/ModuleBuildTiny::Fallback", - "version" : "0.018" + "version" : "0.023" + }, + { + "class" : "Dist::Zilla::Plugin::Git::Contributors", + "config" : { + "Dist::Zilla::Plugin::Git::Contributors" : { + "git --version" : "2.10.0", + "include_authors" : 0, + "include_releaser" : 1, + "order_by" : "commits", + "paths" : [] + } + }, + "name" : "@Author::ETHER/Git::Contributors", + "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::StaticInstall", "config" : { "Dist::Zilla::Plugin::StaticInstall" : { - "dry_run" : 0, + "dry_run" : 1, "mode" : "auto" } }, "name" : "@Author::ETHER/StaticInstall", - "version" : "0.008" + "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::RunExtraTests", @@ -797,7 +825,7 @@ } }, "name" : "@Author::ETHER/RunExtraTests", - "version" : "0.028" + "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::CheckSelfDependency", @@ -808,8 +836,8 @@ ] }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000027", - "version" : "0.003" + "Module::Metadata" : "1.000033", + "version" : "0.004" } }, "name" : "@Author::ETHER/CheckSelfDependency", @@ -827,7 +855,7 @@ } }, "name" : "@Author::ETHER/.ackrc", - "version" : "0.042" + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", @@ -836,12 +864,12 @@ "eval" : [ "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" ], - "fatal_errors" : 1, + "fatal_errors" : 0, "quiet" : 1 } }, "name" : "@Author::ETHER/.latest", - "version" : "0.042" + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::CheckStrictVersion", @@ -864,7 +892,7 @@ } }, "name" : "@Author::ETHER/initial check", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts", @@ -874,7 +902,7 @@ } }, "name" : "@Author::ETHER/Git::CheckFor::MergeConflicts", - "version" : "0.013" + "version" : "0.014" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch", @@ -884,22 +912,22 @@ } }, "name" : "@Author::ETHER/Git::CheckFor::CorrectBranch", - "version" : "0.013" + "version" : "0.014" }, { "class" : "Dist::Zilla::Plugin::Git::Remote::Check", "name" : "@Author::ETHER/Git::Remote::Check", - "version" : "0.2.0" + "version" : "0.1.2" }, { "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed", "name" : "@Author::ETHER/CheckPrereqsIndexed", - "version" : "0.016" + "version" : "0.020" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::ETHER/TestRelease", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Git::Check", @@ -917,17 +945,31 @@ } }, "name" : "@Author::ETHER/after tests", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::CheckIssues", "name" : "@Author::ETHER/CheckIssues", - "version" : "0.008" + "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::ETHER/UploadToCPAN", - "version" : "5.039" + "version" : "6.008" + }, + { + "class" : "Dist::Zilla::Plugin::Run::AfterRelease", + "config" : { + "Dist::Zilla::Plugin::Run::Role::Runner" : { + "eval" : [ + "unlink 'LICENCE'" + ], + "fatal_errors" : 1, + "quiet" : 1 + } + }, + "name" : "@Author::ETHER/remove old LICENCE", + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", @@ -948,6 +990,16 @@ "version" : "0.006" }, { + "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", + "config" : { + "Dist::Zilla::Role::FileWatcher" : { + "version" : "0.006" + } + }, + "name" : "@Author::ETHER/ReadmeAnyFromPod", + "version" : "0.161170" + }, + { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { @@ -958,7 +1010,11 @@ }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ - "Changes" + "CONTRIBUTING", + "Changes", + "INSTALL", + "LICENCE", + "README.pod" ], "allow_dirty_match" : [], "changelog" : "Changes" @@ -971,7 +1027,7 @@ } }, "name" : "@Author::ETHER/release snapshot", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", @@ -980,7 +1036,7 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v0.20", + "tag" : "v0.21", "tag_format" : "v%v", "tag_message" : "v%v%t" }, @@ -992,7 +1048,7 @@ } }, "name" : "@Author::ETHER/Git::Tag", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::GitHub::Update", @@ -1002,7 +1058,7 @@ } }, "name" : "@Author::ETHER/GitHub::Update", - "version" : "0.41" + "version" : "0.42" }, { "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", @@ -1023,7 +1079,7 @@ { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "@Author::ETHER/NextRelease", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", @@ -1049,7 +1105,7 @@ } }, "name" : "@Author::ETHER/post-release commit", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Git::Push", @@ -1065,7 +1121,7 @@ } }, "name" : "@Author::ETHER/Git::Push", - "version" : "2.036" + "version" : "2.039" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", @@ -1079,7 +1135,7 @@ } }, "name" : "@Author::ETHER/install release", - "version" : "0.042" + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", @@ -1093,98 +1149,101 @@ } }, "name" : "@Author::ETHER/release complete", - "version" : "0.042" + "version" : "0.043" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::ETHER/ConfirmRelease", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::MetaResources", "name" : "MetaResources", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::Test::CheckBreaks", "config" : { "Dist::Zilla::Plugin::Test::CheckBreaks" : { - "conflicts_module" : "Moose::Conflicts" + "conflicts_module" : [ + "Module::Runtime::Conflicts", + "Moose::Conflicts" + ], + "no_forced_deps" : 0 }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000027", - "version" : "0.003" + "Module::Metadata" : "1.000033", + "version" : "0.004" } }, "name" : "Test::CheckBreaks", - "version" : "0.012" + "version" : "0.017" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", - "version" : "5.039" + "version" : "6.008" }, { "class" : "Dist::Zilla::Plugin::VerifyPhases", "name" : "@Author::ETHER/PHASE VERIFICATION", - "version" : "0.013" + "version" : "0.014" } ], "zilla" : { "class" : "Dist::Zilla::Dist::Builder", "config" : { - "is_trial" : "0" + "is_trial" : 0 }, - "version" : "5.039" + "version" : "6.008" } }, - "x_authority" : "cpan:ETHER", - "x_authority_from_module" : "MooseX::UndefTolerant", + "x_authority" : "cpan:GPHAT", "x_contributors" : [ "Karen Etheridge ", "Dave Rolsky ", @@ -1192,7 +1251,6 @@ "Jesse Luehrs ", "Chris Andrews " ], - "x_permissions_from_module" : "MooseX::UndefTolerant", - "x_static_install" : 1 + "x_serialization_backend" : "Cpanel::JSON::XS version 3.0218" } diff -Nru libmoosex-undeftolerant-perl-0.20/META.yml libmoosex-undeftolerant-perl-0.21/META.yml --- libmoosex-undeftolerant-perl-0.20/META.yml 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/META.yml 2016-10-23 01:05:21.000000000 +0000 @@ -3,19 +3,19 @@ author: - 'Cory G Watson ' build_requires: - ExtUtils::MakeMaker: '0' File::Spec: '0' + Module::Metadata: '0' Test::Fatal: '0' Test::Moose: '0' Test::More: '0.88' - Test::NoWarnings: '1.04' + if: '0' lib: '0' perl: '5.006' configure_requires: - Module::Build::Tiny: '0.007' + Module::Build::Tiny: '0.034' perl: '5.006' dynamic_config: 0 -generated_by: 'Dist::Zilla version 5.039, CPAN::Meta::Converter version 2.150005' +generated_by: 'Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -28,28 +28,28 @@ provides: MooseX::UndefTolerant: file: lib/MooseX/UndefTolerant.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::ApplicationToClass: file: lib/MooseX/UndefTolerant/ApplicationToClass.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::ApplicationToRole: file: lib/MooseX/UndefTolerant/ApplicationToRole.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::Attribute: file: lib/MooseX/UndefTolerant/Attribute.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::Class: file: lib/MooseX/UndefTolerant/Class.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::Composite: file: lib/MooseX/UndefTolerant/Composite.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::Constructor: file: lib/MooseX/UndefTolerant/Constructor.pm - version: '0.20' + version: '0.21' MooseX::UndefTolerant::Role: file: lib/MooseX/UndefTolerant/Role.pm - version: '0.20' + version: '0.21' requires: Moose: '0.89' Moose::Exporter: '0' @@ -64,10 +64,10 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-UndefTolerant homepage: https://github.com/moose/MooseX-UndefTolerant repository: https://github.com/moose/MooseX-UndefTolerant.git -version: '0.20' +version: '0.21' x_Dist_Zilla: perl: - version: '5.023001' + version: '5.025006' plugins: - class: Dist::Zilla::Plugin::Prereqs @@ -76,7 +76,7 @@ phase: develop type: requires name: '@Author::ETHER/bundle_plugins' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::RewriteVersion::Transitional config: @@ -99,33 +99,35 @@ modules: - Dist::Zilla::PluginBundle::Author::ETHER phase: build + run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, build' - version: '0.045' + 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.045' + version: '0.051' - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' - version: '5.039' - - - class: Dist::Zilla::Plugin::FileFinder::ByName - name: '@Author::ETHER/ExtraTestFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Git::GatherDir config: Dist::Zilla::Plugin::GatherDir: - exclude_filename: [] + exclude_filename: + - CONTRIBUTING + - INSTALL + - LICENCE + - README.pod exclude_match: [] follow_symlinks: 0 include_dotfiles: 0 @@ -135,43 +137,47 @@ Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::License name: '@Author::ETHER/License' - version: '5.039' + version: '6.008' - - 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.006' + version: '0.012' - class: Dist::Zilla::Plugin::InstallGuide name: '@Author::ETHER/InstallGuide' - version: '1.200006' + version: '1.200007' - class: Dist::Zilla::Plugin::Test::Compile config: @@ -200,7 +206,7 @@ - ':ExecFiles' - '@Author::ETHER/Examples' - ':TestFiles' - - '@Author::ETHER/ExtraTestFiles' + - ':ExtraTestFiles' name: '@Author::ETHER/Test::NoTabs' version: '0.15' - @@ -209,42 +215,57 @@ Dist::Zilla::Plugin::Test::EOL: filename: xt/author/eol.t finder: - - ':InstallModules' - ':ExecFiles' - - '@Author::ETHER/Examples' + - ':ExtraTestFiles' + - ':InstallModules' - ':TestFiles' - - '@Author::ETHER/ExtraTestFiles' - trailing_whitespace: '1' + - '@Author::ETHER/Examples' + trailing_whitespace: 1 name: '@Author::ETHER/Test::EOL' - version: '0.18' + version: '0.19' - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Test::CPAN::Changes + config: + Dist::Zilla::Plugin::Test::CPAN::Changes: + changelog: Changes name: '@Author::ETHER/Test::CPAN::Changes' - version: '0.009' + version: '0.012' - class: Dist::Zilla::Plugin::Test::ChangesHasContent name: '@Author::ETHER/Test::ChangesHasContent' - version: '0.008' + version: '0.010' - class: Dist::Zilla::Plugin::Test::MinimumVersion name: '@Author::ETHER/Test::MinimumVersion' - version: '2.000006' + version: '2.000007' - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::ETHER/PodSyntaxTests' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Test::PodSpelling + config: + Dist::Zilla::Plugin::Test::PodSpelling: + directories: + - examples + - lib + - script + - t + - xt + spell_cmd: '' + stopwords: + - irc + wordlist: Pod::Wordlist name: '@Author::ETHER/Test::PodSpelling' - version: '2.006009' + version: '2.007003' - class: Dist::Zilla::Plugin::Test::Pod::No404s name: '@Author::ETHER/Test::Pod::No404s' - version: '1.002' + version: '1.003' - class: Dist::Zilla::Plugin::Test::Kwalitee config: @@ -252,7 +273,7 @@ filename: xt/author/kwalitee.t skiptest: [] name: '@Author::ETHER/Test::Kwalitee' - version: '2.11' + version: '2.12' - class: Dist::Zilla::Plugin::MojibakeTests name: '@Author::ETHER/MojibakeTests' @@ -260,11 +281,14 @@ - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: '@Author::ETHER/Test::ReportPrereqs' - version: '0.021' + version: '0.025' - class: Dist::Zilla::Plugin::Test::Portability + config: + Dist::Zilla::Plugin::Test::Portability: + options: '' name: '@Author::ETHER/Test::Portability' - version: '2.000006' + version: '2.001000' - class: Dist::Zilla::Plugin::Test::CleanNamespaces config: @@ -276,7 +300,7 @@ - class: Dist::Zilla::Plugin::Git::Describe name: '@Author::ETHER/Git::Describe' - version: '0.006' + version: '0.007' - class: Dist::Zilla::Plugin::SurgicalPodWeaver config: @@ -289,80 +313,88 @@ plugins: - class: Pod::Weaver::Plugin::EnsurePod5 - name: '@CorePrep/EnsurePod5' - version: '4.012' + name: '@Author::ETHER/EnsurePod5' + version: '4.015' - class: Pod::Weaver::Plugin::H1Nester - name: '@CorePrep/H1Nester' - version: '4.012' + name: '@Author::ETHER/H1Nester' + version: '4.015' - class: Pod::Weaver::Plugin::SingleEncoding name: '@Author::ETHER/SingleEncoding' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/List' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/Verbatim' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/header' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Name name: '@Author::ETHER/Name' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Version name: '@Author::ETHER/Version' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/prelude' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Generic name: SYNOPSIS - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Generic name: DESCRIPTION - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Generic name: OVERVIEW - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Collect name: METHODS - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Collect name: FUNCTIONS - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Collect name: TYPES - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Leftovers name: '@Author::ETHER/Leftovers' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/postlude' - version: '4.012' + version: '4.015' + - + 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: '@Author::ETHER/Authors' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Contributors name: '@Author::ETHER/Contributors' @@ -370,21 +402,14 @@ - class: Pod::Weaver::Section::Legal name: '@Author::ETHER/Legal' - version: '4.012' + version: '4.015' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/footer' - version: '4.012' + version: '4.015' name: '@Author::ETHER/SurgicalPodWeaver' version: '0.0023' - - class: Dist::Zilla::Plugin::ReadmeAnyFromPod - config: - Dist::Zilla::Role::FileWatcher: - version: '0.006' - name: '@Author::ETHER/ReadmeAnyFromPod' - version: '0.150250' - - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::ETHER/GithubMeta' version: '0.54' @@ -393,23 +418,13 @@ name: '@Author::ETHER/AutoMetaResources' version: '1.21' - - class: Dist::Zilla::Plugin::AuthorityFromModule - config: - Dist::Zilla::Plugin::AuthorityFromModule: - module: MooseX::UndefTolerant - Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000027' - version: '0.003' - name: '@Author::ETHER/AuthorityFromModule' - version: '0.006' - - class: Dist::Zilla::Plugin::Authority name: '@Author::ETHER/Authority' version: '1.009' - class: Dist::Zilla::Plugin::MetaNoIndex name: '@Author::ETHER/MetaNoIndex' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::MetaProvides::Package config: @@ -420,43 +435,37 @@ - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '5.039' + version: '6.008' + include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: + $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.003001' + version: '2.004002' - class: Dist::Zilla::Plugin::MetaConfig name: '@Author::ETHER/MetaConfig' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Keywords config: Dist::Zilla::Plugin::Keywords: keywords: [] 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.014' + version: '0.007' - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::ETHER/AutoPrereqs' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Prereqs::AuthorDeps name: '@Author::ETHER/Prereqs::AuthorDeps' - version: '0.005' + version: '0.006' - class: Dist::Zilla::Plugin::MinimumPerl name: '@Author::ETHER/MinimumPerl' @@ -468,7 +477,7 @@ phase: develop type: recommends name: '@Author::ETHER/pluginbundle_version' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Prereqs config: @@ -476,14 +485,16 @@ phase: develop type: requires name: '@Author::ETHER/pod_weaving' - version: '5.039' + version: '6.008' - 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.019' + version: '0.023' - class: Dist::Zilla::Plugin::ModuleBuildTiny::Fallback config: @@ -496,33 +507,44 @@ Dist::Zilla::Role::TestRunner: default_jobs: 9 name: 'ModuleBuild, via ModuleBuildTiny::Fallback' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::ModuleBuildTiny config: Dist::Zilla::Role::TestRunner: default_jobs: 9 name: 'ModuleBuildTiny, via ModuleBuildTiny::Fallback' - version: '0.013' + version: '0.015' Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/ModuleBuildTiny::Fallback' - version: '0.018' + version: '0.023' + - + class: Dist::Zilla::Plugin::Git::Contributors + config: + Dist::Zilla::Plugin::Git::Contributors: + 'git --version': 2.10.0 + include_authors: 0 + include_releaser: 1 + order_by: commits + paths: [] + name: '@Author::ETHER/Git::Contributors' + version: '0.029' - class: Dist::Zilla::Plugin::StaticInstall config: Dist::Zilla::Plugin::StaticInstall: - dry_run: 0 + dry_run: 1 mode: auto name: '@Author::ETHER/StaticInstall' - version: '0.008' + version: '0.010' - class: Dist::Zilla::Plugin::RunExtraTests config: Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/RunExtraTests' - version: '0.028' + version: '0.029' - class: Dist::Zilla::Plugin::CheckSelfDependency config: @@ -530,8 +552,8 @@ finder: - ':InstallModules' Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000027' - version: '0.003' + Module::Metadata: '1.000033' + version: '0.004' name: '@Author::ETHER/CheckSelfDependency' version: '0.011' - @@ -543,17 +565,17 @@ run: - "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.042' + 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 + fatal_errors: 0 quiet: 1 name: '@Author::ETHER/.latest' - version: '0.042' + version: '0.043' - class: Dist::Zilla::Plugin::CheckStrictVersion name: '@Author::ETHER/CheckStrictVersion' @@ -570,33 +592,33 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/initial check' - version: '2.036' + 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.013' + version: '0.014' - class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch config: Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/Git::CheckFor::CorrectBranch' - version: '0.013' + version: '0.014' - class: Dist::Zilla::Plugin::Git::Remote::Check name: '@Author::ETHER/Git::Remote::Check' - version: 0.2.0 + version: 0.1.2 - class: Dist::Zilla::Plugin::CheckPrereqsIndexed name: '@Author::ETHER/CheckPrereqsIndexed' - version: '0.016' + version: '0.020' - class: Dist::Zilla::Plugin::TestRelease name: '@Author::ETHER/TestRelease' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Git::Check config: @@ -609,15 +631,25 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/after tests' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::CheckIssues name: '@Author::ETHER/CheckIssues' - version: '0.008' + version: '0.010' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::ETHER/UploadToCPAN' - version: '5.039' + version: '6.008' + - + class: Dist::Zilla::Plugin::Run::AfterRelease + config: + Dist::Zilla::Plugin::Run::Role::Runner: + eval: + - "unlink 'LICENCE'" + fatal_errors: 1 + quiet: 1 + name: '@Author::ETHER/remove old LICENCE' + version: '0.043' - class: Dist::Zilla::Plugin::CopyFilesFromRelease config: @@ -633,6 +665,13 @@ name: '@Author::ETHER/CopyFilesFromRelease' version: '0.006' - + class: Dist::Zilla::Plugin::ReadmeAnyFromPod + config: + Dist::Zilla::Role::FileWatcher: + version: '0.006' + name: '@Author::ETHER/ReadmeAnyFromPod' + version: '0.161170' + - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: @@ -641,7 +680,11 @@ commit_msg: '%N-%v%t%n%n%c' Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: + - CONTRIBUTING - Changes + - INSTALL + - LICENCE + - README.pod allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: @@ -649,7 +692,7 @@ Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/release snapshot' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::Git::Tag config: @@ -657,7 +700,7 @@ branch: ~ changelog: Changes signed: 0 - tag: v0.20 + tag: v0.21 tag_format: v%v tag_message: v%v%t Dist::Zilla::Role::Git::Repo: @@ -665,14 +708,14 @@ Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/Git::Tag' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::GitHub::Update config: Dist::Zilla::Plugin::GitHub::Update: metacpan: 1 name: '@Author::ETHER/GitHub::Update' - version: '0.41' + version: '0.42' - class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional config: @@ -688,7 +731,7 @@ - class: Dist::Zilla::Plugin::NextRelease name: '@Author::ETHER/NextRelease' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Git::Commit config: @@ -706,7 +749,7 @@ Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/post-release commit' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::Git::Push config: @@ -717,7 +760,7 @@ Dist::Zilla::Role::Git::Repo: repo_root: . name: '@Author::ETHER/Git::Push' - version: '2.036' + version: '2.039' - class: Dist::Zilla::Plugin::Run::AfterRelease config: @@ -727,7 +770,7 @@ run: - REDACTED name: '@Author::ETHER/install release' - version: '0.042' + version: '0.043' - class: Dist::Zilla::Plugin::Run::AfterRelease config: @@ -737,81 +780,82 @@ fatal_errors: 1 quiet: 1 name: '@Author::ETHER/release complete' - version: '0.042' + version: '0.043' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::ETHER/ConfirmRelease' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::MetaResources name: MetaResources - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::Test::CheckBreaks config: Dist::Zilla::Plugin::Test::CheckBreaks: - conflicts_module: Moose::Conflicts + conflicts_module: + - Module::Runtime::Conflicts + - Moose::Conflicts + no_forced_deps: 0 Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000027' - version: '0.003' + Module::Metadata: '1.000033' + version: '0.004' name: Test::CheckBreaks - version: '0.012' + version: '0.017' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' - version: '5.039' + version: '6.008' - class: Dist::Zilla::Plugin::VerifyPhases name: '@Author::ETHER/PHASE VERIFICATION' - version: '0.013' + version: '0.014' zilla: class: Dist::Zilla::Dist::Builder config: is_trial: '0' - version: '5.039' -x_authority: cpan:ETHER -x_authority_from_module: MooseX::UndefTolerant + version: '6.008' +x_authority: cpan:GPHAT x_contributors: - 'Karen Etheridge ' - 'Dave Rolsky ' - 'Cory G Watson ' - 'Jesse Luehrs ' - 'Chris Andrews ' -x_permissions_from_module: MooseX::UndefTolerant -x_static_install: 1 +x_serialization_backend: 'YAML::Tiny version 1.69' diff -Nru libmoosex-undeftolerant-perl-0.20/README libmoosex-undeftolerant-perl-0.21/README --- libmoosex-undeftolerant-perl-0.20/README 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/README 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ This archive contains the distribution MooseX-UndefTolerant, -version 0.20: +version 0.21: Make your attribute(s) tolerant to undef initialization @@ -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.039. +This README file was generated by Dist::Zilla::Plugin::Readme v6.008. diff -Nru libmoosex-undeftolerant-perl-0.20/t/00-report-prereqs.dd libmoosex-undeftolerant-perl-0.21/t/00-report-prereqs.dd --- libmoosex-undeftolerant-perl-0.20/t/00-report-prereqs.dd 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/00-report-prereqs.dd 2016-10-23 01:05:21.000000000 +0000 @@ -1,34 +1,33 @@ do { my $x = { 'configure' => { 'requires' => { - 'Module::Build::Tiny' => '0.007', + 'Module::Build::Tiny' => '0.034', 'perl' => '5.006' } }, 'develop' => { 'recommends' => { - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.102' + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.121' }, 'requires' => { 'Dist::Zilla' => '5', 'Dist::Zilla::Plugin::Authority' => '1.009', - 'Dist::Zilla::Plugin::AuthorityFromModule' => '0.002', 'Dist::Zilla::Plugin::AutoMetaResources' => '0', - 'Dist::Zilla::Plugin::AutoPrereqs' => '0', + 'Dist::Zilla::Plugin::AutoPrereqs' => '5.038', 'Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional' => '0.004', 'Dist::Zilla::Plugin::CheckIssues' => '0', - 'Dist::Zilla::Plugin::CheckPrereqsIndexed' => '0', + 'Dist::Zilla::Plugin::CheckPrereqsIndexed' => '0.019', 'Dist::Zilla::Plugin::CheckSelfDependency' => '0', 'Dist::Zilla::Plugin::CheckStrictVersion' => '0', 'Dist::Zilla::Plugin::ConfirmRelease' => '0', 'Dist::Zilla::Plugin::CopyFilesFromRelease' => '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::Contributors' => '0.029', 'Dist::Zilla::Plugin::Git::Describe' => '0.004', 'Dist::Zilla::Plugin::Git::GatherDir' => '2.016', 'Dist::Zilla::Plugin::Git::Push' => '0', @@ -36,7 +35,7 @@ 'Dist::Zilla::Plugin::Git::Tag' => '0', 'Dist::Zilla::Plugin::GitHub::Update' => '0.40', 'Dist::Zilla::Plugin::GithubMeta' => '0.54', - 'Dist::Zilla::Plugin::InstallGuide' => '0', + 'Dist::Zilla::Plugin::InstallGuide' => '1.200005', 'Dist::Zilla::Plugin::Keywords' => '0.004', 'Dist::Zilla::Plugin::License' => '5.038', 'Dist::Zilla::Plugin::MakeMaker::Fallback' => '0.012', @@ -52,34 +51,34 @@ 'Dist::Zilla::Plugin::ModuleBuildTiny::Fallback' => '0.018', 'Dist::Zilla::Plugin::MojibakeTests' => '0.8', 'Dist::Zilla::Plugin::NextRelease' => '5.033', - 'Dist::Zilla::Plugin::PodSyntaxTests' => '0', + 'Dist::Zilla::Plugin::PodSyntaxTests' => '5.040', '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::RewriteVersion::Transitional' => '0.004', - 'Dist::Zilla::Plugin::Run::AfterBuild' => '0.038', + 'Dist::Zilla::Plugin::Run::AfterBuild' => '0.041', 'Dist::Zilla::Plugin::Run::AfterRelease' => '0.038', 'Dist::Zilla::Plugin::RunExtraTests' => '0.024', 'Dist::Zilla::Plugin::StaticInstall' => '0.005', 'Dist::Zilla::Plugin::SurgicalPodWeaver' => '0', - 'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0.008', + 'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0.012', 'Dist::Zilla::Plugin::Test::ChangesHasContent' => '0', - 'Dist::Zilla::Plugin::Test::CheckBreaks' => '0', + 'Dist::Zilla::Plugin::Test::CheckBreaks' => '0.017', 'Dist::Zilla::Plugin::Test::CleanNamespaces' => '0.006', 'Dist::Zilla::Plugin::Test::Compile' => '2.039', 'Dist::Zilla::Plugin::Test::EOL' => '0.17', - 'Dist::Zilla::Plugin::Test::Kwalitee' => '2.06', + 'Dist::Zilla::Plugin::Test::Kwalitee' => '2.10', 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000003', 'Dist::Zilla::Plugin::Test::NoTabs' => '0.08', - 'Dist::Zilla::Plugin::Test::Pod::No404s' => '1.002', - 'Dist::Zilla::Plugin::Test::PodSpelling' => '2.006001', - 'Dist::Zilla::Plugin::Test::Portability' => '0', - 'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0.019', + 'Dist::Zilla::Plugin::Test::Pod::No404s' => '1.003', + 'Dist::Zilla::Plugin::Test::PodSpelling' => '2.006003', + '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.094', + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.097', 'File::Spec' => '0', 'IO::Handle' => '0', 'IPC::Open3' => '0', @@ -90,11 +89,13 @@ 'Test::CleanNamespaces' => '0.15', 'Test::EOL' => '0', 'Test::Kwalitee' => '1.21', + 'Test::MinimumVersion' => '0', 'Test::Mojibake' => '0', 'Test::More' => '0.96', 'Test::NoTabs' => '0', 'Test::Pod' => '1.41', 'Test::Pod::No404s' => '0', + 'Test::Portability::Files' => '0', 'Test::Spelling' => '0.12', 'blib' => '1.01', 'perl' => '5.006' @@ -116,12 +117,12 @@ 'CPAN::Meta' => '2.120900' }, 'requires' => { - 'ExtUtils::MakeMaker' => '0', 'File::Spec' => '0', + 'Module::Metadata' => '0', 'Test::Fatal' => '0', 'Test::Moose' => '0', 'Test::More' => '0.88', - 'Test::NoWarnings' => '1.04', + 'if' => '0', 'lib' => '0', 'perl' => '5.006' } diff -Nru libmoosex-undeftolerant-perl-0.20/t/00-report-prereqs.t libmoosex-undeftolerant-perl-0.21/t/00-report-prereqs.t --- libmoosex-undeftolerant-perl-0.20/t/00-report-prereqs.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/00-report-prereqs.t 2016-10-23 01:05:21.000000000 +0000 @@ -3,11 +3,11 @@ use strict; use warnings; -# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.021 +# 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,7 +60,10 @@ } my @include = qw( - + JSON::PP + Sub::Name + YAML + autodie ); my @exclude = qw( @@ -78,10 +81,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 +125,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]; diff -Nru libmoosex-undeftolerant-perl-0.20/t/basic.t libmoosex-undeftolerant-perl-0.21/t/basic.t --- libmoosex-undeftolerant-perl-0.20/t/basic.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/basic.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Moose; { diff -Nru libmoosex-undeftolerant-perl-0.20/t/constructor.t libmoosex-undeftolerant-perl-0.21/t/constructor.t --- libmoosex-undeftolerant-perl-0.20/t/constructor.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/constructor.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Moose; use lib 't/lib'; diff -Nru libmoosex-undeftolerant-perl-0.20/t/defaults.t libmoosex-undeftolerant-perl-0.21/t/defaults.t --- libmoosex-undeftolerant-perl-0.20/t/defaults.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/defaults.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Fatal; use Test::Moose; diff -Nru libmoosex-undeftolerant-perl-0.20/t/roles.t libmoosex-undeftolerant-perl-0.21/t/roles.t --- libmoosex-undeftolerant-perl-0.20/t/roles.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/roles.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use Test::Moose; use Test::Fatal; diff -Nru libmoosex-undeftolerant-perl-0.20/t/undef_init_arg.t libmoosex-undeftolerant-perl-0.21/t/undef_init_arg.t --- libmoosex-undeftolerant-perl-0.20/t/undef_init_arg.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/undef_init_arg.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,10 +1,10 @@ use strict; use warnings; -use Test::More tests => 7; +use Test::More 0.88; use Test::Fatal; use Test::Moose; -use Test::NoWarnings 1.04 ':early'; +use if $ENV{AUTHOR_TESTING}, 'Test::Warnings'; { package Foo; @@ -29,3 +29,4 @@ is(exception { my $foo = Foo->new(bar => 1234) }, undef, 'constructed with defined value'); } 'Foo'; +done_testing; diff -Nru libmoosex-undeftolerant-perl-0.20/t/zzz-check-breaks.t libmoosex-undeftolerant-perl-0.21/t/zzz-check-breaks.t --- libmoosex-undeftolerant-perl-0.20/t/zzz-check-breaks.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/t/zzz-check-breaks.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,9 +1,17 @@ use strict; use warnings; -# this test was generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.012 +# this test was generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.017 -use Test::More 0.88; +use Test::More tests => 3; + +SKIP: { + eval 'require Module::Runtime::Conflicts; Module::Runtime::Conflicts->check_conflicts'; + skip('no Module::Runtime::Conflicts module found', 1) if not $INC{'Module/Runtime/Conflicts.pm'}; + + diag $@ if $@; + pass 'conflicts checked via Module::Runtime::Conflicts'; +} SKIP: { eval 'require Moose::Conflicts; Moose::Conflicts->check_conflicts'; @@ -14,5 +22,3 @@ } pass 'no x_breaks data to check'; - -done_testing; diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/eol.t libmoosex-undeftolerant-perl-0.21/xt/author/eol.t --- libmoosex-undeftolerant-perl-0.20/xt/author/eol.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/eol.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; -# this test was generated with Dist::Zilla::Plugin::Test::EOL 0.18 +# this test was generated with Dist::Zilla::Plugin::Test::EOL 0.19 use Test::More 0.88; use Test::EOL; @@ -31,14 +31,14 @@ 'xt/author/kwalitee.t', 'xt/author/mojibake.t', 'xt/author/no-tabs.t', + 'xt/author/pod-no404s.t', 'xt/author/pod-spell.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', - 'xt/release/pod-no404s.t', - 'xt/release/pod-syntax.t', - 'xt/release/portability.t' + 'xt/release/minimum-version.t' ); eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files; diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/kwalitee.t libmoosex-undeftolerant-perl-0.21/xt/author/kwalitee.t --- libmoosex-undeftolerant-perl-0.20/xt/author/kwalitee.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/kwalitee.t 2016-10-23 01:05:21.000000000 +0000 @@ -1,4 +1,4 @@ -# this test was generated with Dist::Zilla::Plugin::Test::Kwalitee 2.11 +# this test was generated with Dist::Zilla::Plugin::Test::Kwalitee 2.12 use strict; use warnings; use Test::More 0.88; diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/no-tabs.t libmoosex-undeftolerant-perl-0.21/xt/author/no-tabs.t --- libmoosex-undeftolerant-perl-0.20/xt/author/no-tabs.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/no-tabs.t 2016-10-23 01:05:21.000000000 +0000 @@ -31,14 +31,14 @@ 'xt/author/kwalitee.t', 'xt/author/mojibake.t', 'xt/author/no-tabs.t', + 'xt/author/pod-no404s.t', 'xt/author/pod-spell.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', - 'xt/release/pod-no404s.t', - 'xt/release/pod-syntax.t', - 'xt/release/portability.t' + 'xt/release/minimum-version.t' ); notabs_ok($_) foreach @files; diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/pod-no404s.t libmoosex-undeftolerant-perl-0.21/xt/author/pod-no404s.t --- libmoosex-undeftolerant-perl-0.20/xt/author/pod-no404s.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/pod-no404s.t 2016-10-23 01:05:21.000000000 +0000 @@ -0,0 +1,21 @@ +#!perl + +use strict; +use warnings; +use Test::More; + +foreach my $env_skip ( qw( + SKIP_POD_NO404S + AUTOMATED_TESTING +) ){ + plan skip_all => "\$ENV{$env_skip} is set, skipping" + if $ENV{$env_skip}; +} + +eval "use Test::Pod::No404s"; +if ( $@ ) { + plan skip_all => 'Test::Pod::No404s required for testing POD'; +} +else { + all_pod_files_ok(); +} diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/pod-spell.t libmoosex-undeftolerant-perl-0.21/xt/author/pod-spell.t --- libmoosex-undeftolerant-perl-0.20/xt/author/pod-spell.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/pod-spell.t 2016-10-23 01:05:21.000000000 +0000 @@ -2,38 +2,39 @@ use warnings; use Test::More; -# generated by Dist::Zilla::Plugin::Test::PodSpelling 2.006009 +# generated by Dist::Zilla::Plugin::Test::PodSpelling 2.007003 use Test::Spelling 0.12; use Pod::Wordlist; add_stopwords(); -all_pod_files_spelling_ok( qw( bin lib ) ); +all_pod_files_spelling_ok( qw( examples lib script t xt ) ); __DATA__ -Cory -Watson -gphat -at -cpan -Karen -Etheridge -ether -Dave -Rolsky -autarch -Jesse -Luehrs -doy -Chris Andrews -chrisandrews -lib -MooseX -UndefTolerant ApplicationToClass ApplicationToRole Attribute +Chris Class Composite Constructor +Cory +Dave +Etheridge +Jesse +Karen +Luehrs +MooseX Role +Rolsky +UndefTolerant +Watson +at +autarch +chrisandrews +cpan +doy +ether +gphat +irc +lib diff -Nru libmoosex-undeftolerant-perl-0.20/xt/author/pod-syntax.t libmoosex-undeftolerant-perl-0.21/xt/author/pod-syntax.t --- libmoosex-undeftolerant-perl-0.20/xt/author/pod-syntax.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/pod-syntax.t 2016-10-23 01:05:21.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-undeftolerant-perl-0.20/xt/author/portability.t libmoosex-undeftolerant-perl-0.21/xt/author/portability.t --- libmoosex-undeftolerant-perl-0.20/xt/author/portability.t 1970-01-01 00:00:00.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/author/portability.t 2016-10-23 01:05:21.000000000 +0000 @@ -0,0 +1,10 @@ +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-undeftolerant-perl-0.20/xt/release/changes_has_content.t libmoosex-undeftolerant-perl-0.21/xt/release/changes_has_content.t --- libmoosex-undeftolerant-perl-0.20/xt/release/changes_has_content.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/release/changes_has_content.t 2016-10-23 01:05:21.000000000 +0000 @@ -4,7 +4,7 @@ note 'Checking Changes'; my $changes_file = 'Changes'; -my $newver = '0.20'; +my $newver = '0.21'; my $trial_token = '-TRIAL'; SKIP: { diff -Nru libmoosex-undeftolerant-perl-0.20/xt/release/cpan-changes.t libmoosex-undeftolerant-perl-0.21/xt/release/cpan-changes.t --- libmoosex-undeftolerant-perl-0.20/xt/release/cpan-changes.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/release/cpan-changes.t 2016-10-23 01:05:21.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-undeftolerant-perl-0.20/xt/release/pod-no404s.t libmoosex-undeftolerant-perl-0.21/xt/release/pod-no404s.t --- libmoosex-undeftolerant-perl-0.20/xt/release/pod-no404s.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/release/pod-no404s.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -#!perl - -use strict; -use warnings; -use Test::More; - -foreach my $env_skip ( qw( - SKIP_POD_NO404S - AUTOMATED_TESTING -) ){ - plan skip_all => "\$ENV{$env_skip} is set, skipping" - if $ENV{$env_skip}; -} - -eval "use Test::Pod::No404s"; -if ( $@ ) { - plan skip_all => 'Test::Pod::No404s required for testing POD'; -} -else { - all_pod_files_ok(); -} diff -Nru libmoosex-undeftolerant-perl-0.20/xt/release/pod-syntax.t libmoosex-undeftolerant-perl-0.21/xt/release/pod-syntax.t --- libmoosex-undeftolerant-perl-0.20/xt/release/pod-syntax.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/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-undeftolerant-perl-0.20/xt/release/portability.t libmoosex-undeftolerant-perl-0.21/xt/release/portability.t --- libmoosex-undeftolerant-perl-0.20/xt/release/portability.t 2015-08-16 02:45:29.000000000 +0000 +++ libmoosex-undeftolerant-perl-0.21/xt/release/portability.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +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();