Skip to content

Commit

Permalink
Build results of 725723a (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Mar 8, 2013
2 parents 725723a + 81d2e58 commit 0b8889e
Show file tree
Hide file tree
Showing 17 changed files with 1,064 additions and 87 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

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

# CPAN Covenant for Dist-Zilla-Plugin-ShareDir-Tarball

I, Yanick Champoux <yanick@babyl.dyndns.org>, hereby give modules@perl.org permission to grant co-maintainership
to Dist-Zilla-Plugin-ShareDir-Tarball, 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.

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

use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
"build_requires" => {
"File::Find" => 0,
"File::Temp" => 0,
"Module::Build" => "0.3601",
"Test::DZil" => 0,
"Test::More" => "0.88"
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Bundle your shared dir into a tarball",
"dist_author" => [
"Yanick Champoux <yanick\@babyl.dyndns.org>"
],
"dist_name" => "Dist-Zilla-Plugin-ShareDir-Tarball",
"dist_version" => "0.3.1",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::ShareDir::Tarball",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Archive::Tar" => 0,
"Compress::Zlib" => 0,
"Dist::Zilla::File::InMemory" => 0,
"Dist::Zilla::Role::FileInjector" => 0,
"Dist::Zilla::Role::FileMunger" => 0,
"Dist::Zilla::Role::ShareDir" => 0,
"Moose" => 0,
"strict" => 0,
"warnings" => 0
},
"script_files" => []
);


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

$build->create_build_script;
13 changes: 2 additions & 11 deletions Changes
@@ -1,17 +1,8 @@
Revision history for Dist-Zilla-Plugin-ShareDir-Tarball

{{$NEXT}}
[API CHANGES]

[BUG FIXES]

[DOCUMENTATION]

[ENHANCEMENTS]

[NEW FEATURES]

0.3.1 2013-03-07
[STATISTICS]
- code churn: 5 files changed, 58 insertions(+), 13 deletions(-)

0.3.0 2013-03-05
[ENHANCEMENTS]
Expand Down
44 changes: 44 additions & 0 deletions INSTALL
@@ -0,0 +1,44 @@

This is the Perl distribution Dist-Zilla-Plugin-ShareDir-Tarball.

Installing Dist-Zilla-Plugin-ShareDir-Tarball is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm Dist::Zilla::Plugin::ShareDir::Tarball

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 Dist::Zilla::Plugin::ShareDir::Tarball

## Installing with the CPAN shell

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

% cpan Dist::Zilla::Plugin::ShareDir::Tarball

## Manual installation

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

Dist-Zilla-Plugin-ShareDir-Tarball documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc Dist::Zilla::Plugin::ShareDir::Tarball

0 comments on commit 0b8889e

Please sign in to comment.