Skip to content

Commit

Permalink
Build results of 35a16b0 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Sep 12, 2014
1 parent 0db2018 commit 8173b87
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Release history for CHI-Driver-LMDB

0.001000 2014-09-12T11:57:24Z
0.001000 2014-09-12T12:00:04Z
- First version.

18 changes: 15 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,15 @@
"Test::More" : "1.001006"
},
"requires" : {
"Date::Parse" : "0",
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::More" : "0.89"
"Test::Builder" : "0",
"Test::Class" : "0",
"Test::Deep" : "0",
"Test::Exception" : "0",
"Test::More" : "0.89",
"Test::Warn" : "0"
}
}
},
Expand Down Expand Up @@ -136,6 +142,7 @@
"CHI::Driver" : "0.58",
"CPAN::Meta" : "2.142060",
"Carp" : "1.34",
"Date::Parse" : "2.30",
"Dist::Zilla::App::Command::bakeini" : "0.001002",
"Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes" : "0.003002",
"Dist::Zilla::Plugin::Authority" : "1.006",
Expand Down Expand Up @@ -189,12 +196,17 @@
"Moo" : "1.006000",
"Path::Tiny" : "0.056",
"Pod::Coverage::TrustPod" : "0.100003",
"Test::Builder" : "1.001006",
"Test::CPAN::Changes" : "0.30",
"Test::CPAN::Meta" : "0.23",
"Test::Class" : "0.46",
"Test::Deep" : "0.113",
"Test::Exception" : "0.32",
"Test::Kwalitee" : "1.22",
"Test::More" : "1.001006",
"Test::Pod" : "1.48",
"Test::Pod::Coverage" : "1.10",
"Test::Warn" : "0.30",
"parent" : "0.228",
"strict" : "1.08",
"utf8" : "1.14",
Expand Down Expand Up @@ -797,11 +809,11 @@
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "runtime",
"phase" : "test",
"type" : "requires"
}
},
"name" : "Prereqs",
"name" : "CHI::Test",
"version" : "5.020"
},
{
Expand Down
16 changes: 14 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ abstract: 'use OpenLDAPs LMDB Key-Value store as a cache backend.'
author:
- 'Kent Fredric <kentnl@cpan.org>'
build_requires:
Date::Parse: '0'
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::Builder: '0'
Test::Class: '0'
Test::Deep: '0'
Test::Exception: '0'
Test::More: '0.89'
Test::Warn: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: '0'
Expand Down Expand Up @@ -44,6 +50,7 @@ x_BuiltWith:
CHI::Driver: '0.58'
CPAN::Meta: '2.142060'
Carp: '1.34'
Date::Parse: '2.30'
Dist::Zilla::App::Command::bakeini: '0.001002'
Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes: '0.003002'
Dist::Zilla::Plugin::Authority: '1.006'
Expand Down Expand Up @@ -97,12 +104,17 @@ x_BuiltWith:
Moo: '1.006000'
Path::Tiny: '0.056'
Pod::Coverage::TrustPod: '0.100003'
Test::Builder: '1.001006'
Test::CPAN::Changes: '0.30'
Test::CPAN::Meta: '0.23'
Test::Class: '0.46'
Test::Deep: '0.113'
Test::Exception: '0.32'
Test::Kwalitee: '1.22'
Test::More: '1.001006'
Test::Pod: '1.48'
Test::Pod::Coverage: '1.10'
Test::Warn: '0.30'
parent: '0.228'
strict: '1.08'
utf8: '1.14'
Expand Down Expand Up @@ -565,9 +577,9 @@ x_Dist_Zilla:
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: runtime
phase: test
type: requires
name: Prereqs
name: CHI::Test
version: '5.020'
-
class: Dist::Zilla::Plugin::RemovePrereqs
Expand Down
14 changes: 13 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@ my %WriteMakefileArgs = (
"warnings" => 0
},
"TEST_REQUIRES" => {
"Date::Parse" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => "0.89"
"Test::Builder" => 0,
"Test::Class" => 0,
"Test::Deep" => 0,
"Test::Exception" => 0,
"Test::More" => "0.89",
"Test::Warn" => 0
},
"VERSION" => "0.001000",
"test" => {
Expand All @@ -46,13 +52,19 @@ my %WriteMakefileArgs = (
my %FallbackPrereqs = (
"CHI::Driver" => 0,
"Carp" => 0,
"Date::Parse" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"File::Spec::Functions" => 0,
"LMDB_File" => 0,
"Moo" => 0,
"Path::Tiny" => 0,
"Test::Builder" => 0,
"Test::Class" => 0,
"Test::Deep" => 0,
"Test::Exception" => 0,
"Test::More" => "0.89",
"Test::Warn" => 0,
"parent" => 0,
"strict" => 0,
"utf8" => 0,
Expand Down
11 changes: 10 additions & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,16 @@ Dist::Zilla::Plugin::TestRelease = 0
Dist::Zilla::Plugin::Twitter = 0
Dist::Zilla::Plugin::UploadToCPAN = 0

[Prereqs]
[Prereqs / CHI::Test]
-phase = test
-type = requires
Date::Parse = 0
Test::Builder = 0
Test::Class = 0
Test::Deep = 0
Test::Exception = 0
Test::More = 0
Test::Warn = 0

[RemovePrereqs]
remove = CHI::t::Driver
Expand Down
12 changes: 11 additions & 1 deletion dist.ini.meta
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ srcreadme = mkdn
twitter_hash_tags = #perl #cpan
; auto_prereqs_skip = File::Find

[Prereqs]
; https://rt.cpan.org/Ticket/Display.html?id=98830
[Prereqs / CHI::Test]
-phase = test
-type = requires
Date::Parse = 0
Test::Builder = 0
Test::Class = 0
Test::Deep = 0
Test::Exception = 0
Test::More = 0
Test::Warn = 0

[RemovePrereqs]
remove = CHI::t::Driver
Expand Down
8 changes: 7 additions & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,15 @@ do { my $x = {
'Test::More' => '1.001006'
},
'requires' => {
'Date::Parse' => '0',
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::More' => '0.89'
'Test::Builder' => '0',
'Test::Class' => '0',
'Test::Deep' => '0',
'Test::Exception' => '0',
'Test::More' => '0.89',
'Test::Warn' => '0'
}
}
};
Expand Down

0 comments on commit 8173b87

Please sign in to comment.