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 1ABC8159C96 for ; Thu, 25 Jul 2024 14:54:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56F59E2B23; Thu, 25 Jul 2024 14:54:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BB2DE2B23 for ; Thu, 25 Jul 2024 14:54:30 +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 37B6133BDF0 for ; Thu, 25 Jul 2024 14:54:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1C521E46 for ; Thu, 25 Jul 2024 14:54:27 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1721905268.721ad5893082c338bb395e244ef42028b0b54dcd.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/pnpm-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild X-VCS-Directories: sys-apps/pnpm-bin/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 721ad5893082c338bb395e244ef42028b0b54dcd X-VCS-Branch: master Date: Thu, 25 Jul 2024 14:54:27 +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: 70aeee57-e2f7-43d5-8429-0a3dc30e8485 X-Archives-Hash: afdc1d0f28c0cdbbc0d2f5fdb7d0071b commit: 721ad5893082c338bb395e244ef42028b0b54dcd Author: Ada Ahmed gmail com> AuthorDate: Thu Jul 25 10:57:21 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Jul 25 11:01:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=721ad589 sys-apps/pnpm-bin: bump 9.6.0 sys-apps/pnpm-bin: ~arm64 Signed-off-by: Ada Ahmed gmail.com> sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild new file mode 100644 index 000000000..10758d811 --- /dev/null +++ b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn" +HOMEPAGE="https://pnpm.io" +SRC_URI=" + amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${PV}-amd64 ) + arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${PV}-arm64 ) +" + +S="${WORKDIR}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 -*" + +RESTRICT="strip" + +QA_PREBUILT="usr/bin/pnpm" + +src_install() { + newbin "${DISTDIR}/${PV}-${ARCH}" pnpm +}