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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E0FB15807B for ; Mon, 14 Oct 2024 04:44:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FE4EE08C0; Mon, 14 Oct 2024 04:44:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14878E08C0 for ; Mon, 14 Oct 2024 04:44:38 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1CD16343119 for ; Mon, 14 Oct 2024 04:44:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C4CF1D6E for ; Mon, 14 Oct 2024 04:44:35 +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: <1728881043.aff560c148f708e02514d7d44b09547bf0b9082e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/App-perlbrew/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/App-perlbrew/App-perlbrew-1.0.0.ebuild dev-perl/App-perlbrew/Manifest X-VCS-Directories: dev-perl/App-perlbrew/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aff560c148f708e02514d7d44b09547bf0b9082e X-VCS-Branch: master Date: Mon, 14 Oct 2024 04:44:35 +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: c5c785a4-3fdd-4826-a121-4facf6748e4f X-Archives-Hash: a50cea4fd8d06dc2720cd7d61578fd0d commit: aff560c148f708e02514d7d44b09547bf0b9082e Author: Sam James gentoo org> AuthorDate: Mon Oct 14 04:35:34 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Oct 14 04:44:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff560c1 dev-perl/App-perlbrew: add 1.0.0 Signed-off-by: Sam James gentoo.org> dev-perl/App-perlbrew/App-perlbrew-1.0.0.ebuild | 57 +++++++++++++++++++++++++ dev-perl/App-perlbrew/Manifest | 1 + 2 files changed, 58 insertions(+) diff --git a/dev-perl/App-perlbrew/App-perlbrew-1.0.0.ebuild b/dev-perl/App-perlbrew/App-perlbrew-1.0.0.ebuild new file mode 100644 index 000000000000..ad720c9feb0e --- /dev/null +++ b/dev-perl/App-perlbrew/App-perlbrew-1.0.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=GUGOD +DIST_VERSION=1.00 +inherit perl-module + +DESCRIPTION='Manage perl installations in your $HOME' + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=virtual/perl-ExtUtils-MakeMaker-7.220.0 + >=dev-perl/CPAN-Perl-Releases-5.202.307.200 + >=dev-perl/Capture-Tiny-0.360.0 + >=dev-perl/Devel-PatchPerl-2.80.0 + >=virtual/perl-ExtUtils-MakeMaker-7.220.0 + >=virtual/perl-File-Temp-0.230.400 + virtual/perl-JSON-PP + >=dev-perl/local-lib-2.0.14 +" +BDEPEND=" + ${RDEPEND} + >=dev-perl/Module-Build-Tiny-0.39.0 + test? ( + >=dev-perl/File-Which-1.210.0 + >=dev-perl/Path-Class-0.330.0 + >=dev-perl/Test2-Plugin-IOEvents-0.1.1 + >=dev-perl/Test2-Plugin-NoWarnings-0.100.0 + ) +" + +mydoc=( "doc/notes.org" ) + +src_test() { + ( # export leak guard + if has "network" ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then + einfo "Network Tests Enabled" + export TEST_LIVE=1 + else + ewarn "This package needs network access for comprehensive testing." + ewarn "For details, see:" + ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}" + fi + + if has "network-dev-test" ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then + einfo "Developer HTTP Test enabled" + export PERLBREW_DEV_TEST=1 + fi + + perl-module_src_test + ) +} diff --git a/dev-perl/App-perlbrew/Manifest b/dev-perl/App-perlbrew/Manifest index 3e7654174048..d59c0f3412e2 100644 --- a/dev-perl/App-perlbrew/Manifest +++ b/dev-perl/App-perlbrew/Manifest @@ -1 +1,2 @@ DIST App-perlbrew-0.98.tar.gz 85396 BLAKE2B 4c7b71cbf49ef8e07627d55c59486fb88265f6d4584be8cf8d266f333aa44f1f1c1b00a8fc931113fd436fc19d6fb24f9973be71001bc45db160b19a2ff24cbb SHA512 55a3e53b52569594f977a3b61c9d739ab35dbf5a4fd5c6c021fb654bd5167c1843edee869ea854977c9b92311f5a0736aa55d9ed63a77359a1bb0682384f1a69 +DIST App-perlbrew-1.00.tar.gz 89040 BLAKE2B ab24e097658e3a07d6c0c24f1f9a230327026b7cb4f61a0683a53642c467a3e1eb1443e65b410bd9749b68341009d581e55ca81e07dd7a9caf6866a060183c98 SHA512 e5995fef15bac0b4bc7a52295c33010ea2cef1f927a16d8baaa57ac014f1176b4896681080f23d392aaef2d85a6996c4ac646555e9aea973ac7960492fec8a00