mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 23:48:20 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
42 lines
926 B
Bash
42 lines
926 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 ~amd64-linux ~x86-linux"
|
|
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
|
|
}
|