sys-apps/pnpm-bin: fix distdir and remove the -bin

Signed-off-by: Guillermo Roche <groche97@gmail.com>
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
This commit is contained in:
Guillermo Roche
2024-07-16 17:59:51 +02:00
committed by Lucio Sauer
parent c10f0bf7de
commit 412deadfac
2 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
DIST pnpm-linux-x64 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167
DIST pnpm-bin-9.0.6 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167

View File

@@ -1,11 +1,11 @@
# Copyright 1999-2023 Gentoo Authors
# 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="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64"
SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}"
S="${WORKDIR}"
@@ -15,8 +15,8 @@ KEYWORDS="~amd64"
RESTRICT="strip"
QA_PREBUILT="usr/bin/${PN}"
QA_PREBUILT="usr/bin/pnpm"
src_install() {
newbin "${DISTDIR}/pnpm-linux-x64" ${PN}
newbin "${DISTDIR}/${P}" pnpm
}