blob: 59d923e72e06bab760b4cd27ca112f66fb60d77a (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=ANDREMAR
MODULE_VERSION=0.100330
inherit perl-module
DESCRIPTION="Dump your loaded module versions to the debug-screen"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
PERL_RM_FILES=(
t/release-pod-syntax.t
t/release-pod-coverage.t
t/author/pod-coverage.t
t/author/pod.t
)
RDEPEND="
dev-perl/MRO-Compat
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/Catalyst-Runtime
virtual/perl-Getopt-Long
virtual/perl-Pod-Usage
dev-perl/Test-MockObject
>=virtual/perl-Test-Simple-1.1.10
dev-perl/Test-WWW-Mechanize-Catalyst
)
"
|