blob: 18191216aee1d4ff7e4f10a0a0011dfcedf0dc3c (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=ETHER
DIST_VERSION=0.11
inherit perl-module
DESCRIPTION="Required attributes which fail only when trying to use them"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test minimal"
# r: Moose::Exporter -> Moose
# r: Moose::Role -> Moose
RDEPEND="
virtual/perl-Carp
>=dev-perl/Moose-0.940.0
>=dev-perl/aliased-0.300.0
dev-perl/namespace-autoclean
"
# t: Test::More -> Test-Simple
# t: strict,warnings -> perl
DEPEND="${RDEPEND}
>=dev-perl/Module-Build-Tiny-0.37.0
virtual/perl-ExtUtils-MakeMaker
test? (
!minimal? (
>=virtual/perl-CPAN-Meta-2.120.900
)
virtual/perl-File-Spec
dev-perl/Test-Fatal
>=virtual/perl-Test-Simple-0.880.0
)
"
|