sys-apps/pnpm-bin: add 10.33.2

Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>
Part-of: https://codeberg.org/gentoo/guru/pulls/12
Merges: https://codeberg.org/gentoo/guru/pulls/12
This commit is contained in:
ingenarel (NeoJesus)
2026-05-01 06:42:11 +06:00
parent 1644f38b00
commit 3aaf3b5ec8
2 changed files with 29 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
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.33.2-amd64 66149733 BLAKE2B 08f1c4a4dc061aafd4042af0c69c5a7fc5c4e1589381fd0783cc15f94dedc02b08941327e449859785cf5e469ec041a780cb00f822b25d1faabf593b3b56b6cd SHA512 8d3c926fbc8f5e58c09635027c70a20ad19d7c89fb6ee4a456e3e7f8f4949c47fcce2e50457ee232b8433d0fa10d26d4ef854fe7b425a67006a4cccc6558fad3
DIST pnpm-bin-10.33.2-arm64 62175261 BLAKE2B 713d49734f3690ed942140500a5e938d754ed11e013e2b0486fb9ad3aff322a7faacad0bc121ebf885e83deb276b0540404074de2e6532e9a8bf89492797c791 SHA512 cdc661587d34410bd4ee9ba39305a5b026382a0b1ba10e2efd4a4af34753673aec975fdb3ad451224dfe1b9dea79f2debde3989446fd509e08ccfc58ffa289ee

View File

@@ -0,0 +1,27 @@
# 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 -> ${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"
RDEPEND="!net-libs/nodejs[corepack]"
QA_PREBUILT="usr/bin/pnpm"
src_install() {
newbin "${DISTDIR}/${P}-${ARCH}" pnpm
}