Skip to content

Commit

Permalink
Build results of 9819f34 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Nov 29, 2013
1 parent 6c85a1d commit ce645bb
Show file tree
Hide file tree
Showing 24 changed files with 754 additions and 133 deletions.
50 changes: 40 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,49 @@
language: perl
perl:
- "5.16"
- "5.14"
- "5.18"
- "5.19"
env:
matrix:
- STERILIZE_ENV=0
- STERILIZE_ENV=1
matrix:
allow_failures:
- perl: "5.8"
- env: STERILIZE_ENV=0 RELEASE_TESTING=1 AUTHOR_TESTING=1
- env: STERILIZE_ENV=0 DEVELOPER_DEPS=1
include:
- perl: "5.8"
env: STERILIZE_ENV=0
- perl: "5.10"
env: STERILIZE_ENV=0
- perl: "5.12"
env: STERILIZE_ENV=0
- perl: "5.14"
env: STERILIZE_ENV=0
- perl: "5.16"
env: STERILIZE_ENV=0
- perl: "5.18"
env: STERILIZE_ENV=0
- perl: "5.19"
env: STERILIZE_ENV=0
- perl: "5.8"
env: STERILIZE_ENV=1
- perl: "5.10"
env: STERILIZE_ENV=1
- perl: "5.19"
env: STERILIZE_ENV=1
- perl: "5.19"
env: STERILIZE_ENV=0 DEVELOPER_DEPS=1
- perl: "5.19"
env: STERILIZE_ENV=0 RELEASE_TESTING=1 AUTHOR_TESTING=1
before_install:
- perlbrew list
- time perl ./maint-travis-ci/branch_reset.pl
- time perl ./maint-travis-ci/sterilize_env.pl
install:
- time cpanm --quiet --notest --mirror http://cpan.metacpan.org/ --installdeps .
- time perl ./maint-travis-ci/install_deps.pl
before_script:
- time perl ./maint-travis-ci/before_script.pl
script:
- time perl ./maint-travis-ci/script.pl
after_failure:
- perl ./maint-travis-ci/report_fail_ctx.pl
branches:
only:
- "master"
- "build/master"
- "releases"

8 changes: 4 additions & 4 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ use Module::Build 0.3601;

my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.4202"
"Module::Build" => "0.4203"
},
"configure_requires" => {
"Module::Build" => "0.4202"
"Module::Build" => "0.4203"
},
"dist_abstract" => "Depend on versions of modules the same as you have installed",
"dist_author" => [
"Kent Fredric <kentfredric\@gmail.com>"
],
"dist_name" => "Dist-Zilla-Plugin-Prereqs-MatchInstalled",
"dist_version" => "0.1.5",
"dist_version" => "0.1.6",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::Prereqs::MatchInstalled",
"recommends" => {},
Expand Down Expand Up @@ -47,7 +47,7 @@ my %module_build_args = (
my %fallback_build_requires = (
"Cwd" => 0,
"File::Copy::Recursive" => 0,
"Module::Build" => "0.4202",
"Module::Build" => "0.4203",
"Path::FindDev" => 0,
"Path::Tiny" => 0,
"Test::DZil" => 0,
Expand Down
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
Release history for Dist-Zilla-Plugin-Prereqs-MatchInstalled

0.1.6 2013-11-29T14:52:26Z
[Dependencies::Noteworthy]
- use Module::Build 0.4203

[Dependencies::Stats]
- Dependencies changed, see Changes.deps{,.all,.dev} for details
- build: ↑1
- configure: ↑1
- develop: ↑1

[Documentation]
- Reference Prereqs::MatchInstalled::All ( Issue #2 )

0.1.5 2013-11-22T08:56:22Z
[00 Maintenance]
- Changelog simplified with new Develop Changes stuff.
Expand Down
9 changes: 8 additions & 1 deletion Changes.deps
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
0.1.5
0.1.6
[Changed / build requires]
- Module::Build 0.4202 → 0.4203

[Changed / configure requires]
- Module::Build 0.4202 → 0.4203

0.1.5 2013-11-22T08:56:22Z
[Changed / build requires]
- Module::Build 0.4007 → 0.4202

Expand Down
12 changes: 11 additions & 1 deletion Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
0.1.5
0.1.6
[Changed / build requires]
- Module::Build 0.4202 → 0.4203

[Changed / configure requires]
- Module::Build 0.4202 → 0.4203

[Changed / develop requires]
- Dist::Zilla::PluginBundle::Author::KENTNL 2.004000 → 2.004001

0.1.5 2013-11-22T08:56:22Z
[Added / develop requires]
- Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl
- Dist::Zilla::Plugin::Authority 1.006
Expand Down
6 changes: 5 additions & 1 deletion Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
0.1.5
0.1.6
[Changed / develop requires]
- Dist::Zilla::PluginBundle::Author::KENTNL 2.004000 → 2.004001

0.1.5 2013-11-22T08:56:22Z
[Added / develop requires]
- Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl
- Dist::Zilla::Plugin::Authority 1.006
Expand Down
8 changes: 8 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,18 @@ layout/self_structure.dot
layout/self_structure.png
lib/Dist/Zilla/Plugin/Prereqs/MatchInstalled.pm
maint-travis-ci/README.mkdn
maint-travis-ci/before_script.pl
maint-travis-ci/branch_reset.pl
maint-travis-ci/install_deps.pl
maint-travis-ci/lib/tools.pm
maint-travis-ci/merge_travis_yml.pl
maint-travis-ci/report_fail_ctx.pl
maint-travis-ci/script.pl
maint-travis-ci/sterilize_env.pl
maint-travis-ci/sync_tree.pl
maint-travis-ci/yamls/sterile.mkdn
maint-travis-ci/yamls/sterile.yaml
maint-travis-ci/yamls/sterile2.yaml
perlcritic.rc
t/00-compile/lib_Dist_Zilla_Plugin_Prereqs_MatchInstalled_pm.t
t/000-report-versions-tiny.t
Expand Down
72 changes: 36 additions & 36 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"prereqs" : {
"build" : {
"requires" : {
"Module::Build" : "0.4202"
"Module::Build" : "0.4203"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.4202"
"Module::Build" : "0.4203"
}
},
"develop" : {
Expand Down Expand Up @@ -68,7 +68,7 @@
"Dist::Zilla::Plugin::TestRelease" : "0",
"Dist::Zilla::Plugin::Twitter" : "0",
"Dist::Zilla::Plugin::UploadToCPAN" : "0",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.004000",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.004001",
"Pod::Coverage::TrustPod" : "0",
"Test::CPAN::Changes" : "0.26",
"Test::CPAN::Meta" : "0.23",
Expand Down Expand Up @@ -107,7 +107,7 @@
"provides" : {
"Dist::Zilla::Plugin::Prereqs::MatchInstalled" : {
"file" : "lib/Dist/Zilla/Plugin/Prereqs/MatchInstalled.pm",
"version" : "v0.1.5"
"version" : "v0.1.6"
}
},
"release_status" : "stable",
Expand All @@ -122,28 +122,28 @@
"web" : "https://github.com/kentfredric/Dist-Zilla-Plugin-Prereqs-MatchInstalled"
}
},
"version" : "0.1.5",
"version" : "0.1.6",
"x_BuiltWith" : {
"modules" : {
"Cwd" : "3.45",
"Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl" : "2.004000",
"Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl" : "2.004001",
"Dist::Zilla::Plugin::Authority" : "1.006",
"Dist::Zilla::Plugin::AutoPrereqs" : "5.006",
"Dist::Zilla::Plugin::CheckExtraTests" : "0.016",
"Dist::Zilla::Plugin::ConfirmRelease" : "5.006",
"Dist::Zilla::Plugin::EOLTests" : "0.02",
"Dist::Zilla::Plugin::Git::Check" : "2.017",
"Dist::Zilla::Plugin::Git::Commit" : "2.017",
"Dist::Zilla::Plugin::Git::CommitBuild" : "2.017",
"Dist::Zilla::Plugin::Git::GatherDir" : "2.017",
"Dist::Zilla::Plugin::Git::NextVersion" : "2.017",
"Dist::Zilla::Plugin::Git::Tag" : "2.017",
"Dist::Zilla::Plugin::Git::Check" : "2.019",
"Dist::Zilla::Plugin::Git::Commit" : "2.019",
"Dist::Zilla::Plugin::Git::CommitBuild" : "2.019",
"Dist::Zilla::Plugin::Git::GatherDir" : "2.019",
"Dist::Zilla::Plugin::Git::NextVersion" : "2.019",
"Dist::Zilla::Plugin::Git::Tag" : "2.019",
"Dist::Zilla::Plugin::GithubMeta" : "0.42",
"Dist::Zilla::Plugin::License" : "5.006",
"Dist::Zilla::Plugin::Manifest" : "5.006",
"Dist::Zilla::Plugin::ManifestSkip" : "5.006",
"Dist::Zilla::Plugin::MetaConfig" : "5.006",
"Dist::Zilla::Plugin::MetaData::BuiltWith" : "0.04000001",
"Dist::Zilla::Plugin::MetaData::BuiltWith" : "0.04000002",
"Dist::Zilla::Plugin::MetaJSON" : "5.006",
"Dist::Zilla::Plugin::MetaProvides::Package" : "1.15000001",
"Dist::Zilla::Plugin::MetaTests" : "5.006",
Expand All @@ -155,9 +155,9 @@
"Dist::Zilla::Plugin::PodSyntaxTests" : "5.006",
"Dist::Zilla::Plugin::PodWeaver" : "4.002",
"Dist::Zilla::Plugin::Prereqs" : "5.006",
"Dist::Zilla::Plugin::Prereqs::MatchInstalled" : "0.1.5",
"Dist::Zilla::Plugin::Prereqs::MatchInstalled" : "0.1.6",
"Dist::Zilla::Plugin::PruneCruft" : "5.006",
"Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.133060",
"Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.133290",
"Dist::Zilla::Plugin::ReadmeFromPod" : "0.21",
"Dist::Zilla::Plugin::ReportVersions::Tiny" : "1.10",
"Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.008",
Expand All @@ -166,18 +166,18 @@
"Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000005",
"Dist::Zilla::Plugin::Test::Perl::Critic" : "2.112410",
"Dist::Zilla::Plugin::TestRelease" : "5.006",
"Dist::Zilla::Plugin::Twitter" : "0.023",
"Dist::Zilla::Plugin::Twitter" : "0.024",
"Dist::Zilla::Plugin::UploadToCPAN" : "5.006",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.004000",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.004001",
"Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "1.7.2",
"Dist::Zilla::Role::PrereqSource" : "5.006",
"File::Copy::Recursive" : "0.38",
"Module::Build" : "0.4202",
"Module::Data" : "0.007",
"Module::Build" : "0.4203",
"Module::Data" : "0.012",
"Moose" : "2.1106",
"MooseX::Types::Moose" : "0.38",
"Path::FindDev" : "0.4.2",
"Path::Tiny" : "0.044",
"Path::Tiny" : "0.047",
"Pod::Coverage::TrustPod" : "0.100003",
"Test::CPAN::Changes" : "0.26",
"Test::CPAN::Meta" : "0.23",
Expand All @@ -192,12 +192,12 @@
"warnings" : "1.20"
},
"perl" : {
"original" : "v5.19.5",
"original" : "v5.19.6",
"qv" : 1,
"version" : [
5,
19,
5
6
]
},
"perl-config" : {
Expand All @@ -210,7 +210,7 @@
},
"x_Dist_Zilla" : {
"perl" : {
"version" : "5.019005"
"version" : "5.019006"
},
"plugins" : [
{
Expand All @@ -229,7 +229,7 @@
{
"class" : "Dist::Zilla::Plugin::Git::NextVersion",
"name" : "@Author::KENTNL/Git::NextVersion",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::MetaConfig",
Expand Down Expand Up @@ -279,12 +279,12 @@
}
},
"name" : "@Author::KENTNL/MetaData::BuiltWith",
"version" : "0.04000001"
"version" : "0.04000002"
},
{
"class" : "Dist::Zilla::Plugin::Git::GatherDir",
"name" : "@Author::KENTNL/Git::GatherDir",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::License",
Expand Down Expand Up @@ -518,7 +518,7 @@
{
"class" : "Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl",
"name" : "@Author::KENTNL/Author::KENTNL::MinimumPerl",
"version" : "2.004000"
"version" : "2.004001"
},
{
"class" : "Dist::Zilla::Plugin::Authority",
Expand All @@ -538,7 +538,7 @@
{
"class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod",
"name" : "@Author::KENTNL/ReadmeAnyFromPod",
"version" : "0.133060"
"version" : "0.133290"
},
{
"class" : "Dist::Zilla::Plugin::Test::CPAN::Changes",
Expand All @@ -563,27 +563,27 @@
{
"class" : "Dist::Zilla::Plugin::Git::Check",
"name" : "@Author::KENTNL/Git::Check",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::Git::Tag",
"name" : "@Author::KENTNL/Git::Tag/tag_master",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::Git::Commit",
"name" : "@Author::KENTNL/Git::Commit",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::Git::CommitBuild",
"name" : "@Author::KENTNL/Git::CommitBuild",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::Git::Tag",
"name" : "@Author::KENTNL/Git::Tag/tag_release",
"version" : "2.017"
"version" : "2.019"
},
{
"class" : "Dist::Zilla::Plugin::UploadToCPAN",
Expand All @@ -593,7 +593,7 @@
{
"class" : "Dist::Zilla::Plugin::Twitter",
"name" : "@Author::KENTNL/Twitter",
"version" : "0.023"
"version" : "0.024"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs::MatchInstalled",
Expand Down Expand Up @@ -636,7 +636,7 @@
}
},
"name" : "@Author::KENTNL/Prereqs::MatchInstalled",
"version" : "0.1.5"
"version" : "0.1.6"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
Expand Down Expand Up @@ -703,7 +703,7 @@
}
},
"name" : "Prereqs::MatchInstalled",
"version" : "0.1.5"
"version" : "0.1.6"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
Expand Down
Loading

0 comments on commit ce645bb

Please sign in to comment.