From 2f10a18acf65fe4a2cde4eb5243262dc4ad8605d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Tue, 30 Sep 2025 23:38:56 +0200 Subject: [PATCH] dev-lang/typescript: drop old 5.8.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- dev-lang/typescript/Manifest | 1 - dev-lang/typescript/typescript-5.8.3.ebuild | 43 --------------------- 2 files changed, 44 deletions(-) delete mode 100644 dev-lang/typescript/typescript-5.8.3.ebuild diff --git a/dev-lang/typescript/Manifest b/dev-lang/typescript/Manifest index 022ef188e5d81..4b97c99af5ab2 100644 --- a/dev-lang/typescript/Manifest +++ b/dev-lang/typescript/Manifest @@ -1,2 +1 @@ -DIST typescript-5.8.3.tgz 4250436 BLAKE2B 58d1a1c6e7515bc83375c18e3e25ed6dca93989589c722e7b561bf255f69e133f6aa4a0347eeb5bf6aa29dc5e4cc4a6fa7e6079b792d442ad9f300fd7683212c SHA512 a757625ba4ea2fd2f4ee7371bd130cee130cc387395cea3fd626cbe1a0081a6480b7db254c4d57830e4a5aea1fdae4cebc283d058ed9462f86685fbbb1f80f79 DIST typescript-5.9.2.tgz 4376902 BLAKE2B 35db4b391eed81a6407bd23a6494a2f01a6979858ddf3ccd74b2b1f16fcae4e11e1c813340a234af4da852de1ad21e0fa22b0cf04910c22b1c01c77bd798f958 SHA512 0960735d0adcfea3a4862770d4ecc14d0b9845b7f2c435c93152755cdc141c644e566b9a7a2126dceb25a59d5157de9ded228a8d92ab489bb7fadff1970dd1f4 diff --git a/dev-lang/typescript/typescript-5.8.3.ebuild b/dev-lang/typescript/typescript-5.8.3.ebuild deleted file mode 100644 index 3c3637607390b..0000000000000 --- a/dev-lang/typescript/typescript-5.8.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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" - -RDEPEND=" - net-libs/nodejs -" -BDEPEND=" - >=net-libs/nodejs-16[npm] -" - -src_compile() { - # Skip, nothing to compile here. - : -} - -src_install() { - local -a myopts=( - --audit false - --color false - --foreground-scripts - --global - --offline - --omit dev - --prefix "${ED}/usr" - --progress false - --verbose - ) - npm "${myopts[@]}" install "${DISTDIR}/${P}.tgz" || die "npm install failed" - - dodoc *.md *.txt -}