diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-09-12 00:11:17 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-09-12 01:30:54 +0200 |
commit | 6b874b22941bb6f802599cdc1ce79a38ac964c40 (patch) | |
tree | 76a7a27e4c7c00885e80654fe9d35e5d0f842922 | |
parent | dev-lang/typescript: drop old 5.5.2 (diff) | |
download | gentoo-6b874b22941bb6f802599cdc1ce79a38ac964c40.tar.gz gentoo-6b874b22941bb6f802599cdc1ce79a38ac964c40.tar.bz2 gentoo-6b874b22941bb6f802599cdc1ce79a38ac964c40.zip |
dev-lang/typescript: drop old 5.5.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r-- | dev-lang/typescript/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/typescript/typescript-5.5.3.ebuild | 43 |
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-lang/typescript/Manifest b/dev-lang/typescript/Manifest index 4afacc3debeb..bd19e849f399 100644 --- a/dev-lang/typescript/Manifest +++ b/dev-lang/typescript/Manifest @@ -1,2 +1 @@ -DIST typescript-5.5.3.tgz 4041052 BLAKE2B e30ca285fdedfefc8ebac28310dc4d4834efefc9c25d36ca5be43c0ed81e91698b879565c47651402a90b16ba4d30895d00bcee5a752ad538b4d9f2e2327ad49 SHA512 fe1adec84ba3681d30efaccaa3aef5ee5dcbd28fea114b5181dbd406f96486859e39532332e1cd1e4d01441ce2933b860ea3663d06e0e627cc12ab072e221471 DIST typescript-5.5.4.tgz 4043150 BLAKE2B 6171a4bafcb7d9dff4cd603846980bcfa599c4ee13d585760af572dc410a584f729485bc2aaf5cb5e3721d37b7cf8d4f54eaf9abda86eba04bf54b50ac80db9c SHA512 32dab6f6c28300460feda963460b4f3a94ef39f6f0456952e9d3d1cf08dd13e0b44786eb5ff194ca11d279c6c73052cd04b70920fb7d9e5f721b94d9d70787f9 diff --git a/dev-lang/typescript/typescript-5.5.3.ebuild b/dev-lang/typescript/typescript-5.5.3.ebuild deleted file mode 100644 index ebdd7db72e65..000000000000 --- a/dev-lang/typescript/typescript-5.5.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 2021-2024 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 -} |