blob: a30be484cdb4f338dc9e251dabe4fa7d97e17931 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=RRWO
DIST_VERSION=v${PV}
inherit perl-module
DESCRIPTION="Defines RGB values for common color names"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
>=virtual/perl-Module-Load-0.100.0
dev-perl/Color-Library
dev-perl/Tie-Sub
"
BDEPEND="${RDEPEND}
test? (
dev-perl/Test-Exception
dev-perl/Test-Most
)
"
src_test() {
perl_rm_files t/90-pod-coverage.t t/90-pod.t \
t/90-file-port.t
perl-module_src_test
}
|