blob: 67c21c6556868c1bfa1a2c5ef7a85d1dc7b858ac (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DIST_AUTHOR=EHUELS
DIST_VERSION=0.21
inherit perl-module
DESCRIPTION="Ensure that your dependency listing is complete"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
PATCHES=( "${FILESDIR}/${PV}-require-ok.patch" )
RDEPEND="
dev-perl/rpm-build-perl
virtual/perl-CPAN-Meta
dev-perl/File-Find-Rule-Perl
virtual/perl-Module-CoreList
dev-perl/Pod-Strip
"
DEPEND="${RDEPEND}
>=virtual/perl-CPAN-Meta-Requirements-2.120.620
virtual/perl-ExtUtils-MakeMaker
virtual/perl-Module-Metadata
test? (
dev-perl/Test-Needs
>=virtual/perl-Test-Simple-0.980.0
)
"
|