diff --git a/packages/deno/1.32.3/build.sh b/packages/deno/1.32.3/build.sh deleted file mode 100644 index 8cda9bc..0000000 --- a/packages/deno/1.32.3/build.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -curl -OL https://github.com/denoland/deno/releases/download/v1.32.3/deno-x86_64-unknown-linux-gnu.zip -unzip -o deno-x86_64-unknown-linux-gnu.zip -rm deno-x86_64-unknown-linux-gnu.zip \ No newline at end of file diff --git a/packages/deno/1.32.3/environment b/packages/deno/1.32.3/environment deleted file mode 100644 index 0d5a1f7..0000000 --- a/packages/deno/1.32.3/environment +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -export PATH=$PWD:$PATH \ No newline at end of file diff --git a/packages/deno/1.32.3/metadata.json b/packages/deno/1.32.3/metadata.json deleted file mode 100644 index 2dc0a7c..0000000 --- a/packages/deno/1.32.3/metadata.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "language": "deno", - "version": "1.32.3", - "dependencies": {}, - "provides": [ - { - "language": "typescript", - "aliases": [ - "deno", - "deno-ts" - ] - }, - { - "language": "javascript", - "aliases": [ - "deno-js" - ] - } - ] -} \ No newline at end of file diff --git a/packages/deno/1.32.3/run b/packages/deno/1.32.3/run deleted file mode 100644 index 5c9cfb6..0000000 --- a/packages/deno/1.32.3/run +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -DENO_DIR=$PWD NO_COLOR=true deno run $@ \ No newline at end of file diff --git a/packages/deno/1.32.3/test.deno.ts b/packages/deno/1.32.3/test.deno.ts deleted file mode 100644 index 56ed4a0..0000000 --- a/packages/deno/1.32.3/test.deno.ts +++ /dev/null @@ -1 +0,0 @@ -console.log("OK") \ No newline at end of file diff --git a/packages/rust/1.68.2/build.sh b/packages/rust/1.68.2/build.sh deleted file mode 100644 index bfd853f..0000000 --- a/packages/rust/1.68.2/build.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -curl -OL "https://static.rust-lang.org/dist/rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz" -tar xzvf rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz -rm rust-1.68.2-x86_64-unknown-linux-gnu.tar.gz \ No newline at end of file diff --git a/packages/rust/1.68.2/compile b/packages/rust/1.68.2/compile deleted file mode 100644 index c4b591a..0000000 --- a/packages/rust/1.68.2/compile +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -# https://stackoverflow.com/questions/38041331/rust-compiler-cant-find-crate-for-std -# Rust compiler needs to find the stdlib to link against -rustc -o binary -L ${RUST_INSTALL_LOC}/rustc/lib -L ${RUST_INSTALL_LOC}/rust-std-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib "$@" -chmod +x binary \ No newline at end of file diff --git a/packages/rust/1.68.2/environment b/packages/rust/1.68.2/environment deleted file mode 100644 index 77e21a4..0000000 --- a/packages/rust/1.68.2/environment +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -# Put 'export' statements here for environment variables -export PATH=$PWD/rust-1.68.2-x86_64-unknown-linux-gnu/rustc/bin/:$PATH -export RUST_INSTALL_LOC=$PWD/rust-1.68.2-x86_64-unknown-linux-gnu \ No newline at end of file diff --git a/packages/rust/1.68.2/metadata.json b/packages/rust/1.68.2/metadata.json deleted file mode 100644 index e0cdb7c..0000000 --- a/packages/rust/1.68.2/metadata.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "language": "rust", - "version": "1.68.2", - "aliases": [ - "rs" - ] -} \ No newline at end of file diff --git a/packages/rust/1.68.2/run b/packages/rust/1.68.2/run deleted file mode 100644 index bb85070..0000000 --- a/packages/rust/1.68.2/run +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -shift -./binary "$@" \ No newline at end of file diff --git a/packages/rust/1.68.2/test.rs b/packages/rust/1.68.2/test.rs deleted file mode 100644 index f5524c7..0000000 --- a/packages/rust/1.68.2/test.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("OK"); -} \ No newline at end of file diff --git a/packages/typescript/5.0.3/build.sh b/packages/typescript/5.0.3/build.sh deleted file mode 100644 index c753c69..0000000 --- a/packages/typescript/5.0.3/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -source ../../node/18.15.0/build.sh - -source ./environment - -bin/npm install -g typescript@5.0.3 \ No newline at end of file diff --git a/packages/typescript/5.0.3/compile b/packages/typescript/5.0.3/compile deleted file mode 100644 index d674bb0..0000000 --- a/packages/typescript/5.0.3/compile +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -# Put instructions to compile source code, remove this file if the language does not require this stage - -rename 's/$/\.ts/' "$@" # Add .ts extension - -tsc *.ts \ No newline at end of file diff --git a/packages/typescript/5.0.3/environment b/packages/typescript/5.0.3/environment deleted file mode 100644 index c6ab089..0000000 --- a/packages/typescript/5.0.3/environment +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -# Put 'export' statements here for environment variables -export PATH=$PWD/bin:$PATH \ No newline at end of file diff --git a/packages/typescript/5.0.3/metadata.json b/packages/typescript/5.0.3/metadata.json deleted file mode 100644 index 0a57acf..0000000 --- a/packages/typescript/5.0.3/metadata.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "language": "typescript", - "version": "5.0.3", - "aliases": ["ts", "node-ts", "tsc", "typescript5", "ts5"] -} \ No newline at end of file diff --git a/packages/typescript/5.0.3/run b/packages/typescript/5.0.3/run deleted file mode 100644 index 4ce91c5..0000000 --- a/packages/typescript/5.0.3/run +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -# Put instructions to run the runtime - -CODE=$1.js -shift - -node $CODE "$@" \ No newline at end of file diff --git a/packages/typescript/5.0.3/test.ts b/packages/typescript/5.0.3/test.ts deleted file mode 100644 index c963843..0000000 --- a/packages/typescript/5.0.3/test.ts +++ /dev/null @@ -1 +0,0 @@ -console.log('OK'); \ No newline at end of file