diff options
author | 2016-03-23 17:00:10 +1300 | |
---|---|---|
committer | 2016-03-27 22:56:21 +0200 | |
commit | e44d233321b28f4b0a99f76faa4b879eb8611449 (patch) | |
tree | 3bee26a6892052a107ff003d9012d0de8434b2d3 /dev-perl/Plack/Plack-1.3.900.ebuild | |
parent | dev-perl/Log-Dispatch-Array: Added at version 1.3.0 (diff) | |
download | gentoo-e44d233321b28f4b0a99f76faa4b879eb8611449.tar.gz gentoo-e44d233321b28f4b0a99f76faa4b879eb8611449.tar.bz2 gentoo-e44d233321b28f4b0a99f76faa4b879eb8611449.zip |
dev-perl/Plack: Bump to version 1.3.900
- EAPI6
- USE="examples" added
- Dependencies that could be used conditionally added to USE="-minimal"
- Dependencies that add additional test coverage added to USE="test -minimal"
Upstream:
- MIME added to Plack::MIME for .apk
- Custom Formatters supported by Plack::Middleware::AccessLog
- '0' is now a valid log4perl middleware category
- Test server binds to 127.0.0.1
- Single-process FCGI manager support.
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-perl/Plack/Plack-1.3.900.ebuild')
-rw-r--r-- | dev-perl/Plack/Plack-1.3.900.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/dev-perl/Plack/Plack-1.3.900.ebuild b/dev-perl/Plack/Plack-1.3.900.ebuild new file mode 100644 index 000000000000..4152bcc50104 --- /dev/null +++ b/dev-perl/Plack/Plack-1.3.900.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=MIYAGAWA +DIST_VERSION=1.0039 +inherit perl-module + +DESCRIPTION="Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test minimal examples" + +RDEPEND=" + !minimal? ( + dev-perl/CGI-Compile + dev-perl/CGI-Emulate-PSGI + dev-perl/FCGI + dev-perl/FCGI-ProcManager + >=dev-perl/libwww-perl-5.814.0 + ) + >=dev-perl/Apache-LogFormat-Compiler-0.120.0 + >=dev-perl/Cookie-Baker-0.50.0 + >=dev-perl/Devel-StackTrace-1.230.0 + >=dev-perl/Devel-StackTrace-AsHTML-0.110.0 + >=dev-perl/File-ShareDir-1.0.0 + dev-perl/Filesys-Notify-Simple + >=dev-perl/HTTP-Body-1.60.0 + >=dev-perl/HTTP-Headers-Fast-0.180.0 + >=dev-perl/HTTP-Message-5.814.0 + >=virtual/perl-HTTP-Tiny-0.34.0 + >=dev-perl/Hash-MultiValue-0.50.0 + >=virtual/perl-Pod-Parser-1.360.0 + >=dev-perl/Stream-Buffered-0.20.0 + >=dev-perl/Test-TCP-2.0.0 + dev-perl/Try-Tiny + >=dev-perl/URI-1.590.0 + virtual/perl-parent +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + >=dev-perl/File-ShareDir-Install-0.60.0 + test? ( + !minimal? ( + dev-perl/Authen-Simple-Passwd + dev-perl/HTTP-Request-AsCGI + dev-perl/HTTP-Server-Simple-PSGI + dev-perl/IO-Handle-Util + dev-perl/Log-Dispatch + dev-perl/Log-Dispatch-Array + dev-perl/Log-Log4perl + dev-perl/LWP-Protocol-http10 + dev-perl/MIME-Types + dev-perl/Module-Refresh + ) + dev-perl/Test-Requires + >=virtual/perl-Test-Simple-0.880.0 + ) +" +src_test() { + perl_rm_files "t/author-pod-syntax.t" + perl-module_src_test +} +src_install() { + perl-module_src_install + if use examples; then + docompress -x /usr/share/doc/${PF}/examples + docinto examples/ + dodoc -r eg/dot-psgi/* + fi +} |