mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 15:43:55 +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>
33 lines
684 B
Bash
33 lines
684 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=YANICK
|
|
DIST_VERSION=2.02
|
|
DIST_EXAMPLES=( "examples/*" )
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="A simple parallel processing fork manager"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
|
|
IUSE="minimal"
|
|
|
|
RDEPEND="
|
|
virtual/perl-Carp
|
|
virtual/perl-File-Path
|
|
virtual/perl-File-Spec
|
|
virtual/perl-File-Temp
|
|
dev-perl/Moo
|
|
virtual/perl-Storable
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
test? (
|
|
!minimal? ( >=virtual/perl-CPAN-Meta-2.120.900 )
|
|
virtual/perl-IO
|
|
>=virtual/perl-Test-Simple-0.940.0
|
|
dev-perl/Test-Warn
|
|
)
|
|
"
|