blob: d21b7b36ee63b936026a38ea98c047fd663de016 (
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 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=JMASLAK
DIST_VERSION=2.0002
inherit perl-module
DESCRIPTION="Parse, manipulate and lookup IP network blocks"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86"
IUSE="minimal"
RDEPEND="
!minimal? ( >=dev-perl/AnyEvent-7.140.0 )
virtual/perl-Carp
virtual/perl-Exporter
>=virtual/perl-Math-BigInt-1.999.811
"
BDEPEND="
${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
>=dev-perl/Test2-Suite-0.0.111
>=dev-perl/Test-UseAllModules-0.170.0
)
"
|