new ebuild sys-apps/pnpm-bin-11.7.0

This commit is contained in:
2026-06-16 14:25:15 +02:00
parent 8fce1fd9f1
commit d91c7139ae
2 changed files with 31 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DIST pnpm-bin-11.7.0-amd64.tar.gz 50898591 BLAKE2B 3436f5e215207b0aad373d450e01a0ba2319283e4ecbb4c92002eb1772b0ad7c26455f6f0cbbfc9f416771483f81bb96cd211e0f865e66dac8622401937a5947 SHA512 2f13107ce78118dafdb070e70142c7f2c0f11af608b516551659d486650244429e6c11de2623ed65de4ea13c4d881dcb99f86c4c0242cc9f4864fc5b09144572
DIST pnpm-bin-11.7.0-arm64.tar.gz 51174343 BLAKE2B f5b6742814d09f5e2da139e7ad19a05ac0cb356f6d3236a34ad71c75599136a6883a88657cc36564447359aa8158b5364b72c57a13bb62f743af7a4839dd4e95 SHA512 1f1221c1a7c2a7044f0fcb9dda946d4694443ed9b4976ee3159bbff5255e6a97d18af269143f44035eeb88a3c6df63702bae7631e26d4386b19fdbabbc399aa3
+29
View File
@@ -0,0 +1,29 @@
# Copyright 2023-2026 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.tar.gz -> ${P}-amd64.tar.gz )
arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64.tar.gz -> ${P}-arm64.tar.gz )
"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
RESTRICT="strip"
RDEPEND="!net-libs/nodejs[corepack]"
QA_PREBUILT="usr/bin/pnpm"
src_install() {
into /usr/lib/pnpm
cp -R "${S}/dist" "${S}/pnpm" "${D}/usr/lib/pnpm/" || die "Install failed!"
dosym ../lib/pnpm/pnpm /usr/bin/pnpm
}