mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03: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>
36 lines
659 B
Bash
36 lines
659 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DIST_AUTHOR=KWILLIAMS
|
|
DIST_VERSION=0.13
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Glue object frameworks together transparently"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ppc ~riscv ~sparc x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
virtual/perl-Carp
|
|
>=dev-perl/Params-Validate-0.24-r1
|
|
virtual/perl-Scalar-List-Utils
|
|
"
|
|
DEPEND="
|
|
dev-perl/Module-Build
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
|
|
>=dev-perl/Module-Build-0.360.100
|
|
test? (
|
|
virtual/perl-File-Spec
|
|
virtual/perl-Test
|
|
)
|
|
"
|
|
PERL_RM_FILES=(
|
|
"t/author-critic.t"
|
|
)
|