blob: 8799c05ae2536da16a8a3c3dd5f1f2306cce07a7 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=ETHER
MODULE_VERSION=0.04
inherit perl-module
DESCRIPTION="Set::Object type with coercions and stuff."
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
# MoooseX::Types::Moose -> MooseX-Types
RDEPEND="
>=dev-perl/Moose-0.500.0
dev-perl/MooseX-Types
dev-perl/Set-Object
"
DEPEND="
${RDEPEND}
>=dev-perl/Module-Build-Tiny-0.30.0
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
test? (
dev-perl/Test-Fatal
>=virtual/perl-Test-Simple-0.880.0
|| ( >=virtual/perl-Test-Simple-1.1.10 dev-perl/Test-use-ok )
)
"
|