Skip to content

Commit

Permalink
Build results of efc9201 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 10, 2014
1 parent a0ddcb4 commit ab3fa49
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 10 deletions.
24 changes: 23 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.

Expand Down
2 changes: 2 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
"FindBin" : "0",
"Test::Fatal" : "0",
"Test::File::ShareDir" : "0",
"Test::File::ShareDir::Module" : "0",
"Test::More" : "0.96"
}
}
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down
2 changes: 2 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down
7 changes: 4 additions & 3 deletions t/01_load.t
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
7 changes: 4 additions & 3 deletions t/02_fake_versions.t
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
7 changes: 4 additions & 3 deletions t/03_fake_versions_missing.t
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit ab3fa49

Please sign in to comment.