mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
38 lines
888 B
Bash
38 lines
888 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_SECTION=lwp
|
|
DIST_AUTHOR=SAXJAZMAN
|
|
DIST_VERSION=1.12
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Subclass of LWP::UserAgent that protects you from harm"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86"
|
|
|
|
RDEPEND="
|
|
dev-perl/libwww-perl
|
|
dev-perl/Net-DNS
|
|
virtual/perl-Time-HiRes
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
"
|
|
|
|
src_test() {
|
|
local my_test_control
|
|
my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
|
|
if has network ${my_test_control}; then
|
|
einfo "Enabling ONLINE_TESTS"
|
|
export ONLINE_TESTS=1
|
|
else
|
|
ewarn "Comprehensive testing requires network access. For details see:"
|
|
ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}"
|
|
fi
|
|
perl_rm_files t/40-slowserver.t t/50-stuckserver.t
|
|
perl-module_src_test
|
|
}
|