Skip to content

Commit

Permalink
Build results of f1ecf3e (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed May 30, 2012
2 parents a26623f + f1ecf3e commit 5b210c5
Show file tree
Hide file tree
Showing 45 changed files with 726 additions and 95 deletions.
4 changes: 2 additions & 2 deletions Build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sub magic_number_matches {
open FH, '_build/magicnum' or return 0;
my $filenum = <FH>;
close FH;
return $filenum == 78194;
return $filenum == 275041;
}

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/Git-PurePerl-Walker/Git-PurePerl-Walker-0.001002';
my $base_dir = '/home/kent/perl/Git-PurePerl-Walker/Git-PurePerl-Walker-0.002000';
if (!magic_number_matches()) {
unless (chdir($base_dir)) {
die ("Couldn't chdir($base_dir), aborting\n");
Expand Down
3 changes: 2 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ my %module_build_args = (
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Git-PurePerl-Walker",
"dist_version" => "0.001002",
"dist_version" => "0.002000",
"license" => "perl",
"module_name" => "Git::PurePerl::Walker",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Carp" => 0,
"Class::Load" => 0,
"Git::PurePerl" => 0,
"Moose" => 0,
Expand Down
11 changes: 11 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Release history for Git-PurePerl-Walker

0.002000 2012-05-30T02:57:21Z

[Git::Changes]
- 48225024 Tidy (Kent Fredric)
- 474f7725 Tidyup / Critic (Kent Fredric)
- d059f592 Update Changelog (Kent Fredric)
- a53fe247 Add a ChangeLog format emitter (Kent Fredric)
- 3387631d Document FromHEAD Method (Kent Fredric)
- 77e5a1a9 add a FromHEAD method walker that doesn't need consttructor
args (Kent Fredric)

0.001002 2012-05-29T07:28:29Z
- Greatly improve core documentation of ::Walker, covering user consumable
parts.
Expand Down
5 changes: 4 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ README
dist.ini
example/ls_sha1.pl
example/ls_sha1.pl_output.html
example/ls_sha1_as_commit.pl
lib/Git/PurePerl/Walker.pm
lib/Git/PurePerl/Walker/Method/FirstParent.pm
lib/Git/PurePerl/Walker/Method/FirstParent/FromHEAD.pm
lib/Git/PurePerl/Walker/OnCommit/CallBack.pm
lib/Git/PurePerl/Walker/OnCommit/List.pm
lib/Git/PurePerl/Walker/Role/HasRepo.pm
Expand All @@ -21,7 +23,8 @@ perlcritic.rc
t/00-compile.t
t/000-report-versions-tiny.t
t/01_test.t
t/02_firstparent.t
t/0200_firstparent.t
t/0201_firstparent_fromhead.t
t/03_callback.t
t/04_list.t
t/git_repo_01.tar.gz
Expand Down
24 changes: 15 additions & 9 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
},
"runtime" : {
"requires" : {
"Carp" : "0",
"Class::Load" : "0",
"Git::PurePerl" : "0",
"Moose" : "0",
Expand Down Expand Up @@ -67,35 +68,39 @@
"provides" : {
"Git::PurePerl::Walker" : {
"file" : "lib/Git/PurePerl/Walker.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Method::FirstParent" : {
"file" : "lib/Git/PurePerl/Walker/Method/FirstParent.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Method::FirstParent::FromHEAD" : {
"file" : "lib/Git/PurePerl/Walker/Method/FirstParent/FromHEAD.pm",
"version" : "0.002000"
},
"Git::PurePerl::Walker::OnCommit::CallBack" : {
"file" : "lib/Git/PurePerl/Walker/OnCommit/CallBack.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::OnCommit::List" : {
"file" : "lib/Git/PurePerl/Walker/OnCommit/List.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::HasRepo" : {
"file" : "lib/Git/PurePerl/Walker/Role/HasRepo.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::Method" : {
"file" : "lib/Git/PurePerl/Walker/Role/Method.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::OnCommit" : {
"file" : "lib/Git/PurePerl/Walker/Role/OnCommit.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Types" : {
"file" : "lib/Git/PurePerl/Walker/Types.pm",
"version" : "0.001002"
"version" : "0.002000"
}
},
"release_status" : "stable",
Expand All @@ -107,10 +112,11 @@
"web" : "https://github.com/kentfredric/Git-PurePerl-Walker"
}
},
"version" : "0.001002",
"version" : "0.002000",
"x_BuiltWith" : {
"modules" : {
"Archive::Tar" : "1.86",
"Carp" : "1.26",
"Class::Load" : "0.19",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "1.4.1",
"Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "NA(possibly not installed)",
Expand Down
23 changes: 14 additions & 9 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,33 @@ name: Git-PurePerl-Walker
provides:
Git::PurePerl::Walker:
file: lib/Git/PurePerl/Walker.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Method::FirstParent:
file: lib/Git/PurePerl/Walker/Method/FirstParent.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Method::FirstParent::FromHEAD:
file: lib/Git/PurePerl/Walker/Method/FirstParent/FromHEAD.pm
version: 0.002000
Git::PurePerl::Walker::OnCommit::CallBack:
file: lib/Git/PurePerl/Walker/OnCommit/CallBack.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::OnCommit::List:
file: lib/Git/PurePerl/Walker/OnCommit/List.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::HasRepo:
file: lib/Git/PurePerl/Walker/Role/HasRepo.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::Method:
file: lib/Git/PurePerl/Walker/Role/Method.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::OnCommit:
file: lib/Git/PurePerl/Walker/Role/OnCommit.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Types:
file: lib/Git/PurePerl/Walker/Types.pm
version: 0.001002
version: 0.002000
requires:
Carp: 0
Class::Load: 0
Git::PurePerl: 0
Moose: 0
Expand All @@ -62,10 +66,11 @@ requires:
resources:
homepage: https://github.com/kentfredric/Git-PurePerl-Walker
repository: https://github.com/kentfredric/Git-PurePerl-Walker.git
version: 0.001002
version: 0.002000
x_BuiltWith:
modules:
Archive::Tar: 1.86
Carp: 1.26
Class::Load: 0.19
Dist::Zilla::PluginBundle::Author::KENTNL: 1.4.1
Dist::Zilla::PluginBundle::Author::KENTNL::Lite: 'NA(possibly not installed)'
Expand Down
24 changes: 15 additions & 9 deletions MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
},
"runtime" : {
"requires" : {
"Carp" : "0",
"Class::Load" : "0",
"Git::PurePerl" : "0",
"Moose" : "0",
Expand All @@ -52,35 +53,39 @@
"provides" : {
"Git::PurePerl::Walker" : {
"file" : "lib/Git/PurePerl/Walker.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Method::FirstParent" : {
"file" : "lib/Git/PurePerl/Walker/Method/FirstParent.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Method::FirstParent::FromHEAD" : {
"file" : "lib/Git/PurePerl/Walker/Method/FirstParent/FromHEAD.pm",
"version" : "0.002000"
},
"Git::PurePerl::Walker::OnCommit::CallBack" : {
"file" : "lib/Git/PurePerl/Walker/OnCommit/CallBack.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::OnCommit::List" : {
"file" : "lib/Git/PurePerl/Walker/OnCommit/List.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::HasRepo" : {
"file" : "lib/Git/PurePerl/Walker/Role/HasRepo.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::Method" : {
"file" : "lib/Git/PurePerl/Walker/Role/Method.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Role::OnCommit" : {
"file" : "lib/Git/PurePerl/Walker/Role/OnCommit.pm",
"version" : "0.001002"
"version" : "0.002000"
},
"Git::PurePerl::Walker::Types" : {
"file" : "lib/Git/PurePerl/Walker/Types.pm",
"version" : "0.001002"
"version" : "0.002000"
}
},
"release_status" : "stable",
Expand All @@ -90,10 +95,11 @@
"url" : "https://github.com/kentfredric/Git-PurePerl-Walker.git"
}
},
"version" : "0.001002",
"version" : "0.002000",
"x_BuiltWith" : {
"modules" : {
"Archive::Tar" : "1.86",
"Carp" : "1.26",
"Class::Load" : "0.19",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "1.4.1",
"Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "NA(possibly not installed)",
Expand Down
23 changes: 14 additions & 9 deletions MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,33 @@ name: Git-PurePerl-Walker
provides:
Git::PurePerl::Walker:
file: lib/Git/PurePerl/Walker.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Method::FirstParent:
file: lib/Git/PurePerl/Walker/Method/FirstParent.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Method::FirstParent::FromHEAD:
file: lib/Git/PurePerl/Walker/Method/FirstParent/FromHEAD.pm
version: 0.002000
Git::PurePerl::Walker::OnCommit::CallBack:
file: lib/Git/PurePerl/Walker/OnCommit/CallBack.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::OnCommit::List:
file: lib/Git/PurePerl/Walker/OnCommit/List.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::HasRepo:
file: lib/Git/PurePerl/Walker/Role/HasRepo.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::Method:
file: lib/Git/PurePerl/Walker/Role/Method.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Role::OnCommit:
file: lib/Git/PurePerl/Walker/Role/OnCommit.pm
version: 0.001002
version: 0.002000
Git::PurePerl::Walker::Types:
file: lib/Git/PurePerl/Walker/Types.pm
version: 0.001002
version: 0.002000
requires:
Carp: 0
Class::Load: 0
Git::PurePerl: 0
Moose: 0
Expand All @@ -62,10 +66,11 @@ requires:
resources:
homepage: https://github.com/kentfredric/Git-PurePerl-Walker
repository: https://github.com/kentfredric/Git-PurePerl-Walker.git
version: 0.001002
version: 0.002000
x_BuiltWith:
modules:
Archive::Tar: 1.86
Carp: 1.26
Class::Load: 0.19
Dist::Zilla::PluginBundle::Author::KENTNL: 1.4.1
Dist::Zilla::PluginBundle::Author::KENTNL::Lite: 'NA(possibly not installed)'
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NAME
Git::PurePerl repo

VERSION
version 0.001002
version 0.002000

SYNOPSIS
use Git::PurePerl::Walker;
Expand Down
7 changes: 4 additions & 3 deletions _build/build_params
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ do{ my $x = [
'recommends' => {},
'pod_files' => undef,
'config_dir' => '_build',
'dist_version' => '0.001002',
'dist_version' => '0.002000',
'sign' => undef,
'recurse_into' => [],
'build_bat' => 0,
Expand All @@ -29,7 +29,7 @@ do{ my $x = [
'conflicts',
'recommends'
],
'base_dir' => '/home/kent/perl/Git-PurePerl-Walker/Git-PurePerl-Walker-0.001002',
'base_dir' => '/home/kent/perl/Git-PurePerl-Walker/Git-PurePerl-Walker-0.002000',
'allow_mb_mismatch' => 0,
'xs_files' => undef,
'destdir' => undef,
Expand Down Expand Up @@ -85,7 +85,7 @@ do{ my $x = [
],
'release_status' => 'stable',
'needs_compiler' => '',
'orig_dir' => '/home/kent/perl/Git-PurePerl-Walker/Git-PurePerl-Walker-0.001002',
'orig_dir' => '/home/kent/perl/Git-PurePerl-Walker/Git-PurePerl-Walker-0.002000',
'include_dirs' => [],
'installdirs' => 'site',
'mymetafile' => 'MYMETA.yml',
Expand All @@ -104,6 +104,7 @@ do{ my $x = [
'namespace::autoclean' => 0,
'MooseX::Clone' => 0,
'Class::Load' => 0,
'Carp' => 0,
'strict' => 0,
'perl' => '5.006',
'MooseX::Types' => 0,
Expand Down
2 changes: 1 addition & 1 deletion _build/magicnum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
78194
275041
1 change: 1 addition & 0 deletions _build/prereqs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ do{ my $x = {
'namespace::autoclean' => 0,
'MooseX::Clone' => 0,
'Class::Load' => 0,
'Carp' => 0,
'strict' => 0,
'perl' => '5.006',
'MooseX::Types' => 0,
Expand Down
4 changes: 2 additions & 2 deletions blib/lib/Git/PurePerl/Walker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BEGIN {
$Git::PurePerl::Walker::AUTHORITY = 'cpan:KENTNL';
}
{
$Git::PurePerl::Walker::VERSION = '0.001002';
$Git::PurePerl::Walker::VERSION = '0.002000';
}

# ABSTRACT: Walk over a sequence of commits in a Git::PurePerl repo
Expand Down Expand Up @@ -150,7 +150,7 @@ Git::PurePerl::Walker - Walk over a sequence of commits in a Git::PurePerl repo
=head1 VERSION
version 0.001002
version 0.002000
=head1 SYNOPSIS
Expand Down
Loading

0 comments on commit 5b210c5

Please sign in to comment.