summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-08-25 22:37:00 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-08-25 23:21:33 +0200
commit7c208211b35c19ea37ef50076908bbbfab163300 (patch)
tree0e74ced2fa5b9b879e12733fb87d4e45fe8f75ec
parentdev-lang/typescript: drop old 5.0.4 (diff)
downloadgentoo-7c208211b35c19ea37ef50076908bbbfab163300.tar.gz
gentoo-7c208211b35c19ea37ef50076908bbbfab163300.tar.bz2
gentoo-7c208211b35c19ea37ef50076908bbbfab163300.zip
dev-lang/typescript: drop old 5.1.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--dev-lang/typescript/Manifest1
-rw-r--r--dev-lang/typescript/typescript-5.1.3.ebuild39
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-lang/typescript/Manifest b/dev-lang/typescript/Manifest
index 4cfc0b8d648d..6e72b9b778f0 100644
--- a/dev-lang/typescript/Manifest
+++ b/dev-lang/typescript/Manifest
@@ -1,2 +1 @@
-DIST typescript-5.1.3.tgz 7147721 BLAKE2B 5a18d18bcbe702c82a108624c189e6b03d72f74e16ccf6af2448c71c1decfcc7995b53524472e106c19ef01ec95df772ccfeed3e76fad1eb59f29bbe42668fb0 SHA512 5c7eb6ec4f6f91eaa1959150b8bf94b3201712789b4f491647615638d96be2c4e3bf1c89627c9e7e0ae4c8408bccce4d7a798acd1032dab47f3a560b0351e467
DIST typescript-5.1.6.tgz 7147748 BLAKE2B 3bde82e40dd4852dc85418bb0bee09dbeb70361adba9e9071a18e640c7a53e6a5517e7a4b2e068364197919d1233dda30041c675132e659bac3e3ac5008d39f0 SHA512 cda582a33459e832c4580585ad50f3d47e85557cd449f4f2e4550c5ac42553c626e493fd78ee31913211385090be141feb5cfa3bf1baba0c374a0027bef9be1c
diff --git a/dev-lang/typescript/typescript-5.1.3.ebuild b/dev-lang/typescript/typescript-5.1.3.ebuild
deleted file mode 100644
index 7857fd2f036d..000000000000
--- a/dev-lang/typescript/typescript-5.1.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2021-2023 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 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
-}