Skip to content

Commit

Permalink
Build results of d90ebff (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Oct 7, 2014
1 parent bcc5223 commit d93d771
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for Gentoo-Overlay

2.001000 2014-10-07T06:47:09Z 4c22d42
2.000001 2014-10-07T06:52:46Z d90ebff
[00 Minor]
- Further refactoring work to remove Moose dependencies.

Expand Down
18 changes: 9 additions & 9 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,27 +133,27 @@
"provides" : {
"Gentoo::Overlay" : {
"file" : "lib/Gentoo/Overlay.pm",
"version" : "2.001000"
"version" : "2.000001"
},
"Gentoo::Overlay::Category" : {
"file" : "lib/Gentoo/Overlay/Category.pm",
"version" : "2.001000"
"version" : "2.000001"
},
"Gentoo::Overlay::Ebuild" : {
"file" : "lib/Gentoo/Overlay/Ebuild.pm",
"version" : "2.001000"
"version" : "2.000001"
},
"Gentoo::Overlay::Exceptions" : {
"file" : "lib/Gentoo/Overlay/Exceptions.pm",
"version" : "2.001000"
"version" : "2.000001"
},
"Gentoo::Overlay::Package" : {
"file" : "lib/Gentoo/Overlay/Package.pm",
"version" : "2.001000"
"version" : "2.000001"
},
"Gentoo::Overlay::Types" : {
"file" : "lib/Gentoo/Overlay/Types.pm",
"version" : "2.001000"
"version" : "2.000001"
}
},
"release_status" : "stable",
Expand All @@ -168,7 +168,7 @@
"web" : "https://github.com/kentnl/Gentoo-Overlay"
}
},
"version" : "2.001000",
"version" : "2.000001",
"x_BuiltWith" : {
"modules" : {
"CPAN::Meta" : "2.142690",
Expand Down Expand Up @@ -732,7 +732,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : null,
"signed" : 0,
"tag" : "2.001000-source",
"tag" : "2.000001-source",
"tag_format" : "%v-source",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down Expand Up @@ -803,7 +803,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : "releases",
"signed" : 0,
"tag" : "2.001000",
"tag" : "2.000001",
"tag_format" : "%v",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down
18 changes: 9 additions & 9 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ no_index:
provides:
Gentoo::Overlay:
file: lib/Gentoo/Overlay.pm
version: '2.001000'
version: '2.000001'
Gentoo::Overlay::Category:
file: lib/Gentoo/Overlay/Category.pm
version: '2.001000'
version: '2.000001'
Gentoo::Overlay::Ebuild:
file: lib/Gentoo/Overlay/Ebuild.pm
version: '2.001000'
version: '2.000001'
Gentoo::Overlay::Exceptions:
file: lib/Gentoo/Overlay/Exceptions.pm
version: '2.001000'
version: '2.000001'
Gentoo::Overlay::Package:
file: lib/Gentoo/Overlay/Package.pm
version: '2.001000'
version: '2.000001'
Gentoo::Overlay::Types:
file: lib/Gentoo/Overlay/Types.pm
version: '2.001000'
version: '2.000001'
requires:
Carp: '0'
Const::Fast: '0'
Expand All @@ -67,7 +67,7 @@ resources:
bugtracker: https://github.com/kentnl/Gentoo-Overlay/issues
homepage: https://github.com/kentnl/Gentoo-Overlay
repository: https://github.com/kentnl/Gentoo-Overlay.git
version: '2.001000'
version: '2.000001'
x_BuiltWith:
modules:
CPAN::Meta: '2.142690'
Expand Down Expand Up @@ -522,7 +522,7 @@ x_Dist_Zilla:
Dist::Zilla::Plugin::Git::Tag:
branch: ~
signed: '0'
tag: 2.001000-source
tag: 2.000001-source
tag_format: '%v-source'
tag_message: v%v
time_zone: local
Expand Down Expand Up @@ -576,7 +576,7 @@ x_Dist_Zilla:
Dist::Zilla::Plugin::Git::Tag:
branch: releases
signed: '0'
tag: '2.001000'
tag: '2.000001'
tag_format: '%v'
tag_message: v%v
time_zone: local
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.96",
"Test::Output" => 0
},
"VERSION" => "2.001000",
"VERSION" => "2.000001",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NAME
Gentoo::Overlay - Tools for working with Gentoo Overlays

VERSION
version 2.001000
version 2.000001

SYNOPSIS
my $overlay = Gentoo::Overlay->new( path => '/usr/portage' );
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: Tools for working with Gentoo Overlays

Expand Down Expand Up @@ -550,7 +550,7 @@ Gentoo::Overlay - Tools for working with Gentoo Overlays
=head1 VERSION
version 2.001000
version 2.000001
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay/Category.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay::Category;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: A singular category in a repository;

Expand Down Expand Up @@ -373,7 +373,7 @@ Gentoo::Overlay::Category - A singular category in a repository;
=head1 VERSION
version 2.001000
version 2.000001
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay/Ebuild.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay::Ebuild;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: A Class for Ebuilds in Gentoo Overlays

Expand Down Expand Up @@ -198,7 +198,7 @@ Gentoo::Overlay::Ebuild - A Class for Ebuilds in Gentoo Overlays
=head1 VERSION
version 2.001000
version 2.000001
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay/Exceptions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay::Exceptions;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: A custom Exception class for Gentoo which also has warning-style semantics instead of failure

Expand Down Expand Up @@ -145,7 +145,7 @@ Gentoo::Overlay::Exceptions - A custom Exception class for Gentoo which also has
=head1 VERSION
version 2.001000
version 2.000001
=for Pod::Coverage BUILDARGS
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay::Package;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: Class for Package's in Gentoo Overlays

Expand Down Expand Up @@ -347,7 +347,7 @@ Gentoo::Overlay::Package - Class for Package's in Gentoo Overlays
=head1 VERSION
version 2.001000
version 2.000001
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Gentoo/Overlay/Types.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Gentoo::Overlay::Types;

our $VERSION = '2.001000';
our $VERSION = '2.000001';

# ABSTRACT: Gentoo Overlay types.

Expand Down Expand Up @@ -144,7 +144,7 @@ Gentoo::Overlay::Types - Gentoo Overlay types.
=head1 VERSION
version 2.001000
version 2.000001
=head1 TYPES
Expand Down

0 comments on commit d93d771

Please sign in to comment.