Skip to content

Commit

Permalink
Build results of fddbd72 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jul 26, 2013
1 parent 91b2858 commit 760a1d4
Show file tree
Hide file tree
Showing 32 changed files with 288 additions and 4,447 deletions.
58 changes: 0 additions & 58 deletions Build

This file was deleted.

38 changes: 27 additions & 11 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,25 @@ use Module::Build 0.3601;

my %module_build_args = (
"build_requires" => {
"Data::Dumper" => 0,
"File::Find" => 0,
"File::Temp" => 0,
"IO::Handle" => 0,
"Module::Build" => "0.4002",
"Test::Fatal" => 0,
"Test::More" => "0.98"
"Module::Build" => "0.4005"
},
"configure_requires" => {
"Module::Build" => "0.4002"
"Module::Build" => "0.4005"
},
"dist_abstract" => "A Very simple interface to the __DATA__ file handle.",
"dist_author" => [
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Data-Handle",
"dist_version" => "0.02001002",
"dist_version" => "0.02001003",
"license" => "perl",
"module_name" => "Data::Handle",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Carp" => "1.22",
"IO::File" => 0,
"Package::Stash" => 0,
"Package::Stash" => "0.15",
"Scalar::Util" => 0,
"Symbol" => 0,
"Term::ANSIColor" => 0,
Expand All @@ -42,10 +36,32 @@ my %module_build_args = (
"strict" => 0,
"warnings" => 0
},
"script_files" => []
"script_files" => [],
"test_requires" => {
"Data::Dumper" => 0,
"File::Find" => 0,
"File::Temp" => 0,
"IO::Handle" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.98",
"lib" => 0
}
);


unless ( eval { Module::Build->VERSION(0.4004) } ) {
my $tr = delete $module_build_args{test_requires};
my $br = $module_build_args{build_requires};
for my $mod ( keys %$tr ) {
if ( exists $br->{$mod} ) {
$br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
}
else {
$br->{$mod} = $tr->{$mod};
}
}
}

my $build = Module::Build->new(%module_build_args);

$build->create_build_script;
37 changes: 37 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
Revision history for Data-Handle

0.02001003 2013-07-26T09:11:29Z
[Bugfixes]
- No longer broken on modern Package::Stash's

[Dependencies::Added / develop requires]
- Pod::Coverage::TrustPod
- Test::CPAN::Changes 0.19
- Test::CPAN::Meta
- Test::Pod 1.41
- Test::Pod::Coverage 1.08
- version 0.9901

[Dependencies::Added / test requires]
- lib

[Dependencies::Changed / build requires]
- Module::Build 0.4002 → 0.4005

[Dependencies::Changed / configure requires]
- Module::Build 0.4002 → 0.4005

[Dependencies::Changed / develop suggests]
- Dist::Zilla::PluginBundle::Author::KENTNL v1.5.0 → v1.7.4

[Dependencies::Changed / runtime requires]
- Package::Stash 0 → 0.15

[Documentation]
- Updated copyright year
- Added README.mkdn

[Meta]
- Bug tracker moved to github

[Packaging]
- use test_requires (mb 0.4004)

0.02001002 2012-08-11T01:59:03Z
- Minor Maintenance Release.

Expand Down
Loading

0 comments on commit 760a1d4

Please sign in to comment.