blob: 9ba8590404243ec3062f1ecc2501446080c80785 (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=JSF
inherit perl-module
DESCRIPTION="Expansion of test functionality that is frequently used while testing"
SLOT="0"
KEYWORDS="amd64 ~x86"
RDEPEND="
dev-perl/Const-Fast
dev-perl/Importer
dev-perl/File-chdir
dev-perl/PadWalker
>=dev-perl/Path-Tiny-0.144.0
dev-perl/Scalar-Readonly
virtual/perl-Test2-Suite
dev-perl/Test2-Tools-Explain
"
BDEPEND="${RDEPEND}"
src_install() {
perl-module_src_install
find "${ED}" -type f -name '*.perlcriticrc' -delete || die
}
|