Skip to content

Commit

Permalink
Build results of dd1e3c4 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 11, 2012
1 parent 2d6f22e commit 91b2858
Show file tree
Hide file tree
Showing 23 changed files with 2,285 additions and 277 deletions.
12 changes: 5 additions & 7 deletions Build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/perl5.16.0
#! /home/kent/perl5/perlbrew/perls/perl-5.16.0/bin/perl5.16.0

use strict;
use Cwd;
Expand All @@ -11,7 +11,7 @@ sub magic_number_matches {
open FH, '_build/magicnum' or return 0;
my $filenum = <FH>;
close FH;
return $filenum == 938077;
return $filenum == 382438;
}

my $progname;
Expand All @@ -20,7 +20,7 @@ BEGIN {
$^W = 1; # Use warnings
$progname = basename($0);
$orig_dir = Cwd::cwd();
my $base_dir = '/home/kent/perl/Data-Handle/Data-Handle-0.02001001';
my $base_dir = '/home/kent/perl/Data-Handle/Data-Handle-0.02001002';
if (!magic_number_matches()) {
unless (chdir($base_dir)) {
die ("Couldn't chdir($base_dir), aborting\n");
Expand All @@ -31,16 +31,14 @@ BEGIN {
}
unshift @INC,
(
'/home/kent/.perl/lib/perl5/x86_64-linux-thread-multi',
'/home/kent/.perl/lib/perl5',
'/home/kent/.perl/lib/perl5/x86_64-linux'

);
}

close(*DATA) unless eof(*DATA); # ensure no open handles to this script

use Module::Build;
Module::Build->VERSION(q{0.3601});
Module::Build->VERSION(q{0.4002});

# Some platforms have problems setting $^X in shebang contexts, fix it up here
$^X = Module::Build->find_perl_interpreter;
Expand Down
8 changes: 4 additions & 4 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ my %module_build_args = (
"File::Find" => 0,
"File::Temp" => 0,
"IO::Handle" => 0,
"Module::Build" => "0.3601",
"Module::Build" => "0.4002",
"Test::Fatal" => 0,
"Test::More" => "0.96"
"Test::More" => "0.98"
},
"configure_requires" => {
"Module::Build" => "0.3601"
"Module::Build" => "0.4002"
},
"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.02001001",
"dist_version" => "0.02001002",
"license" => "perl",
"module_name" => "Data::Handle",
"recommends" => {},
Expand Down
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
Revision history for Data-Handle

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

[Dependencies::Changed]
- build requires : Module::Build 0.3601 -> 0.4002
- configure requires : Module::Build 0.3601 -> 0.4002
- development suggests : Dist::Zilla::PluginBundle::Author::KENTNL
v1.3.0 -> v1.5.0
- test requires : Test::More 0.96 -> 0.98

[Tests]
- Made tests slightly more detailed in the error condition.

0.02001001 2012-06-08T13:30:28Z
[00 Important Changes]
- Code has been purged of stolen chunks of Carp code, and now instead
Expand Down
1,945 changes: 1,945 additions & 0 deletions Debian_CPANTS.txt

Large diffs are not rendered by default.

Loading

0 comments on commit 91b2858

Please sign in to comment.