blob: 51caf9d89151d97906b04e1c18bd6faf46e005aa (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
MODULE_AUTHOR=MITHALDU
MODULE_VERSION=2.34
inherit perl-module
DESCRIPTION="Parse 02packages.details.txt.gz"
SLOT="0"
LICENSE="|| ( Artistic GPL-2 )"
KEYWORDS="~amd64 ~x86"
SRC_TEST="do"
comment() { true;}
IUSE="test"
RDEPEND="
$(comment Archive::Peek)
dev-perl/Archive-Peek
$(comment Compress::Zlib)
virtual/perl-IO-Compress
$(comment CPAN::DistnameInfo)
dev-perl/CPAN-DistnameInfo
$(comment File::Slurp)
dev-perl/File-Slurp
$(comment Moose)
dev-perl/Moose
$(comment Path::Class)
dev-perl/Path-Class
$(comment Test::InDistDir)
dev-perl/Test-InDistDir
$(comment Test::More)
virtual/perl-Test-Simple
$(comment version)
virtual/perl-version
"
DEPEND="${RDEPEND}
$(comment ExtUtils::MakeMaker)
virtual/perl-ExtUtils-MakeMaker
"
|