mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/623676 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
31 lines
805 B
Bash
31 lines
805 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=RCAPUTO
|
|
DIST_VERSION=0.921
|
|
inherit perl-module
|
|
|
|
DESCRIPTION='A non-blocking getaddrinfo() resolver'
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/POE-1.311.0
|
|
>=virtual/perl-Scalar-List-Utils-1.230.0
|
|
>=virtual/perl-Socket-2.1.0
|
|
>=virtual/perl-Storable-2.180.0
|
|
>=virtual/perl-Test-Simple-0.96
|
|
>=virtual/perl-Time-HiRes-1.971.100
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
|
|
"
|
|
|
|
# Test requires internet access and gets easily confused regarding
|
|
# presence / absence of ipv6 support
|
|
# See https://rt.cpan.org/Public/Bug/Display.html?id=104651
|
|
# It succeeds here as user with "ebuild" but fails as root with "emerge"...
|
|
PERL_RM_FILES=( t/01-basic.t )
|