blob: 9bff3cea4a3cfa890bf61c6fc368af66056eb9ae (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_VERSION=0.06
MODULE_AUTHOR=FLORA
inherit perl-module
DESCRIPTION="Invoke callbacks when the stash code is being compiled in changes"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
# Test::More -> Test-Simple
RDEPEND="
virtual/perl-parent
>=dev-perl/B-Hooks-OP-Check-0.140.0
"
DEPEND="${RDEPEND}
dev-perl/ExtUtils-Depends
test? (
virtual/perl-Test-Simple
)
"
|