diff --git a/dev-lang/deno-bin/Manifest b/dev-lang/deno-bin/Manifest index 33e688b684fb4..b86ac3f98da2a 100644 --- a/dev-lang/deno-bin/Manifest +++ b/dev-lang/deno-bin/Manifest @@ -2,7 +2,3 @@ DIST deno-bin-2.6.10-amd64.zip 47750650 BLAKE2B a7f6165dc7ae3ce754a42586860ce480 DIST deno-bin-2.6.10-arm64.zip 45787623 BLAKE2B dfa91e5a835f6eabeef9a77500626df219552370c14881d23f57e7675ee3a4a3e11c45501d37214912decabda40826ec26e16181f18101d57e2895326310e023 SHA512 4d666a4f73c528a994160cd2c81730227d258799fc6660f8f14c12259f6a242749d7036a89bb1bfbd7458960ce57547086c58d09d477e6feb7e31f503317f93d DIST deno-bin-2.7.11-amd64.zip 50430922 BLAKE2B 71da6eee7b2041ee8e1bdb8b39633dffa8be28e7a2daea65ad38be4d481bdbb38c46450413604f009622f2ec759b306421f81ce8d84dca48ed06900c504bd7ba SHA512 afce7745a7e05b178f93986d97ad2d0ff5dc6c17946bf754d54395a060fafb850fe44896bfff8bf36d5ad887534ff20ad65cfd5123afac09aba88c0849b4da1c DIST deno-bin-2.7.11-arm64.zip 48399753 BLAKE2B f9570bc4b87f75c7795408026091704f4e0c44db9b7a164b65344c8c38b0bc352175d66b9ed93bf4ab43d9017132a830158cf1737d56fe3c0def5b5208b50961 SHA512 6073d923c72732838d032dd3ac0e60072d95864c3d6962b40e0a99d575217bfc5bcdfe8df912e1e7e77db3f846bc5bf7e5d1b8de3de480331c1e269359cc15da -DIST deno-bin-2.7.8-amd64.zip 50465289 BLAKE2B 56032e713feea159077ea459f548e24bf528c3d22a7e53db60d93f7701a81cadde36ed9ed25563561dbcce5c6d85268b2f7685d36cc16083a9545042e2f57b00 SHA512 045f71fedfc7a5d65ac51dcd8ed594d8e78dfc6e869d3c95a49313c02a63c0c6e2b3ae2aa1eb31b667dea6426fe2e1d778b6d0274a0697e15ca4abfe603ee466 -DIST deno-bin-2.7.8-arm64.zip 48418933 BLAKE2B 4d6257482118f986a106ed24e782c72dfd3efd427e69c8b2b574f9b641bc05a1585133f86d24c02851e0e477a8cf814622e5a41519f4d8951dca25da87621f78 SHA512 8f94071cd70bf4bb4919066cc9fe1701d08abcd12e55f5c8a6caf78d95e54905263d0964877319b7beec52d853baddcdd14df81311f8efa846e79e7591e108fb -DIST deno-bin-2.7.9-amd64.zip 50411058 BLAKE2B 764296dde4876176bb7c43fbaf1819c77838ec62c3bbece93b8bc5e19ac32d075b62dc61dfd7d663c244b048ca280f784e02dc0912ef624368a6be5aba894180 SHA512 77718175eb13a618036afb4644477aa7c8ddcf972f5b16b1ffd826fb19a8f57a775d5b3957ceddcd9d7a44e3c9d2f007a3ca8f7d32d1cc8702f4f450768411cd -DIST deno-bin-2.7.9-arm64.zip 48373925 BLAKE2B 04e0b05b36417b87df81ee0ed52346e18bdb8f25e70c21772b7cd78032e14aab06062821bf957dc5ec1fe9aada110c7ff3cdfe636a57f12b52c15bb3766d4f72 SHA512 2f2dd76bd4f53709d6090cc042f77a3f174fb71826109169886f87550cbdcde13c595edc28eef87fa9b677a097936a967be195ec007fc821dc01a27d95102f8d diff --git a/dev-lang/deno-bin/deno-bin-2.7.8.ebuild b/dev-lang/deno-bin/deno-bin-2.7.8.ebuild deleted file mode 100644 index 075200c11178d..0000000000000 --- a/dev-lang/deno-bin/deno-bin-2.7.8.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2025-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit shell-completion toolchain-funcs - -DESCRIPTION="Modern runtime for JavaScript and TypeScript" -HOMEPAGE="https://deno.com/" -SRC_URI=" - amd64? ( - https://github.com/denoland/deno/releases/download/v${PV}/deno-x86_64-unknown-linux-gnu.zip - -> ${P}-amd64.zip - ) - arm64? ( - https://github.com/denoland/deno/releases/download/v${PV}/deno-aarch64-unknown-linux-gnu.zip - -> ${P}-arm64.zip - ) -" -S=${WORKDIR} - -LICENSE="MIT" -LICENSE+=" - Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 ISC MIT - MPL-2.0 openssl Unicode-3.0 Unicode-DFS-2016 ZLIB -" # crates -SLOT="0" -KEYWORDS="-* ~amd64 ~arm64" - -RDEPEND=" - || ( - llvm-runtimes/libgcc - sys-devel/gcc:* - ) - sys-libs/glibc -" -BDEPEND=" - app-arch/unzip -" - -QA_PREBUILT="usr/bin/deno" - -src_compile() { - if ! tc-is-cross-compiler; then - ./deno completions bash > "${T}"/deno || die - ./deno completions fish > "${T}"/deno.fish || die - ./deno completions zsh > "${T}"/_deno || die - else - ewarn "shell completion files were skipped due to cross-compilation" - fi -} - -src_install() { - dobin deno - - newenvd - 50deno <<<"DENO_NO_UPDATE_CHECK=1" - - if ! tc-is-cross-compiler; then - dobashcomp "${T}"/deno - dofishcomp "${T}"/deno.fish - dozshcomp "${T}"/_deno - fi -} diff --git a/dev-lang/deno-bin/deno-bin-2.7.9.ebuild b/dev-lang/deno-bin/deno-bin-2.7.9.ebuild deleted file mode 100644 index 075200c11178d..0000000000000 --- a/dev-lang/deno-bin/deno-bin-2.7.9.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2025-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit shell-completion toolchain-funcs - -DESCRIPTION="Modern runtime for JavaScript and TypeScript" -HOMEPAGE="https://deno.com/" -SRC_URI=" - amd64? ( - https://github.com/denoland/deno/releases/download/v${PV}/deno-x86_64-unknown-linux-gnu.zip - -> ${P}-amd64.zip - ) - arm64? ( - https://github.com/denoland/deno/releases/download/v${PV}/deno-aarch64-unknown-linux-gnu.zip - -> ${P}-arm64.zip - ) -" -S=${WORKDIR} - -LICENSE="MIT" -LICENSE+=" - Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 ISC MIT - MPL-2.0 openssl Unicode-3.0 Unicode-DFS-2016 ZLIB -" # crates -SLOT="0" -KEYWORDS="-* ~amd64 ~arm64" - -RDEPEND=" - || ( - llvm-runtimes/libgcc - sys-devel/gcc:* - ) - sys-libs/glibc -" -BDEPEND=" - app-arch/unzip -" - -QA_PREBUILT="usr/bin/deno" - -src_compile() { - if ! tc-is-cross-compiler; then - ./deno completions bash > "${T}"/deno || die - ./deno completions fish > "${T}"/deno.fish || die - ./deno completions zsh > "${T}"/_deno || die - else - ewarn "shell completion files were skipped due to cross-compilation" - fi -} - -src_install() { - dobin deno - - newenvd - 50deno <<<"DENO_NO_UPDATE_CHECK=1" - - if ! tc-is-cross-compiler; then - dobashcomp "${T}"/deno - dofishcomp "${T}"/deno.fish - dozshcomp "${T}"/_deno - fi -}