Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dev-util/pnpm-bin/Manifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ DIST pnpm-bin-10.30.1-amd64-linux 63543458 BLAKE2B 3953d2a14df411753dabadbfc19f1
DIST pnpm-bin-10.30.1-arm64-linux 57991226 BLAKE2B 3a3296331cb873b0b479065916ef9e5fd5adb599cba30a312b44b02d07a0910930d77e418dc8736abec98561b86c87a2aade6d8e852443176999c1308f1d6e2a SHA512 abc9133e7319047a244422e2445b4ce5f0db0dd3330600521295c6dd685baa9efbd1937966bffbecbc43dbbc9d851c40ef0c513b0080ca4e61fbf1a2afbb1ad8
DIST pnpm-bin-10.30.3-amd64-linux 63543802 BLAKE2B cb4cc74c682e81df6f2ebab66aba89a1662dd8d0e757d4f13d660a9a8a96021a8efcddc35388dd2cde79cfeb4fcbc36eb973b5823c010c960cf128060a232a76 SHA512 b17320b5cb18f98dc6cb25cc3d6b3629792213b30a3c16067d32e6539bfb80a7b69501707533979a1cb01d6b5922711106883f7ef16bcffbef15dec43df92e0a
DIST pnpm-bin-10.30.3-arm64-linux 57991682 BLAKE2B 226028055ea29b67375678db70520ffa9fe9807e19323b5f1ee06123aa203d6c0f169066dea360baf271a291b0d594bdbf0e96d45e533d7dae50da97cc15859b SHA512 9045280cc23bc7e753836c7e18400df0eef90dbbc388fc6f84228076f52140b282b47fa23394cd0222b57eed611fea9d7bbb8e989d1943acf60767cfb6132d2c
DIST pnpm-bin-10.31-amd64-linux 63813631 BLAKE2B 55914ba7a7e7c1b7695fc610d3dc380f005cd0411a5d72ed49c900c5ffad70fa9d45d04163fa7226d68334250954da8255e751897237df61dc249d2fb6b85aca SHA512 fb550e21adca8f837fb1ba0805461ed5d53286846d53a96eacec8c8d774c377a9a93a30546b67a0962f395b69d892d1da0f70f8f8a8e7b1af14f6faed3c69175
DIST pnpm-bin-10.31-arm64-linux 58261447 BLAKE2B 8d1392e1377531deb754c975726c942dd42dacfd9ce9d4a13d6c9bb6d11b7d7f16d4577d0a255fc833ee3fd83c9b59369d5057caadc6984df333995c45b0dd37 SHA512 f5bbbda45ba129c16e939c50eeec6dc84cdd4ec705f2434211c07c3b76bb4a8fb9625e782486ea2593aa21f088a4c9536b0d62748f2891f94ee854c166416055
31 changes: 31 additions & 0 deletions dev-util/pnpm-bin/pnpm-bin-10.31.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Distributed under the terms of the GNU General Public License v2
# Autogen by MARK Devkit

EAPI=7
QA_PREBUILT="/usr/bin/pnpm"

DESCRIPTION="Fast, disk space efficient package manager (upstream binary)"
HOMEPAGE="https://pnpm.io"
SRC_URI="
amd64? ( https://github.com/pnpm/pnpm/releases/download/v10.31.0/pnpm-linuxstatic-x64 -> pnpm-bin-10.31-amd64-linux )
arm64? ( https://github.com/pnpm/pnpm/releases/download/v10.31.0/pnpm-linuxstatic-arm64 -> pnpm-bin-10.31-arm64-linux )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="*"
IUSE="amd64 arm64"
src_unpack() {
mkdir -p "${S}"
}
src_configure() { :; }
src_compile() { :; }
src_install() {
if use amd64 ; then
newbin "${DISTDIR}"/pnpm-bin-10.31-amd64-linux pnpm
fi
if use arm64 ; then
newbin "${DISTDIR}"/pnpm-bin-10.31-arm64-linux pnpm
fi
}


# vim: filetype=ebuild