blob: 9e8c83a9397d83b937ab8969eae64e6a8887a3ff (
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-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=EXOBUZZ
DIST_VERSION=0.41
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 ~sh ~sparc ~x86"
IUSE="test"
RDEPEND="
dev-perl/JSON
dev-perl/libwww-perl
virtual/perl-Carp
virtual/perl-Encode
"
DEPEND="
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
}
|