summaryrefslogtreecommitdiff
blob: c5ac361c0af275d473067e0444e249279f83be9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5
MODULE_AUTHOR=RKITOVER
MODULE_VERSION=0.19
inherit perl-module

DESCRIPTION="Automatic Trait Loading and Resolution for Catalyst Components"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

# Moose::Role -> Moose
# Scalar::Util -> Scalar-List-Utils
# IO::Handle -> IO
# IPC::Open3 -> perl
# Test::More -> Test-Simple
RDEPEND="
	virtual/perl-Carp
	dev-perl/Catalyst-Runtime
	dev-perl/Class-Load
	dev-perl/List-MoreUtils
	dev-perl/Moose
	dev-perl/MooseX-Traits-Pluggable
	virtual/perl-Scalar-List-Utils
	dev-perl/namespace-autoclean
"
DEPEND="
	${RDEPEND}
	>=virtual/perl-ExtUtils-MakeMaker-6.300.0
	test? (
		virtual/perl-File-Spec
		virtual/perl-IO
		>=dev-perl/MooseX-MethodAttributes-0.150.0
		virtual/perl-Test-Simple
		virtual/perl-version
	)
"
PERL_RM_FILES=(
	t/release-pod-syntax.t
)