mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
43 lines
902 B
Bash
43 lines
902 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=MIROD
|
|
DIST_VERSION=3.54
|
|
DIST_TEST=do
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Process huge XML documents in tree mode"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
IUSE="nls"
|
|
|
|
RDEPEND="
|
|
>=dev-perl/XML-Parser-2.310.0
|
|
>=virtual/perl-Scalar-List-Utils-1.230.0
|
|
>=virtual/perl-Encode-2.240.100_rc
|
|
>=dev-libs/expat-1.95.5
|
|
dev-perl/Tie-IxHash
|
|
dev-perl/XML-XPath
|
|
>=dev-perl/libwww-perl-6.40.0
|
|
>=dev-perl/HTML-Parser-3.690.0
|
|
nls? (
|
|
>=dev-perl/Text-Iconv-1.200.0-r1
|
|
)
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
>=dev-perl/XML-Handler-YAWriter-0.230.0
|
|
>=dev-perl/XML-SAX-Writer-0.530.0
|
|
)
|
|
"
|
|
|
|
src_test() {
|
|
perl_rm_files "t/pod.t" "t/pod_coverage.t" "t/test_changes.t" \
|
|
"t/test_kwalitee.t" "t/test_meta_json.t"
|
|
perl-module_src_test
|
|
}
|