Files
gentoo/dev-perl/Config-Any/Config-Any-0.320.0.ebuild
Markus Meier e38d815d17 dev-perl/Config-Any: add ~arm, bug #619310
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
2017-05-27 09:06:03 +02:00

55 lines
953 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=HAARG
DIST_VERSION=0.32
inherit perl-module
DESCRIPTION="Load configuration from different file formats, transparently"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~ppc-aix"
IUSE="test +conf +ini +json +xml +yaml"
RDEPEND="
>=dev-perl/Module-Pluggable-3.600.0
conf? (
>=dev-perl/Config-General-2.470.0
)
!conf? (
!<dev-perl/config-general-2.470.0
!<dev-perl/Config-General-2.470.0
)
ini? (
dev-perl/Config-Tiny
)
json? (
|| (
dev-perl/Cpanel-JSON-XS
dev-perl/JSON-MaybeXS
dev-perl/JSON-XS
>=virtual/perl-JSON-PP-2
dev-perl/JSON
)
)
xml? (
dev-perl/XML-NamespaceSupport
dev-perl/XML-Simple
)
yaml? (
|| (
dev-perl/YAML-LibYAML
>=dev-perl/YAML-Syck-0.700.0
dev-perl/YAML
)
)
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Test-Simple
)
"