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 C4BF7158089 for ; Wed, 13 Sep 2023 03:49:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB4122BC152; Wed, 13 Sep 2023 03:49:23 +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 784202BC151 for ; Wed, 13 Sep 2023 03:49:23 +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 2D228335CEA for ; Wed, 13 Sep 2023 03:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B20521193 for ; Wed, 13 Sep 2023 03:49:19 +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: <1694576883.cf9b5b6cbf1cdc32943d53ccf96caeb41726474c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gentoo-perl-helpers/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.4.0-r1.ebuild X-VCS-Directories: app-admin/gentoo-perl-helpers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cf9b5b6cbf1cdc32943d53ccf96caeb41726474c X-VCS-Branch: master Date: Wed, 13 Sep 2023 03:49:19 +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: 013ab97c-368d-4fda-b28b-97ed645f5f18 X-Archives-Hash: 95aed1894b972f53d5d14e1267fa5e85 commit: cf9b5b6cbf1cdc32943d53ccf96caeb41726474c Author: Leonardo Hernández Hernández proton me> AuthorDate: Sun Sep 10 23:39:31 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 13 03:48:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9b5b6c app-admin/gentoo-perl-helpers: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Sam James gentoo.org> .../gentoo-perl-helpers-0.4.0-r1.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.4.0-r1.ebuild b/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.4.0-r1.ebuild new file mode 100644 index 000000000000..87e71a5c3fe0 --- /dev/null +++ b/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.4.0-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Introspection and Upgrade Assistance tools for Gentoo Perl" +HOMEPAGE="https://github.com/gentoo-perl/gentoo-perl-helpers" +SRC_URI=" + https://github.com/gentoo-perl/${PN}/releases/download/${PV}/${P}.tar.xz + mirror://gentoo/${P}.tar.xz + https://dev.gentoo.org/~kentnl/distfiles/${P}.tar.xz +" +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +# Assumed System: +# sys-apps/coreutils +# sys-apps/grep +# sys-apps/sed +# app-shells/bash +# sys-apps/gawk +# app-arch/tar + +# multiple --quiet, --format and anti-slot support) +RDEPEND=" + >=app-portage/portage-utils-0.80_pre20190620 +" +BDEPEND="app-arch/xz-utils[extra-filters]" + +src_prepare() { + sed -i -e "s^@@LIBDIR@@^${EPREFIX}/usr/lib/gentoo-perl-helpers^g" \ + -e "s^@@LIBEXECDIR@@^${EPREFIX}/usr/libexec/gentoo-perl-helpers^g" \ + "${S}/bin/gentoo-perl" \ + "${S}/lib/core-functions.sh" \ + || die "Can't patch bin/gentoo-perl" + default +} + +src_compile() { :; } + +src_install() { + exeinto /usr/bin + doexe "${S}/bin/"* + + exeinto /usr/libexec/gentoo-perl-helpers + doexe "${S}/libexec/"* + + insinto /usr/lib/gentoo-perl-helpers + doins -r "${S}/lib/"* + + dodoc "${S}/README.mkdn" "${S}/Changes" +}