app-containers/devcontainer: bump to 0.84.1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-03-21 15:29:37 +01:00
parent a6e416041a
commit a0945b1ad7
2 changed files with 48 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST devcontainer-0.81.1.npm.tgz 613435 BLAKE2B 03de042ecb26f85576b4d99f2943b4f01f3c7fc94576f6863c01c4efe8a82427bf3567687137701b66a52a29abbbc17e7084afae624d3f83d7d5a2baa7c8a049 SHA512 eb17d0935903273d2a09f0556fd316e7deb32a7adbef0bedc38d7875badfec4c529397be328abe2bfba76a5543aa198d5e7ef611a511c4715a0c55bd21e2c382
DIST devcontainer-0.83.3.npm.tgz 613020 BLAKE2B d523f716f2bab5bc71ab68c52fb4a23e0dc516e08afc03394248a12b53fbe5b9595feae5071e123e751fbcd714d8d6bf2fbd4dfb13513d198d2fe719df1b282f SHA512 422b88f26ac90ba90b5f1a067bb8edfb2084286367dcc4be6473985b7cd90e48be9eca7b948a8ec47bd7babbca36ffc915f07d25da225fcc87828eb239f5cee7
DIST devcontainer-0.84.0.npm.tgz 603309 BLAKE2B 5b19775eb3fa14b394278acf14d620b8c63c9683fbbe089899a80edd569372d4b3d1b8ef68065aa495df95b527321064effa16893c0d4f67bdc7af58a160f1f8 SHA512 cc01bd2af8fca87e9b02f45e6133b966d0d41cdafa384b14a97c4ad4bd7ce7a5d937a73645557b692029fea2000c6aaa7b4a68a8fafe8a084596fba2d821f62d
DIST devcontainer-0.84.1.npm.tgz 603371 BLAKE2B 5fd8fb8f02585a57f3655ebb5547f87a38e978cdd9fda7c6917c83ba3a1bbea4302f159cc30ff247d2da026d1f1d2849654f45aadcdab3da523d456f11e642e6 SHA512 afe251ff847c9739cf40dc0bc873c8cc72759a3de9da5e651b21deab615eb447e97bab3a0552c4f66165eccc50238c0a36a7d60883bb0d2a24a0259197341222

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Reference implementation of the Development Containers specification"
HOMEPAGE="https://containers.dev/
https://github.com/devcontainers/cli/"
SRC_URI="https://registry.npmjs.org/@devcontainers/cli/-/cli-${PV}.tgz
-> ${P}.npm.tgz"
S="${WORKDIR}/package"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
net-libs/nodejs
"
BDEPEND="
net-libs/nodejs[npm]
"
DOCS=( CHANGELOG.md README.md )
src_compile() {
# Skip, nothing to compile here.
:
}
src_install() {
local -a my_npm_opts=(
--audit false
--color false
--foreground-scripts
--global
--offline
--omit dev
--prefix "${ED}/usr"
--progress false
--verbose
)
npm "${my_npm_opts[@]}" install "${DISTDIR}/${P}.npm.tgz" || die "npm install failed"
einstalldocs
}