summaryrefslogtreecommitdiff
blob: 8754987bceda8842460b87957501297fbadcadaf (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

MODULE_AUTHOR=BRUNOV
MODULE_VERSION=0.04
inherit perl-module

DESCRIPTION="Memory only cache of live references"

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

PERL_RM_FILES=(
	t/release-pod-syntax.t
	t/release-pod-coverage.t
	t/release-no-tabs.t
	t/release-eol.t
)
# List::Util -> Scalar-List-Utils
# Scalar::Util -> Scalar-List-Utils
# Moose::Role -> Moose
# Test::Moose -> Moose
# ok -> Test-Simple | Test-use-ok
RDEPEND="
	virtual/perl-Carp
	dev-perl/Hash-Util-FieldHash-Compat
	dev-perl/Moose
	dev-perl/MooseX-Role-Parameterized
	dev-perl/namespace-autoclean
	virtual/perl-Scalar-List-Utils
"
DEPEND="
	${RDEPEND}
	>=virtual/perl-ExtUtils-MakeMaker-6.310.0
	test? (
		|| ( >=virtual/perl-Test-Simple-1.1.10 dev-perl/Test-use-ok )
		virtual/perl-Test-Simple
	)
"