blob: d0a87a99b047cfcb369e39ad10388741d4670b87 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=DOLMEN
MODULE_VERSION=1.08
inherit perl-module
DESCRIPTION='reports dependency versions during testing'
LICENSE=" || ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
perl_meta_configure() {
# ExtUtils::MakeMaker 6.30 ( 6.300.0 )
echo \>=virtual/perl-ExtUtils-MakeMaker-6.30
}
perl_meta_runtime() {
# Dist::Zilla 3.101390 ( 3.101.390 )
echo \>=dev-perl/Dist-Zilla-3.101.390
# Dist::Zilla::File::FromCode
echo dev-perl/Dist-Zilla
# Dist::Zilla::Role::FileGatherer
echo dev-perl/Dist-Zilla
# Dist::Zilla::Role::PrereqSource
echo dev-perl/Dist-Zilla
# Dist::Zilla::Role::TextTemplate
echo dev-perl/Dist-Zilla
# Moose
echo dev-perl/Moose
# version 0.9901 ( 0.990.100 )
echo \>=virtual/perl-version-0.990.100
}
perl_meta_test() {
# File::Find
echo dev-lang/perl
# File::Temp
echo virtual/perl-File-Temp
# Test::Differences
echo dev-perl/Test-Differences
# Test::Exception
echo dev-perl/Test-Exception
# Test::Fatal
echo dev-perl/Test-Fatal
# Test::MockObject
echo dev-perl/Test-MockObject
# Test::More 0.88 ( 0.880.0 )
echo \>=virtual/perl-Test-Simple-0.88
# Test::Warn
echo dev-perl/Test-Warn
# strict
echo dev-lang/perl
# warnings
echo dev-lang/perl
}
DEPEND="
$(perl_meta_configure)
$(perl_meta_runtime)
test? ( $(perl_meta_test) )
"
RDEPEND="
$(perl_meta_runtime)
"
SRC_TEST="do"
|