blob: 172eec02987f6f77951853219da313efc7a9f9b8 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=EXOBUZZ
DIST_VERSION=0.52
inherit perl-module
DESCRIPTION="A OO interface to the Mediawiki API"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
virtual/perl-Carp
virtual/perl-Encode
dev-perl/JSON
dev-perl/libwww-perl
"
BDEPEND="
virtual/perl-ExtUtils-MakeMaker
test? (
>=virtual/perl-Test-Simple-0.980.0
)
"
src_test() {
local my_test_control
my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
if has network ${my_test_control}; then
perl_rm_files "t/98-pod-coverage.t" "t/99-pod.t"
else
perl_rm_files "t/98-pod-coverage.t" "t/99-pod.t" "t/10-api.t"
fi
perl-module_src_test
}
|