app-containers/devcontainer: drop old 0.80.0

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć 2025-10-23 22:07:20 +02:00
parent 46c8c422d4
commit b32c4f547a
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
2 changed files with 0 additions and 47 deletions

View File

@ -1,2 +1 @@
DIST devcontainer-0.80.0.tgz 612503 BLAKE2B ec349f0c71ea74377bc5b31d0933a4cd1f30de69cb81e9ca70aa550821c23ebeeea225e88303fe0878a023c0f0a5df3d19b3138c8da99b315f75b3efa8582833 SHA512 c3611ac608f27951b2cdf03f294119061c97aaeff93f258d5dc9eb5ec64e06bb7768ddb3c86887ad7a06e784c5e8ad1be43482174d51b797e7232ac2785cc52b
DIST devcontainer-0.80.1.tgz 612511 BLAKE2B f01d08d658aaa07ca7bae0ddf21c2baa936fc2d95d6b02d44ac68bb3f4c9ed16e7663c1515a7022747e534787bafa189b5654daa4ff281a0626b09e3e5cd5e50 SHA512 143eb0abc91ad9f56ac9b5a8a16fbed14553aa8e3a4f3c476e5c138bdcb9f13a8fdd0771ea2c0cb7f8738237dcb3ceb906d477ebec0483ea913dc2b0c63ce304

View File

@ -1,46 +0,0 @@
# Copyright 1999-2025 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}.tgz"
S="${WORKDIR}/package"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
RDEPEND="
net-libs/nodejs
"
BDEPEND="
>=net-libs/nodejs-16[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}.tgz" || die "npm install failed"
einstalldocs
}