Skip to content

Commit

Permalink
Build results of 3b2f26b (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Nov 12, 2011
2 parents 4a8be3a + 3b2f26b commit db7c909
Show file tree
Hide file tree
Showing 16 changed files with 332 additions and 113 deletions.
106 changes: 58 additions & 48 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -6,58 +6,68 @@ use Module::Build 0.3601;


my %module_build_args = (
'build_requires' => {
'Carp' => '0',
'Module::Build' => '0.3601',
'Scalar::Util' => '0',
'Test::Compile' => '0',
'Test::More' => '0.94'
"build_requires" => {
"Carp" => 0,
"Module::Build" => "0.3601",
"Scalar::Util" => 0,
"Test::Compile" => 0,
"Test::More" => "0.94"
},
'configure_requires' => {
'Module::Build' => '0.3601'
"configure_requires" => {
"Module::Build" => "0.3601"
},
'dist_abstract' => 'Patch CPAN modules using Git',
'dist_author' => [
'Yanick Champoux <yanick@cpan.org>'
"dist_abstract" => "Patch CPAN modules using Git",
"dist_author" => [
"Yanick Champoux <yanick\@cpan.org>"
],
'dist_name' => 'Git-CPAN-Patch',
'dist_version' => '0.6.1',
'license' => 'perl',
'module_name' => 'Git::CPAN::Patch',
'recommends' => {},
'recursive_test_files' => 1,
'requires' => {
'Archive::Extract' => '0',
'BackPAN::Index' => '0',
'CLASS' => '0',
'CPANPLUS' => '0',
'Cwd' => '0',
'File::Basename' => '0',
'File::Find' => '0',
'File::Path' => '0',
'File::Spec::Functions' => '0',
'File::Temp' => '0',
'File::chdir' => '0',
'File::chmod' => '0',
'Getopt::Long' => '0',
'Git::Repository' => '0',
'LWP::UserAgent' => '0',
'Pod::Usage' => '0',
'autodie' => '0',
'perl' => '5.10.0',
'version' => '0'
"dist_name" => "Git-CPAN-Patch",
"dist_version" => "0.7.0",
"license" => "perl",
"module_name" => "Git::CPAN::Patch",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Archive::Extract" => 0,
"BackPAN::Index" => 0,
"CLASS" => 0,
"CPANPLUS" => 0,
"Cwd" => 0,
"DateTime::Format::W3CDTF" => 0,
"File::Basename" => 0,
"File::Find" => 0,
"File::Path" => 0,
"File::Spec::Functions" => 0,
"File::Temp" => 0,
"File::chdir" => 0,
"File::chmod" => 0,
"Getopt::Long" => 0,
"Git::Repository" => 0,
"LWP::UserAgent" => 0,
"MetaCPAN::API" => 0,
"Method::Signatures" => 0,
"Moose" => 0,
"MooseX::App::Cmd" => 0,
"MooseX::App::Cmd::Command" => 0,
"MooseX::SemiAffordanceAccessor" => 0,
"Pod::Usage" => 0,
"autodie" => 0,
"perl" => "5.10.0",
"strict" => 0,
"version" => 0,
"warnings" => 0
},
'script_files' => [
'bin/git-backpan-init',
'bin/git-cpan-format-patch',
'bin/git-cpan-import',
'bin/git-cpan-init',
'bin/git-cpan-last-version',
'bin/git-cpan-send-email',
'bin/git-cpan-sendpatch',
'bin/git-cpan-squash',
'bin/git-cpan-update',
'bin/git-cpan-which'
"script_files" => [
"bin/git-backpan-init",
"bin/git-cpan-which",
"bin/git-cpan-sendpatch",
"bin/git-cpan-format-patch",
"bin/git-cpan-squash",
"bin/git-cpan-send-email",
"bin/git-cpan-init",
"bin/git-cpan-import",
"bin/git-cpan-sources",
"bin/git-cpan-update",
"bin/git-cpan-last-version"
]
);

Expand Down
13 changes: 9 additions & 4 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Revision history for Git::CPAN::Patch

0.7.0 2011-11-12
[ENHANCEMENTS]
- 'git cpan-init' now accepts a '--vcs' argument
- new command 'git cpan-sources'

0.6.1 2011-06-05
[BUG FIXES]
- pass '--no-chain-reply-to' explicitly to 'git-send-email'.
Expand Down Expand Up @@ -84,14 +89,14 @@ Revision history for Git::CPAN::Patch
Schwern.
- Use File::chmod instead of shell chmod to avoid shell quoting problems.
Thanks to Schwern.
- Don't try to tag releases with no versions. Thanks to Schwern.
- 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.

0.2.1 Thur Sept 3 2009
- git-cpan-import is working with new version of Git. Thanks to Alexandr
Ciornii. (rt#48713)
- git-cpan-import is working with new version of Git. Thanks to
Alexandr Ciornii. (rt#48713)
- Require CPANPLUS 0.84 or higher. Thanks to Alexandr Ciornii. (rt#48713)

0.2.0 2009-07-11
Expand All @@ -111,7 +116,7 @@ Revision history for Git::CPAN::Patch
0.1.5 2009-03-28
- Fixed typo in git-cpan-squash doc (rt bug 43294), patch by Slaven Rezic
- Removed warning from git-cpan-import, patch by Pedro Melo
- scripts' shebang line now set to Perl's interpreter used by Build.PL
- scripts' shebang line now set to Perl's interpreter used by Build.PL
(rt bug 43366)

0.1.4 2009-02-14
Expand Down
44 changes: 44 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

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
22 changes: 12 additions & 10 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@ This is free software, licensed under:

The GNU General Public License, Version 1, February 1989

GNU GENERAL PUBLIC LICENSE
Version 1, February 1989
GNU GENERAL PUBLIC LICENSE
Version 1, February 1989

Copyright (C) 1989 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble
Preamble

The license agreements of most software companies try to keep users
at the mercy of those companies. By contrast, our General Public
Expand Down Expand Up @@ -67,7 +68,7 @@ authors' reputations.
The precise terms and conditions for copying, distribution and
modification follow.

GNU GENERAL PUBLIC LICENSE
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

0. This License Agreement applies to any program or other work which
Expand Down Expand Up @@ -185,7 +186,7 @@ make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

NO WARRANTY
NO WARRANTY

9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
Expand All @@ -207,9 +208,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

END OF TERMS AND CONDITIONS
END OF TERMS AND CONDITIONS

Appendix: How to Apply These Terms to Your New Programs
Appendix: How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
Expand All @@ -235,8 +236,9 @@ the exclusion of warranty; and each file should have at least the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA


Also add information on how to contact you by electronic and paper mail.

Expand Down
3 changes: 3 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Build.PL
Changes
INSTALL
LICENSE
MANIFEST
META.json
Expand All @@ -15,10 +16,12 @@ bin/git-cpan-init
bin/git-cpan-last-version
bin/git-cpan-send-email
bin/git-cpan-sendpatch
bin/git-cpan-sources
bin/git-cpan-squash
bin/git-cpan-update
bin/git-cpan-which
lib/Git/CPAN/Patch.pm
lib/Git/CPAN/Patch/Command/sources.pm
lib/Git/CPAN/Patch/Import.pm
t/00-load.t
t/000-report-versions.t
Expand Down
29 changes: 21 additions & 8 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Yanick Champoux <yanick@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 4.102345, CPAN::Meta::Converter version 2.101590",
"generated_by" : "Dist::Zilla version 4.300002, CPAN::Meta::Converter version 2.112150",
"license" : [
"perl_5"
],
Expand All @@ -31,6 +31,7 @@
"CLASS" : 0,
"CPANPLUS" : 0,
"Cwd" : 0,
"DateTime::Format::W3CDTF" : 0,
"File::Basename" : 0,
"File::Find" : 0,
"File::Path" : 0,
Expand All @@ -41,10 +42,18 @@
"Getopt::Long" : 0,
"Git::Repository" : 0,
"LWP::UserAgent" : 0,
"MetaCPAN::API" : 0,
"Method::Signatures" : 0,
"Moose" : 0,
"MooseX::App::Cmd" : 0,
"MooseX::App::Cmd::Command" : 0,
"MooseX::SemiAffordanceAccessor" : 0,
"Pod::Usage" : 0,
"autodie" : 0,
"perl" : "v5.10.0",
"version" : 0
"strict" : 0,
"version" : 0,
"warnings" : 0
}
},
"test" : {
Expand All @@ -59,11 +68,15 @@
"provides" : {
"Git::CPAN::Patch" : {
"file" : "lib/Git/CPAN/Patch.pm",
"version" : "v0.6.1"
"version" : "v0.7.0"
},
"Git::CPAN::Patch::Command::sources" : {
"file" : "lib/Git/CPAN/Patch/Command/sources.pm",
"version" : "v0.7.0"
},
"Git::CPAN::Patch::Import" : {
"file" : "lib/Git/CPAN/Patch/Import.pm",
"version" : "v0.6.1"
"version" : "v0.7.0"
}
},
"release_status" : "stable",
Expand All @@ -75,11 +88,11 @@
"homepage" : "http://search.cpan.org/dist/Git-CPAN-Patch/",
"repository" : {
"type" : "git",
"url" : "git://github.com/yanick/git-cpan-patch.git",
"web" : "http://github.com/yanick/git-cpan-patch/tree"
"url" : "https://github.com/yanick/git-cpan-patch.git",
"web" : "https://github.com/yanick/git-cpan-patch"
}
},
"version" : "0.6.1",
"x_authority" : "cpan:yanick"
"version" : "0.7.0",
"x_authority" : "cpan:YANICK"
}

0 comments on commit db7c909

Please sign in to comment.