Install this version:
emerge -a =app-containers/devcontainer-0.86.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-containers/devcontainer-0.86.1
Or alternatively:
emerge --autounmask-write -a =app-containers/devcontainer-0.86.1
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
DESCRIPTION="Reference implementation of the Development Containers specification"
HOMEPAGE="https://containers.dev/
https://github.com/devcontainers/cli/
https://registry.npmjs.org/@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=(
--prefix="${ED}/usr"
--omit="dev"
--audit="false"
--color="false"
--progress="false"
--foreground-scripts
--global
--offline
--verbose
)
npm "${my_npm_opts[@]}" install "${DISTDIR}/${P}.npm.tgz" || die "npm install failed"
einstalldocs
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | devcontainer-0.86.1.npm.tgz | 604527 bytes | https://registry.npmjs.org/@devcontainers/cli/-/cli-0.86.1.tgz |