blob: c3ef33e29581a989ac9b1c35b56b12d0f44a7d56 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 2020-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=DAVIDO
DIST_VERSION=0.29
DIST_EXAMPLES=("examples/*")
inherit perl-module
DESCRIPTION="Extension to generate cryptographically-secure random bytes"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="minimal"
RDEPEND="
dev-perl/Crypt-Random-Seed
>=virtual/perl-MIME-Base64-3.30.0
dev-perl/Math-Random-ISAAC
>=virtual/perl-Scalar-List-Utils-1.210.0
"
BDEPEND="
${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.560.0
test? (
>=virtual/perl-Test-Simple-0.980.0
!minimal? (
dev-perl/Statistics-Basic
)
)
"
PERL_RM_FILES=(
t/00-boilerplate.t
t/01-manifest.t
t/02-pod.t
t/03-pod-coverage.t
t/04-perlcritic.t
t/05-kwalitee.t
t/06-meta-yaml.t
t/07-meta-json.t
t/09-changes.t
)
PATCHES=(
"${FILESDIR}/${PN}-0.290.0-CVE-2026-11625.patch"
)
|