Skip to content

Commit

Permalink
Build results of 48f1d32 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jul 26, 2012
1 parent 6fa7b89 commit 29c1540
Show file tree
Hide file tree
Showing 31 changed files with 2,947 additions and 218 deletions.
58 changes: 58 additions & 0 deletions Build
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#! /home/kent/perl5/perlbrew/perls/perl-5.16.0/bin/perl

use strict;
use Cwd;
use File::Basename;
use File::Spec;

sub magic_number_matches {
return 0 unless -e '_build/magicnum';
local *FH;
open FH, '_build/magicnum' or return 0;
my $filenum = <FH>;
close FH;
return $filenum == 491084;
}

my $progname;
my $orig_dir;
BEGIN {
$^W = 1; # Use warnings
$progname = basename($0);
$orig_dir = Cwd::cwd();
my $base_dir = '/home/kent/perl/Dist-Zilla-Plugin-MetaProvides/Dist-Zilla-Plugin-MetaProvides-1.14000001';
if (!magic_number_matches()) {
unless (chdir($base_dir)) {
die ("Couldn't chdir($base_dir), aborting\n");
}
unless (magic_number_matches()) {
die ("Configuration seems to be out of date, please re-run 'perl Build.PL' again.\n");
}
}
unshift @INC,
(

);
}

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

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

# Some platforms have problems setting $^X in shebang contexts, fix it up here
$^X = Module::Build->find_perl_interpreter;

if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) {
warn "Warning: Build.PL has been altered. You may need to run 'perl Build.PL' again.\n";
}

# This should have just enough arguments to be able to bootstrap the rest.
my $build = Module::Build->resume (
properties => {
config_dir => '_build',
orig_dir => $orig_dir,
},
);

$build->dispatch;
9 changes: 5 additions & 4 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ my %module_build_args = (
"Dist::Zilla::Util::Test::KENTNL" => "0.01000004",
"File::Find" => 0,
"File::Temp" => 0,
"Module::Build" => "0.3601",
"Module::Build" => "0.4001",
"Scalar::Util" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.96"
"Test::More" => "0.98"
},
"configure_requires" => {
"Module::Build" => "0.3601"
"Module::Build" => "0.4001"
},
"dist_abstract" => "Generating and Populating 'provides' in your META.yml",
"dist_author" => [
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Dist-Zilla-Plugin-MetaProvides",
"dist_version" => "1.14000000",
"dist_version" => "1.14000001",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::MetaProvides",
"recommends" => {},
Expand All @@ -35,6 +35,7 @@ my %module_build_args = (
"Moose::Role" => 0,
"MooseX::Types" => 0,
"MooseX::Types::Moose" => 0,
"Readonly" => 0,
"namespace::autoclean" => 0,
"perl" => "5.006",
"strict" => 0,
Expand Down
19 changes: 18 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
Revision history for Dist-Zilla-Plugin-MetaProvides
Revision history for Dist-Zilla-Plugin-MetaProvides

1.14000001 2012-07-26T16:24:41Z
[BugFix]
- Defer version constraints to as late as possible to allow more circular
things to happen, avoiding compile-time failure in bootstrap.

[Dependencies::Changed]
- build requires : Module-Build 0.3601 -> 0.4001
- configure requires : Module-Build 0.3601 -> 0.4001
- develop recommends : Dist::Zilla::PluginBundle::Author::KENTNL::Lite
0.01009803 -> v1.3.0
- develop suggests : Dist::Zilla::PluginBundle::Author::KENTNL
v1.2.0 -> v1.4.2
- test requires : Test::More 0.96 -> 0.98

[Dependencies::New]
- runtime requires : Readonly

1.14000000 2012-02-07T08:45:13Z
[Features]
Expand Down
Loading

0 comments on commit 29c1540

Please sign in to comment.