Gentoo Archives: gentoo-commits

From: Kent Fredric <kentfredric@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Dancer/
Date: Wed, 08 Feb 2012 13:19:45
Message-Id: 09626739e91c9bf94fbd3b1c9e0199dfb73e325e.kent@gentoo
1 commit: 09626739e91c9bf94fbd3b1c9e0199dfb73e325e
2 Author: Sergiy Borodych <Sergiy.Borodych <AT> gmail <DOT> com>
3 AuthorDate: Wed Dec 14 12:49:41 2011 +0000
4 Commit: Kent Fredric <kentfredric <AT> gmail <DOT> com>
5 CommitDate: Wed Feb 8 13:06:54 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=09626739
7
8 version bump, add new dep - Try::Tiny
9
10 ---
11 dev-perl/Dancer/Dancer-1.309.0.ebuild | 52 +++++++++++++++++++++++++++++++++
12 1 files changed, 52 insertions(+), 0 deletions(-)
13
14 diff --git a/dev-perl/Dancer/Dancer-1.309.0.ebuild b/dev-perl/Dancer/Dancer-1.309.0.ebuild
15 new file mode 100644
16 index 0000000..3fdad65
17 --- /dev/null
18 +++ b/dev-perl/Dancer/Dancer-1.309.0.ebuild
19 @@ -0,0 +1,52 @@
20 +# Copyright 1999-2011 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +EAPI=4
24 +MODULE_AUTHOR=XSAWYERX
25 +MODULE_VERSION=1.3090
26 +inherit perl-module
27 +
28 +DESCRIPTION='A minimal-effort oriented web application framework'
29 +LICENSE=" || ( Artistic GPL-2 )"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~x86"
32 +IUSE=""
33 +perl_meta_configure() {
34 + # ExtUtils::MakeMaker
35 + echo virtual/perl-ExtUtils-MakeMaker
36 +}
37 +perl_meta_build() {
38 + # Test::More 0.94 ( 0.940.0 )
39 + echo \>=virtual/perl-Test-Simple-0.94
40 +}
41 +perl_meta_runtime() {
42 + # Encode
43 + echo virtual/perl-Encode
44 + # File::Basename
45 + echo dev-lang/perl
46 + # File::Spec
47 + echo virtual/perl-File-Spec
48 + # HTTP::Body 1.07 ( 1.70.0 )
49 + echo \>=dev-perl/HTTP-Body-1.70.0
50 + # HTTP::Server::Simple::PSGI 0.11 ( 0.110.0 )
51 + echo \>=dev-perl/HTTP-Server-Simple-PSGI-0.110.0
52 + # LWP
53 + echo dev-perl/libwww-perl
54 + # MIME::Types
55 + echo dev-perl/MIME-Types
56 + # Time::HiRes
57 + echo virtual/perl-Time-HiRes
58 + # Try::Tiny 0.09 ( 0.90.0 )
59 + echo \>=dev-perl/Try-Tiny-0.90.0
60 + # URI 1.59 ( 1.590.0 )
61 + echo \>=dev-perl/URI-1.590.0
62 +}
63 +DEPEND="
64 + $(perl_meta_configure)
65 + $(perl_meta_build)
66 + $(perl_meta_runtime)
67 +"
68 +RDEPEND="
69 + $(perl_meta_runtime)
70 +"
71 +SRC_TEST="do"