sys-apps/pnpm-bin: add 10.19.0

Signed-off-by: Itai Ferber <itai@itaiferber.net>
This commit is contained in:
Itai Ferber
2025-10-21 19:11:18 -04:00
parent 71a86ecf6c
commit 1fd9a449e7
2 changed files with 27 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST pnpm-bin-10.19.0-amd64 65887453 BLAKE2B dd8cdb08203afa03dd515ea7d60c632ffefe7e4e2562102800c1ed7d33cfc23730ef269756ff7742f43a8cbab54d5256aeebe142237b9e9d97678b2c18104104 SHA512 e1645b8c2c3a73278756ca9faa2ebe2cd3aca67defcc99a7874d36a3e29e094e33f5173d4372e7d7a236a37652555332ca5f71d3accef878c2d6dc66d0d9a8c0
DIST pnpm-bin-10.19.0-arm64 61912813 BLAKE2B c951154cb2edce962db2466d3eae4f2dc040b6a7ae1205b18ab8b7621a43a81fb556ff9e9e0bb73a621363db98d1959b0046fba1cce48fd8bff0a08e3125bbe9 SHA512 aa734430860513d97024973d57b8e16acc337fa678cd12961a7105c4a76a02a5f92814cc5443c7a1f8d98f7d713168a257d91b56462a859c9c8e277108e4495d
DIST pnpm-bin-10.2.0-amd64 67052922 BLAKE2B bf4eac05f70ff6afc94124cf49449f1f9ef040b3100991270625070ce3f01bbc4f208c7ba9f46772b1e19aaf9b85fbf8754fe039400c60eb51280ede44451f51 SHA512 a4f6afeb87c62c277bb8f5bc15a9b76c1a4dcbcd4c507a112322b68e0cc5538e65c9dac17d49d8a0b38629eb00b35594e3d8e176d3a3182c2b92f760bbe5fe46
DIST pnpm-bin-10.2.0-arm64 63078202 BLAKE2B 3f5c76694efa6e4fdedc7709fbefa1b76e0bcecb7d65c9dc155a604a4c7f3ed95810f2e4cd4171c6cf5635b551238aa9b4cf9a12472ac9897fcdf1234e906acf SHA512 c3f02dc43747a1dd0968fb08ff68570930f330e4c8e5b1bd6f1433ac13d351064cc0e0996c31cd8e2cfaa57429d89bc32eca6ac272471d8d8f06b897992defc3
DIST pnpm-bin-9.12.3-amd64 68151033 BLAKE2B ca06a4db4ae9a79c0e80d02544b9ebdc302678ee3cf0b9bd78de81ef0e9636b4e2b7d79ef568a1c30b4ca1277e746885eaf0caf1f8dc646dcf86adc886bb568d SHA512 cd8d5779d637df41948edafb700099db5a367358f05334e2dd142b5779ac129d05db7e5452de70612aae839ff23b41634991d88b039624f0fa70bacd173d4c4e

View File

@@ -0,0 +1,25 @@
# Copyright 2023-2025 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 -> ${P}-amd64 )
arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${P}-arm64 )
"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
RESTRICT="strip"
QA_PREBUILT="usr/bin/pnpm"
src_install() {
newbin "${DISTDIR}/${P}-${ARCH}" pnpm
}