Skip to content

Commit

Permalink
Build results of f9d71ed (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Mar 12, 2017
1 parent e204a26 commit fd4f361
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
Release history for Dist-Zilla-Plugin-Prereqs-DarkPAN

v0.3.0 2017-03-12T17:49:17Z 6dc7425
v0.3.0 2017-03-12T17:49:32Z f9d71ed
- Bugfix: Avoid test failures with -Ddefault_inc_excludes_dot ( by automatic plugin update )
- Replace installer with EUMM ( could break some downstreams, primary reason for v0.3 )
- Remove use of Class::Load
- Remove useless Moose::Autobox messing up dzil version load time.
- Add MetaConfig data
- Basic test added.

[Dependencies::Stats]
- Dependencies changed since 0.2.4, see misc/*.deps* for details
- build: -1
- configure: +2 -1 (recommends: +1)
- develop: +24 ↑3 -14 (recommends: +1, suggests: +2 -1)
- runtime: +2 -2 (recommends: +1)
- test: +3 ↓1 (recommends: +3)
- test: +4 ↓1 (recommends: +3)

0.2.4 2013-11-22T09:51:44Z
[00 Minor]
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ t/00-compile/lib_Dist_Zilla_Role_PrereqSource_External_pm.t
t/00-compile/lib_Dist_Zilla_Role_xPANResolver_pm.t
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/01-basic.t
weaver.ini
xt/author/critic.t
xt/author/eol.t
Expand Down
1 change: 1 addition & 0 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::DZil" : "0",
"Test::More" : "0",
"perl" : "5.006"
}
Expand Down
1 change: 1 addition & 0 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author:
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::DZil: '0'
Test::More: '0'
perl: '5.006'
configure_requires:
Expand Down
2 changes: 2 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ my %WriteMakefileArgs = (
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::DZil" => 0,
"Test::More" => 0
},
"VERSION" => "v0.3.0",
Expand All @@ -54,6 +55,7 @@ my %FallbackPrereqs = (
"Moose::Role" => 0,
"Parse::CPAN::Packages" => 0,
"Path::ScanINC" => 0,
"Test::DZil" => 0,
"Test::More" => 0,
"Try::Tiny" => 0,
"URI" => 0,
Expand Down
1 change: 1 addition & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This file contains changes in REQUIRED dependencies for standard CPAN phases (co
[Added / test requires]
- ExtUtils::MakeMaker
- File::Spec
- Test::DZil
- perl 5.006

[Changed / test requires]
Expand Down
1 change: 1 addition & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
[Added / test requires]
- ExtUtils::MakeMaker
- File::Spec
- Test::DZil
- perl 5.006

[Changed / develop requires]
Expand Down
1 change: 1 addition & 0 deletions misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"Software::License::Perl_5" : "0.103012",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"Test::DZil" : "6.009",
"Test::EOL" : "1.6",
"Test::Kwalitee" : "1.25",
"Test::MinimumVersion" : "0.101082",
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 @@ -109,6 +109,7 @@ do { my $x = {
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::DZil' => '0',
'Test::More' => '0',
'perl' => '5.006'
}
Expand Down
25 changes: 25 additions & 0 deletions t/01-basic.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use strict;
use warnings;

use Test::More tests => 1;
use Test::DZil qw( simple_ini Builder );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
'source/dist.ini' => simple_ini(
['MetaConfig'],
[
'Prereqs::DarkPAN' => {
DDG => 'http://darkpan.duckduckgo.com/',
}
],
),
}
}
);
$tzil->chrome->logger->set_debug(1);
$tzil->build;
pass("build ok");
note explain $tzil->distmeta;
note explain $tzil->log_messages;
3 changes: 2 additions & 1 deletion xt/author/eol.t
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ my @files = (
't/00-compile/lib_Dist_Zilla_Role_PrereqSource_External_pm.t',
't/00-compile/lib_Dist_Zilla_Role_xPANResolver_pm.t',
't/00-report-prereqs.dd',
't/00-report-prereqs.t'
't/00-report-prereqs.t',
't/01-basic.t'
);

eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
Expand Down

0 comments on commit fd4f361

Please sign in to comment.