Skip to content

Commit

Permalink
Build results of 25c2540 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Gardner committed Mar 4, 2015
2 parents 25c2540 + e5e871c commit f944f98
Show file tree
Hide file tree
Showing 32 changed files with 2,505 additions and 319 deletions.
20 changes: 0 additions & 20 deletions .gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for perl distribution LWPx-UserAgent-Role-Cached

{{$NEXT}}
0.007 2015-03-04 17:06:36-05:00 America/New_York
- documentation and metadata fixes, no functional changes
0.006 2015-03-03 13:34:06-05:00 America/New_York
- use CHI's built-in serializer support by default (with Sereal) instead
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 LWPx-UserAgent-Cached.

Installing LWPx-UserAgent-Cached is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm LWPx::UserAgent::Cached

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 LWPx::UserAgent::Cached

## Installing with the CPAN shell

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

% cpan LWPx::UserAgent::Cached

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

LWPx-UserAgent-Cached documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc LWPx::UserAgent::Cached
379 changes: 379 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.032.
Changes
INSTALL
LICENSE
MANIFEST
MANIFEST.SKIP
META.json
META.yml
Makefile.PL
README
dist.ini
lib/LWPx/UserAgent/Cached.pm
t/00-compile.t
t/000-report-versions.t
t/004-cached.t
t/005-custom-cache.t
t/006-cached-chi.t
t/TestCache.pm
t/author-critic.t
t/author-eol.t
t/author-no-tabs.t
t/cache_control.t
t/cache_key.t
t/etag.t
t/is_cached.t
t/pages/1.html
t/pages/10.html
t/pages/2.html
t/pages/3.html
t/pages/4.html
t/pages/5.html
t/pages/6.html
t/pages/7.html
t/pages/8.html
t/pages/9.html
t/release-cpan-changes.t
t/release-dist-manifest.t
t/release-distmeta.t
t/release-kwalitee.t
t/release-localbrew-perl-5.12.5-TEST.t
t/release-localbrew-perl-latest-TEST.t
t/release-meta-json.t
t/release-minimum-version.t
t/release-mojibake.t
t/release-pod-coverage.t
t/release-pod-linkcheck.t
t/release-pod-syntax.t
t/release-portability.t
t/release-synopsis.t
t/release-test-version.t
t/release-unused-vars.t
weaver.ini
xt/author/perlcritic.rc
xt/author/perltidy.rc
95 changes: 95 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
{
"abstract" : "Subclass of LWP::UserAgent that caches HTTP GET requests",
"author" : [
"Mark Gardner <[email protected]>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 5.032, CPAN::Meta::Converter version 2.143240",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
},
"name" : "LWPx-UserAgent-Cached",
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::CPAN::Changes" : "0.19",
"Test::CPAN::Meta" : "0",
"Test::EOL" : "0",
"Test::Kwalitee" : "1.21",
"Test::More" : "0.88",
"Test::NoTabs" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08",
"Test::Synopsis" : "0",
"Test::Version" : "1"
}
},
"runtime" : {
"requires" : {
"CHI" : "0",
"Data::Serializer::Sereal" : "0",
"HTTP::Status" : "0",
"LWP::UserAgent" : "0",
"List::Util" : "1.33",
"Modern::Perl" : "0",
"Moo" : "1.004005",
"Types::Standard" : "0",
"namespace::clean" : "0",
"perl" : "5.012",
"utf8" : "0"
}
},
"test" : {
"requires" : {
"Carp" : "0",
"Const::Fast" : "0",
"Digest::SHA" : "0",
"English" : "0",
"File::Spec" : "0",
"Find::Lib" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Path::Class" : "0",
"Scalar::Util" : "0",
"Test::Fake::HTTPD" : "0",
"Test::More" : "0.94",
"Test::Requires" : "0",
"constant" : "0",
"lib" : "0",
"perl" : "5.012",
"strict" : "0",
"warnings" : "0"
}
}
},
"provides" : {
"LWPx::UserAgent::Cached" : {
"file" : "lib/LWPx/UserAgent/Cached.pm",
"version" : "0.007"
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/mjgardner/LWPx-UserAgent-Cached/issues"
},
"homepage" : "http://metacpan.org/release/LWPx-UserAgent-Cached/",
"repository" : {
"type" : "git",
"url" : "git://github.com/mjgardner/LWPx-UserAgent-Cached.git",
"web" : "https://github.com/mjgardner/LWPx-UserAgent-Cached"
}
},
"version" : "0.007"
}

53 changes: 53 additions & 0 deletions META.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
abstract: 'Subclass of LWP::UserAgent that caches HTTP GET requests'
author:
- 'Mark Gardner <[email protected]>'
build_requires:
Carp: '0'
Const::Fast: '0'
Digest::SHA: '0'
English: '0'
File::Spec: '0'
Find::Lib: '0'
IO::Handle: '0'
IPC::Open3: '0'
Path::Class: '0'
Scalar::Util: '0'
Test::Fake::HTTPD: '0'
Test::More: '0.94'
Test::Requires: '0'
constant: '0'
lib: '0'
perl: '5.012'
strict: '0'
warnings: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.032, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: LWPx-UserAgent-Cached
provides:
LWPx::UserAgent::Cached:
file: lib/LWPx/UserAgent/Cached.pm
version: '0.007'
requires:
CHI: '0'
Data::Serializer::Sereal: '0'
HTTP::Status: '0'
LWP::UserAgent: '0'
List::Util: '1.33'
Modern::Perl: '0'
Moo: '1.004005'
Types::Standard: '0'
namespace::clean: '0'
perl: '5.012'
utf8: '0'
resources:
bugtracker: https://github.com/mjgardner/LWPx-UserAgent-Cached/issues
homepage: http://metacpan.org/release/LWPx-UserAgent-Cached/
repository: git://github.com/mjgardner/LWPx-UserAgent-Cached.git
version: '0.007'
99 changes: 99 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.032.
use strict;
use warnings;

use 5.012;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
"ABSTRACT" => "Subclass of LWP::UserAgent that caches HTTP GET requests",
"AUTHOR" => "Mark Gardner <mjgardner\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "LWPx-UserAgent-Cached",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.012",
"NAME" => "LWPx::UserAgent::Cached",
"PREREQ_PM" => {
"CHI" => 0,
"Data::Serializer::Sereal" => 0,
"HTTP::Status" => 0,
"LWP::UserAgent" => 0,
"List::Util" => "1.33",
"Modern::Perl" => 0,
"Moo" => "1.004005",
"Types::Standard" => 0,
"namespace::clean" => 0,
"utf8" => 0
},
"TEST_REQUIRES" => {
"Carp" => 0,
"Const::Fast" => 0,
"Digest::SHA" => 0,
"English" => 0,
"File::Spec" => 0,
"Find::Lib" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Path::Class" => 0,
"Scalar::Util" => 0,
"Test::Fake::HTTPD" => 0,
"Test::More" => "0.94",
"Test::Requires" => 0,
"constant" => 0,
"lib" => 0,
"strict" => 0,
"warnings" => 0
},
"VERSION" => "0.007",
"test" => {
"TESTS" => "t/*.t"
}
);


my %FallbackPrereqs = (
"CHI" => 0,
"Carp" => 0,
"Const::Fast" => 0,
"Data::Serializer::Sereal" => 0,
"Digest::SHA" => 0,
"English" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Find::Lib" => 0,
"HTTP::Status" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"LWP::UserAgent" => 0,
"List::Util" => "1.33",
"Modern::Perl" => 0,
"Moo" => "1.004005",
"Path::Class" => 0,
"Scalar::Util" => 0,
"Test::Fake::HTTPD" => 0,
"Test::More" => "0.94",
"Test::Requires" => 0,
"Types::Standard" => 0,
"constant" => 0,
"lib" => 0,
"namespace::clean" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);
Loading

0 comments on commit f944f98

Please sign in to comment.