blob: 06a7233b13130867cd0e0f7bb62d4ad9bb67c843 (
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
|
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=OALDERS
DIST_VERSION=2.0.1
inherit perl-module
DESCRIPTION="OATH One Time Passwords"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-perl/Digest-HMAC
virtual/perl-Math-BigInt
>=dev-perl/Moo-2.2.4
dev-perl/Type-Tiny
"
BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Digest-SHA
dev-perl/Test-Needs
virtual/perl-Test-Simple
)
"
PERL_RM_FILES=(
t/author-pod-coverage.t
t/author-pod-spell.t
t/author-synopsis.t
t/author-tidyall.t
t/manifest.t
t/pod-coverage.t
t/pod.t
t/release-cpan-changes.t
)
|