Skip to content

Commit

Permalink
Build results of a39dad8 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Apr 14, 2013
2 parents a39dad8 + eea12ea commit 67778c3
Show file tree
Hide file tree
Showing 37 changed files with 1,299 additions and 1,099 deletions.
11 changes: 0 additions & 11 deletions .gitignore

This file was deleted.

11 changes: 0 additions & 11 deletions .perlcriticrc

This file was deleted.

13 changes: 13 additions & 0 deletions AUTHOR_PLEDGE
@@ -0,0 +1,13 @@

# CPAN Covenant for Git-CPAN-Patch

I, Yanick Champoux <yanick@cpan.org>, hereby give modules@perl.org permission to grant co-maintainership
to Git-CPAN-Patch, if all the following conditions are met:

(1) I haven't released the module for a year or more
(2) There are outstanding issues in the module's public bug tracker
(3) Email to my CPAN email address hasn't been answered after a month
(4) The requester wants to make worthwhile changes that will benefit CPAN

In the event of my death, then the time-limits in (1) and (3) do not apply.

71 changes: 71 additions & 0 deletions Build.PL
@@ -0,0 +1,71 @@

use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.3601",
"Test::More" => "0.88"
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Patch CPAN modules using Git",
"dist_author" => [
"Yanick Champoux <yanick\@cpan.org>"
],
"dist_name" => "Git-CPAN-Patch",
"dist_version" => "1.1.2",
"license" => "perl",
"module_name" => "Git::CPAN::Patch",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Archive::Extract" => 0,
"BackPAN::Index" => 0,
"CLASS" => 0,
"CPAN::Meta" => 0,
"CPAN::ParseDistribution" => 0,
"CPANPLUS" => 0,
"Cwd" => 0,
"DateTime" => 0,
"File::Basename" => 0,
"File::Find" => 0,
"File::Path" => 0,
"File::Spec::Functions" => 0,
"File::Temp" => 0,
"File::chdir" => 0,
"File::chmod" => 0,
"Git::Repository" => 0,
"LWP::Simple" => 0,
"LWP::UserAgent" => 0,
"List::Pairwise" => 0,
"MetaCPAN::API" => 0,
"Method::Signatures" => 20121201,
"Moose" => 0,
"Moose::Role" => 0,
"MooseX::App" => "1.21",
"MooseX::App::Command" => 0,
"MooseX::App::Role" => 0,
"MooseX::Role::Tempdir" => 0,
"MooseX::SemiAffordanceAccessor" => 0,
"Path::Class" => 0,
"Pod::Usage" => 0,
"autodie" => 0,
"perl" => "v5.10.0",
"strict" => 0,
"version" => 0,
"warnings" => 0
},
"script_files" => [
"bin/git-cpan"
]
);


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

$build->create_build_script;
21 changes: 21 additions & 0 deletions CONTRIBUTORS
@@ -0,0 +1,21 @@

# GIT-CPAN-PATCH CONTRIBUTORS #

This is the (likely incomplete) list of people who have helped
make this distribution what it is, either via code contributions,
patches, bug reports, help with troubleshooting, etc. A huge
thank to all of them.

* 2shortplanks <mark@twoshortplanks.com>
* Michael G. Schwern <schwern@pobox.com>
* Mike Doherty <doherty@cs.dal.ca>
* Pedro Melo <melo@simplicidade.org>
* Peter Valdemar Mørch <peter@morch.com>
* Slaven Rezic <slaven@rezic.de>
* Tim Bunce via RT <bug-Git-CPAN-Patch@rt.cpan.org>
* Yanick Champoux <yanick@babyl.dyndns.org>
* Yanick Champoux <yanick@byakko.(none)>
* Yuval Kogman <nothingmuch@woobling.org>
* brian d foy <brian.d.foy@gmail.com>
* chocolateboy <chocolate@cpan.org>
* slaven@rezic.de <slaven@rezic.de>
9 changes: 5 additions & 4 deletions Changes
@@ -1,10 +1,11 @@
Revision history for Git::CPAN::Patch

{{$NEXT}}

1.1.2 2013-04-14
[BUG FIXES]
- bump dependency for MooseX::App to solve boolean
argument problem.
- bump dependency for MooseX::App to solve boolean argument problem.

[STATISTICS]
- code churn: 2 files changed, 9 insertions(+), 10 deletions(-)

1.1.1 2013-04-01
[BUG FIXES]
Expand Down
58 changes: 58 additions & 0 deletions INSTALL
@@ -0,0 +1,58 @@

This is the Perl distribution Git-CPAN-Patch.

Installing Git-CPAN-Patch is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm Git::CPAN::Patch

If you are installing into a system-wide directory, you may need to pass the
"-S" flag to cpanm, which uses sudo to install the module:

% cpanm -S Git::CPAN::Patch

## Installing with the CPAN shell

Alternatively, if your CPAN shell is set up, you should just be able to do:

% cpan Git::CPAN::Patch

## Manual installation

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

% perl Makefile.PL
% make && make test

Then install it:

% make install

If you are installing into a system-wide directory, you may need to run:

% sudo make install

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

% perl Build.PL
% ./Build && ./Build test

Then install it:

% ./Build install

If you are installing into a system-wide directory, you may need to run:

% sudo ./Build install

## Documentation

Git-CPAN-Patch documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc Git::CPAN::Patch

0 comments on commit 67778c3

Please sign in to comment.