From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9895E15849E for ; Sun, 2 Jun 2024 08:03:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E06F92BC022; Sun, 2 Jun 2024 08:03:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C61B92BC022 for ; Sun, 2 Jun 2024 08:03:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01A23342FF9 for ; Sun, 2 Jun 2024 08:03:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FB891C02 for ; Sun, 2 Jun 2024 08:03:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1717315397.3eafbd3d67289afb60ad631459f3e8f4cf0cd85b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/forks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/forks/forks-0.360.0-r3.ebuild X-VCS-Directories: dev-perl/forks/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3eafbd3d67289afb60ad631459f3e8f4cf0cd85b X-VCS-Branch: master Date: Sun, 2 Jun 2024 08:03:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e37cdfb7-b546-450f-a93d-ec3659582112 X-Archives-Hash: 61b637fc247d77312552255f3499f3c4 commit: 3eafbd3d67289afb60ad631459f3e8f4cf0cd85b Author: Sam James gentoo org> AuthorDate: Sun Jun 2 08:00:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 2 08:03:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eafbd3d dev-perl/forks: EAPI 8, rely on eclass impls This covers more variables/args, etc. Signed-off-by: Sam James gentoo.org> dev-perl/forks/forks-0.360.0-r3.ebuild | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-perl/forks/forks-0.360.0-r3.ebuild b/dev-perl/forks/forks-0.360.0-r3.ebuild new file mode 100644 index 000000000000..3ac82830d7d3 --- /dev/null +++ b/dev-perl/forks/forks-0.360.0-r3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=RYBSKEJ +DIST_VERSION=0.36 +inherit perl-module + +DESCRIPTION="Emulate threads with fork" + +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" + +RDEPEND=" + dev-perl/Acme-Damn + virtual/perl-Attribute-Handlers + dev-perl/Devel-Symdump + virtual/perl-File-Spec + >=virtual/perl-IO-1.180.0 + >=dev-perl/List-MoreUtils-0.150.0 + >=virtual/perl-Scalar-List-Utils-1.110.0 + virtual/perl-Storable + >=dev-perl/Sys-SigAction-0.110.0 + virtual/perl-Time-HiRes + virtual/perl-if +" +BDEPEND=" + ${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( virtual/perl-Test-Simple ) +" + +PERL_RM_FILES=( + t/forks99.t +)