From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1633959-garchives=archives.gentoo.org@lists.gentoo.org> 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 C4A781581D3 for <garchives@archives.gentoo.org>; Wed, 22 May 2024 02:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 474D92BC019; Wed, 22 May 2024 02:18:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 16CA72BC01D for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 02:18:56 +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 C6AD733FD3F for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 02:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 798821B0F for <gentoo-commits@lists.gentoo.org>; Wed, 22 May 2024 02:18:52 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1716344279.125d6b4e5d58431a8f3fe87c911407da5dfd67f6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/PerlIO-Layers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/PerlIO-Layers/PerlIO-Layers-0.12.0-r1.ebuild X-VCS-Directories: dev-perl/PerlIO-Layers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 125d6b4e5d58431a8f3fe87c911407da5dfd67f6 X-VCS-Branch: master Date: Wed, 22 May 2024 02:18:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 80a314cb-e4f0-4092-ad90-d7a4d2d3eea2 X-Archives-Hash: 3ba7e2c63a9fbab8e218cbf75465be2b commit: 125d6b4e5d58431a8f3fe87c911407da5dfd67f6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed May 22 02:17:12 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed May 22 02:17:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=125d6b4e dev-perl/PerlIO-Layers: rely on eclass impls This covers more variables/args, etc. Signed-off-by: Sam James <sam <AT> gentoo.org> .../PerlIO-Layers/PerlIO-Layers-0.12.0-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-perl/PerlIO-Layers/PerlIO-Layers-0.12.0-r1.ebuild b/dev-perl/PerlIO-Layers/PerlIO-Layers-0.12.0-r1.ebuild new file mode 100644 index 000000000000..42e19bd55ba0 --- /dev/null +++ b/dev-perl/PerlIO-Layers/PerlIO-Layers-0.12.0-r1.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=LEONT +DIST_VERSION=0.012 + +inherit perl-module + +DESCRIPTION="Querying your filehandle's capabilities" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + virtual/perl-Carp + >=virtual/perl-Exporter-5.570.0 + virtual/perl-Scalar-List-Utils + virtual/perl-XSLoader +" + +BDEPEND=" + ${RDEPEND} + >=dev-perl/Module-Build-0.360.100 + test? ( + virtual/perl-Data-Dumper + virtual/perl-File-Spec + >=virtual/perl-Test-Simple-0.820.0 + ) +" + +PERL_RM_FILES=( + t/release-pod-coverage.t + t/release-pod-syntax.t +)