You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
842 B
39 lines
842 B
# 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
|
|
}
|