Skip to content

Commit

Permalink
Build results of 0bf8579 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jun 30, 2015
1 parent 82e7b84 commit b4d3315
Show file tree
Hide file tree
Showing 13 changed files with 80 additions and 17 deletions.
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
Release history for Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING

0.001002 2015-06-30T02:08:26Z 473269e
[Bugfix]
- Turns out to be useful to actually install files intended for a sharedir

[Dependencies::Stats]
- Dependencies changed since 0.001001, see misc/*.deps* for details
- configure: +1 (recommends: +1)
- develop: +1

0.001001 2015-06-30T00:24:44Z 24a9a5d
[Content]
- Credit original author in emitted file.
Expand Down
20 changes: 14 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
"prereqs" : {
"configure" : {
"recommends" : {
"ExtUtils::MakeMaker" : "7.00"
"ExtUtils::MakeMaker" : "7.00",
"File::ShareDir::Install" : "0.10"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::ShareDir::Install" : "0.06",
"perl" : "5.006"
}
},
Expand Down Expand Up @@ -69,6 +71,7 @@
"Dist::Zilla::Plugin::RemovePrereqs::Provided" : "0",
"Dist::Zilla::Plugin::RewriteVersion::Sanitized" : "0",
"Dist::Zilla::Plugin::RunExtraTests" : "0",
"Dist::Zilla::Plugin::ShareDir" : "0",
"Dist::Zilla::Plugin::Test::CPAN::Changes" : "0",
"Dist::Zilla::Plugin::Test::Compile::PerFile" : "0",
"Dist::Zilla::Plugin::Test::EOL" : "0",
Expand Down Expand Up @@ -131,7 +134,7 @@
"provides" : {
"Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING" : {
"file" : "lib/Dist/Zilla/Plugin/Author/KENTNL/CONTRIBUTING.pm",
"version" : "0.001001"
"version" : "0.001002"
}
},
"release_status" : "stable",
Expand All @@ -146,7 +149,7 @@
"web" : "https://github.com/kentnl/Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING"
}
},
"version" : "0.001001",
"version" : "0.001002",
"x_BuiltWith" : {
"external_file" : "misc/built_with.json"
},
Expand Down Expand Up @@ -179,6 +182,11 @@
"name" : "Bootstrap::ShareDir::Dist",
"version" : "1.001001"
},
{
"class" : "Dist::Zilla::Plugin::ShareDir",
"name" : "ShareDir",
"version" : "5.037"
},
{
"class" : "Dist::Zilla::Plugin::MetaConfig",
"name" : "@Author::KENTNL/MetaConfig",
Expand Down Expand Up @@ -644,7 +652,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : null,
"signed" : 0,
"tag" : "0.001001-source",
"tag" : "0.001002-source",
"tag_format" : "%v-source",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down Expand Up @@ -715,7 +723,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : "releases",
"signed" : 0,
"tag" : "0.001001",
"tag" : "0.001002",
"tag_format" : "%v",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down Expand Up @@ -799,7 +807,7 @@
}
},
"name" : "Author::KENTNL::CONTRIBUTING",
"version" : "0.001001"
"version" : "0.001002"
},
{
"class" : "Dist::Zilla::Plugin::RemovePrereqs::Provided",
Expand Down
5 changes: 3 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ build_requires:
perl: '5.006'
configure_requires:
ExtUtils::MakeMaker: '0'
File::ShareDir::Install: '0.06'
perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.037, CPAN::Meta::Converter version 2.150005'
Expand All @@ -20,7 +21,7 @@ name: Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING
provides:
Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING:
file: lib/Dist/Zilla/Plugin/Author/KENTNL/CONTRIBUTING.pm
version: '0.001001'
version: '0.001002'
recommends:
Moose: '2.000'
Path::Tiny: '0.058'
Expand All @@ -41,4 +42,4 @@ resources:
bugtracker: https://github.com/kentnl/Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING/issues
homepage: https://github.com/kentnl/Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING
repository: https://github.com/kentnl/Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING.git
version: '0.001001'
version: '0.001002'
18 changes: 16 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ use 5.006;

use ExtUtils::MakeMaker;

use File::ShareDir::Install;
$File::ShareDir::Install::INCLUDE_DOTFILES = 1;
$File::ShareDir::Install::INCLUDE_DOTDIRS = 1;
install_share dist => "share";


my %WriteMakefileArgs = (
"ABSTRACT" => "Generates a CONTRIBUTING file for KENTNL's distributions.",
"AUTHOR" => "Kent Fredric <kentnl\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
"ExtUtils::MakeMaker" => 0,
"File::ShareDir::Install" => "0.06"
},
"DISTNAME" => "Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING",
"EXE_FILES" => [],
Expand All @@ -35,7 +42,7 @@ my %WriteMakefileArgs = (
"File::Spec" => 0,
"Test::More" => "0.89"
},
"VERSION" => "0.001001",
"VERSION" => "0.001002",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
Expand All @@ -48,6 +55,7 @@ my %FallbackPrereqs = (
"Dist::Zilla::Util::ConfigDumper" => 0,
"ExtUtils::MakeMaker" => 0,
"File::ShareDir" => 0,
"File::ShareDir::Install" => "0.06",
"File::Spec" => 0,
"Moose" => 0,
"Moose::Util::TypeConstraints" => 0,
Expand All @@ -70,3 +78,9 @@ delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);

{
package
MY;
use File::ShareDir::Install qw(postamble);
}
2 changes: 2 additions & 0 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ copyright_holder = Kent Fredric <kentfredric@gmail.com>
[Bootstrap::ShareDir::Dist]
share = share

[ShareDir]

[MetaConfig / @Author::KENTNL/MetaConfig]

[GithubMeta / @Author::KENTNL/GithubMeta]
Expand Down
2 changes: 2 additions & 0 deletions dist.ini.meta
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ copyright_holder = Kent Fredric <kentfredric@gmail.com>
[Bootstrap::ShareDir::Dist]
share = share

[ShareDir]

[@Author::KENTNL]
:version = 2.024002
normal_form = numify
Expand Down
4 changes: 2 additions & 2 deletions lib/Dist/Zilla/Plugin/Author/KENTNL/CONTRIBUTING.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING;

our $VERSION = '0.001001';
our $VERSION = '0.001002';

# ABSTRACT: Generates a CONTRIBUTING file for KENTNL's distributions.

Expand Down Expand Up @@ -149,7 +149,7 @@ Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING - Generates a CONTRIBUTING fil
=head1 VERSION
version 0.001001
version 0.001002
=head1 DESCRIPTION
Expand Down
6 changes: 5 additions & 1 deletion misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
0.001002
[Added / configure requires]
- File::ShareDir::Install 0.06

0.001001 2015-06-30T00:24:44Z
12 changes: 11 additions & 1 deletion misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.001001
0.001002
[Added / configure recommends]
- File::ShareDir::Install 0.10

[Added / configure requires]
- File::ShareDir::Install 0.06

[Added / develop requires]
- Dist::Zilla::Plugin::ShareDir

0.001001 2015-06-30T00:24:44Z
[Added / develop requires]
- Dist::Zilla::Plugin::RemovePrereqs::Provided

Expand Down
6 changes: 5 additions & 1 deletion misc/Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
This file contains changes to DEVELOPMENT dependencies only ( both REQUIRED and OPTIONAL )

0.001001
0.001002
[Added / develop requires]
- Dist::Zilla::Plugin::ShareDir

0.001001 2015-06-30T00:24:44Z
[Added / develop requires]
- Dist::Zilla::Plugin::RemovePrereqs::Provided

Expand Down
6 changes: 5 additions & 1 deletion misc/Changes.deps.opt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
0.001002
[Added / configure recommends]
- File::ShareDir::Install 0.10

0.001001 2015-06-30T00:24:44Z
2 changes: 2 additions & 0 deletions misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"Dist::Zilla::Plugin::RemovePrereqs::Provided" : "0.001000",
"Dist::Zilla::Plugin::RewriteVersion::Sanitized" : "0.001005",
"Dist::Zilla::Plugin::RunExtraTests" : "0.027",
"Dist::Zilla::Plugin::ShareDir" : "5.037",
"Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.009",
"Dist::Zilla::Plugin::Test::Compile::PerFile" : "0.003000",
"Dist::Zilla::Plugin::Test::EOL" : "0.18",
Expand All @@ -59,6 +60,7 @@
"Dist::Zilla::Util::ConfigDumper" : "0.003006",
"ExtUtils::MakeMaker" : "7.04_01",
"File::ShareDir" : "1.102",
"File::ShareDir::Install" : "0.10",
"File::Spec" : "3.56",
"Moose" : "2.1405",
"Moose::Util::TypeConstraints" : "2.1405",
Expand Down
5 changes: 4 additions & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
do { my $x = {
'configure' => {
'recommends' => {
'ExtUtils::MakeMaker' => '7.00'
'ExtUtils::MakeMaker' => '7.00',
'File::ShareDir::Install' => '0.10'
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::ShareDir::Install' => '0.06',
'perl' => '5.006'
}
},
Expand Down Expand Up @@ -54,6 +56,7 @@ do { my $x = {
'Dist::Zilla::Plugin::RemovePrereqs::Provided' => '0',
'Dist::Zilla::Plugin::RewriteVersion::Sanitized' => '0',
'Dist::Zilla::Plugin::RunExtraTests' => '0',
'Dist::Zilla::Plugin::ShareDir' => '0',
'Dist::Zilla::Plugin::Test::CPAN::Changes' => '0',
'Dist::Zilla::Plugin::Test::Compile::PerFile' => '0',
'Dist::Zilla::Plugin::Test::EOL' => '0',
Expand Down

0 comments on commit b4d3315

Please sign in to comment.