mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 16:08:17 +00:00
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
32 lines
635 B
Bash
32 lines
635 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=KRYDE
|
|
DIST_VERSION=0.27
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Detect and calculate prime numbers with deterministic tests"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 x86"
|
|
|
|
RDEPEND="
|
|
dev-perl/boolean
|
|
dev-perl/Params-Validate
|
|
virtual/perl-Carp
|
|
virtual/perl-Exporter
|
|
virtual/perl-Scalar-List-Utils
|
|
virtual/perl-XSLoader
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
>=dev-perl/Module-Build-0.420.0
|
|
test? ( virtual/perl-Test-Simple )
|
|
virtual/perl-ExtUtils-CBuilder
|
|
"
|
|
|
|
src_test() {
|
|
perl_rm_files "t/pod.t" "t/pod-coverage.t"
|
|
perl-module_src_test
|
|
}
|