Skip to content

Commit

Permalink
Build results of 11bd286 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Dec 22, 2017
2 parents 11bd286 + 013c728 commit 2b55f0f
Show file tree
Hide file tree
Showing 40 changed files with 2,167 additions and 917 deletions.
13 changes: 0 additions & 13 deletions .gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions .mailmap

This file was deleted.

11 changes: 0 additions & 11 deletions .perlcriticrc

This file was deleted.

19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .watsonrc

This file was deleted.

13 changes: 13 additions & 0 deletions AUTHOR_PLEDGE
Original file line number Diff line number Diff line change
@@ -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.

25 changes: 25 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

# 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 you' to all of them.

* 2shortplanks
* Arthur Axel 'fREW' Schmidt
* brian d foy
* chocolateboy
* Dagfinn Ilmari Mannsåker
* Lisa Hare
* Michael G. Schwern
* Mike Doherty
* Mike Doherty
* Pedro Melo
* sdeseille
* Slaven Rezic
* temp0
* Tim Bunce via RT
* Yuval Kogman


17 changes: 5 additions & 12 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
Revision history for Git::CPAN::Patch

{{$NEXT}}
[ API CHANGES ]

2.3.2 2017-12-22
[ BUG FIXES ]
- source command was erroneously using 'vcs' attribute. (GH#35, ilmari)

[ DOCUMENTATION ]

[ ENHANCEMENTS ]

[ NEW FEATURES ]
- source command was erroneously using 'vcs' attribute. (GH#35, ilmari)

[ STATISTICS ]
- code churn: 5 files changed, 97 insertions(+), 8 deletions(-)

2.3.1 2017-01-12
[ BUG FIXES ]
Expand Down Expand Up @@ -295,8 +288,8 @@ Revision history for Git::CPAN::Patch
- Don't try to tag releases with no versions. Thanks to Schwern.
- Tag .1 as 0.1. git doesn't like a tag named .1 Thanks to Schwern.
- Skip empty tarballs. Thanks to Schwern.
- Skip bad archives. Thanks to
Schwern.
- Skip bad archives. Thanks
to Schwern.

0.2.1 Thur Sept 3 2009
- git-cpan-import is working with new version of Git. Thanks to
Expand Down
43 changes: 43 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
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

## 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 2b55f0f

Please sign in to comment.