diff --git a/dev-lang/typescript/Manifest b/dev-lang/typescript/Manifest index 7d02bce65c69e..ac4ab273f0f13 100644 --- a/dev-lang/typescript/Manifest +++ b/dev-lang/typescript/Manifest @@ -1,2 +1 @@ -DIST typescript-6.0.2.tgz 4515770 BLAKE2B 249d5296c207b1d173b1f041324188d05a53731468514f219e1c3f7dd856667c557d0bad9d3844929b58420503752aea55b198920bcc2a91c1a4596d6c093ead SHA512 6c674022b674c22183a3997c73ef875ad6da3425934b8513bfb45a4c7fd38552208e4bde26df379bbe1b04730992e09bb2563c8b180b05564920e8909504e37d DIST typescript-6.0.3.tgz 4515854 BLAKE2B 09e59a19226c4946bb73fd8b0949c472008289ced9b8238d405bee74f5305bb9bed6261062f875aa699ed0395b12978f6bd1875a60662d9385b7f9805ed4605a SHA512 cb64efbb14993c3c906a490544f6472859be28a56a222b1d83dfc26709bd7edbca5cb3fc3515a3dfcfce0e335baf8dd2b285ea36e022b047f519d0b1a9671d07 diff --git a/dev-lang/typescript/typescript-6.0.2.ebuild b/dev-lang/typescript/typescript-6.0.2.ebuild deleted file mode 100644 index 763ed060293ac..0000000000000 --- a/dev-lang/typescript/typescript-6.0.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=9 - -DESCRIPTION="Superset of JavaScript with optional static typing, classes and interfaces" -HOMEPAGE="https://www.typescriptlang.org/ - https://github.com/microsoft/TypeScript/" - -SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz" -S="${WORKDIR}/package" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv" - -RDEPEND=" - net-libs/nodejs -" -BDEPEND=" - >=net-libs/nodejs-16[npm] -" - -src_compile() { - # Skip, nothing to compile here. - : -} - -src_install() { - local -a myopts=( - --prefix="${ED}/usr" - --audit="false" - --color="false" - --progress="false" - --foreground-scripts - --global - --offline - --omit dev - --verbose - ) - npm "${myopts[@]}" install "${DISTDIR}/${P}.tgz" || die "npm install failed" - - dodoc *.md *.txt -}