From ab3fa49f343c7f175a5c188e71c78420c91906ab Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Sun, 10 Aug 2014 22:33:36 +1200 Subject: [PATCH] Build results of efc9201 (on master) --- Changes | 24 +++++++++++++++++++++++- META.json | 2 ++ META.yml | 2 ++ Makefile.PL | 2 ++ t/00-report-prereqs.dd | 1 + t/01_load.t | 7 ++++--- t/02_fake_versions.t | 7 ++++--- t/03_fake_versions_missing.t | 7 ++++--- 8 files changed, 42 insertions(+), 10 deletions(-) diff --git a/Changes b/Changes index 892dbae..361efcb 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,23 @@ Release history for Gentoo-MetaEbuild-Spec-Base -1.000000 2014-08-10T10:23:36Z +1.000000 2014-08-10T10:30:57Z + [00 Major] + - Significant changes that may affect hand-operated downstreams. + + [01 Version Scheme] + - Migrated from x.y.z to x.yyyzzz + - This is the primary reason for the 1.x on the box + - https://questhub.io/realm/perl/quest/5388d3a9bbd0be2224000129 + + [02 Tooling Change] + - Moved to ExtUtils::MakeMaker + - Tookit dependencies for "latest" things now only "recommended" + - https://questhub.io/realm/perl/quest/5388cc12bbd0be5b2500011f + + [03 Some critical components changed] + - Path::Class -> Path::Tiny + - JSON::XS -> JSON::MaybeXS + [Dependencies::Stats] - Dependencies changed since 0.1.4, see misc/*.deps* for details - build: -1 @@ -9,6 +26,11 @@ Release history for Gentoo-MetaEbuild-Spec-Base - runtime: +4 ↓1 -3 - test: +2 -2 (recommends: +3) + [Misc] + - Report versions moved to Test::ReportVersions + - Compile test moved to ::PerFile + - Repo moved to kentnl org + 0.1.4 2012-01-04T05:16:00Z - Maintenance release. diff --git a/META.json b/META.json index 77e8c40..bbfa361 100644 --- a/META.json +++ b/META.json @@ -113,6 +113,7 @@ "FindBin" : "0", "Test::Fatal" : "0", "Test::File::ShareDir" : "0", + "Test::File::ShareDir::Module" : "0", "Test::More" : "0.96" } } @@ -204,6 +205,7 @@ "Test::CPAN::Meta" : "0.23", "Test::Fatal" : "0.013", "Test::File::ShareDir" : "1.000004", + "Test::File::ShareDir::Module" : "1.000004", "Test::Kwalitee" : "1.19", "Test::More" : "1.001003", "Test::Pod" : "1.48", diff --git a/META.yml b/META.yml index 196208a..3538715 100644 --- a/META.yml +++ b/META.yml @@ -8,6 +8,7 @@ build_requires: FindBin: '0' Test::Fatal: '0' Test::File::ShareDir: '0' + Test::File::ShareDir::Module: '0' Test::More: '0.96' configure_requires: ExtUtils::MakeMaker: '0' @@ -115,6 +116,7 @@ x_BuiltWith: Test::CPAN::Meta: '0.23' Test::Fatal: '0.013' Test::File::ShareDir: '1.000004' + Test::File::ShareDir::Module: '1.000004' Test::Kwalitee: '1.19' Test::More: '1.001003' Test::Pod: '1.48' diff --git a/Makefile.PL b/Makefile.PL index bcbed5d..659ac17 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -49,6 +49,7 @@ my %WriteMakefileArgs = ( "FindBin" => 0, "Test::Fatal" => 0, "Test::File::ShareDir" => 0, + "Test::File::ShareDir::Module" => 0, "Test::More" => "0.96" }, "VERSION" => "1.000000", @@ -76,6 +77,7 @@ my %FallbackPrereqs = ( "Scalar::Util" => 0, "Test::Fatal" => 0, "Test::File::ShareDir" => 0, + "Test::File::ShareDir::Module" => 0, "Test::More" => "0.96", "namespace::autoclean" => 0, "strict" => 0, diff --git a/t/00-report-prereqs.dd b/t/00-report-prereqs.dd index 2213188..e6fee81 100644 --- a/t/00-report-prereqs.dd +++ b/t/00-report-prereqs.dd @@ -98,6 +98,7 @@ do { my $x = { 'FindBin' => '0', 'Test::Fatal' => '0', 'Test::File::ShareDir' => '0', + 'Test::File::ShareDir::Module' => '0', 'Test::More' => '0.96' } } diff --git a/t/01_load.t b/t/01_load.t index e2522cd..c0161f4 100644 --- a/t/01_load.t +++ b/t/01_load.t @@ -4,9 +4,10 @@ use warnings; use Test::More 0.96; use FindBin; -use Test::File::ShareDir - -root => "$FindBin::Bin/../", - -share => { -module => { 'Gentoo::MetaEbuild::Spec::Base' => 'share' } }; +use Test::File::ShareDir::Module { + '-root' => "$FindBin::Bin/../", + 'Gentoo::MetaEbuild::Spec::Base' => 'share', +}; use Gentoo::MetaEbuild::Spec::Base; diff --git a/t/02_fake_versions.t b/t/02_fake_versions.t index 947da29..fbf1b5b 100644 --- a/t/02_fake_versions.t +++ b/t/02_fake_versions.t @@ -3,9 +3,10 @@ use warnings; use Test::More 0.96; use FindBin; -use Test::File::ShareDir - -root => "$FindBin::Bin/../", - -share => { -module => { 'Gentoo::MetaEbuild::Spec::Base' => 't/fake_spec' } }; +use Test::File::ShareDir::Module { + '-root' => "$FindBin::Bin/../", + 'Gentoo::MetaEbuild::Spec::Base' => 't/fake_spec', +}; use Gentoo::MetaEbuild::Spec::Base; diff --git a/t/03_fake_versions_missing.t b/t/03_fake_versions_missing.t index 8485a59..596aaa7 100644 --- a/t/03_fake_versions_missing.t +++ b/t/03_fake_versions_missing.t @@ -3,9 +3,10 @@ use warnings; use Test::More 0.96; use FindBin; -use Test::File::ShareDir - -root => "$FindBin::Bin/../", - -share => { -module => { 'Gentoo::MetaEbuild::Spec::Base' => 't/fake_spec' } }; +use Test::File::ShareDir::Module { + '-root' => "$FindBin::Bin/../", + 'Gentoo::MetaEbuild::Spec::Base' => 't/fake_spec', +}; use Test::Fatal;