31 lines
603 B
Bash
31 lines
603 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
MODULE_AUTHOR=STEFFENW
|
|
MODULE_VERSION=1.001
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Tying a subroutine, function or method to a hash"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="dev-perl/Params-Validate"
|
|
DEPEND="${RDEPEND}
|
|
test? (
|
|
>=dev-perl/Test-Differences-0.600.0
|
|
dev-perl/Test-NoWarnings
|
|
dev-perl/Test-Exception
|
|
virtual/perl-Test-Simple
|
|
)"
|
|
|
|
SRC_TEST="do"
|
|
|
|
src_test() {
|
|
perl_rm_files t/pod.t t/pod_coverage.t t/perl_critic.t \
|
|
t/prereq_build.t
|
|
perl-module_src_test
|
|
}
|