summaryrefslogtreecommitdiff
blob: 099896d17546ff40d3953e5d8d08b35264fc11a3 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2
MODULE_AUTHOR=BOBTFISH
inherit perl-module

DESCRIPTION="An serialization framework for Moose classes"
LICENSE="|| ( Artistic GPL-2 )"

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

IUSE="test +json +yaml +storable +file"
RDEPEND="
	>=dev-perl/Moose-0.39
	json? (
		>=dev-perl/JSON-Any-1.15
	)
	yaml? (
		>=dev-perl/Best-0.1
	)
	storable? (
		virtual/perl-Storable
	)
	file? (
		virtual/perl-IO
	)
"
DEPEND="${RDEPEND}
	test? (

		dev-perl/Test-Deep
		dev-perl/Test-Exception
		>=virtual/perl-Test-Simple-0.02
		>=dev-perl/Test-TempDir-0.02

		json? (
			>=dev-perl/Test-JSON-0.06
		)
		yaml? (
			dev-perl/Test-YAML-Valid
		)
	)
"
SRC_TEST="do"