diff --git a/Linux/Scripts/cmake-3.29.1_env.sh b/Linux/Scripts/cmake-3.29.1_env.sh deleted file mode 100755 index ee183bb..0000000 --- a/Linux/Scripts/cmake-3.29.1_env.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -curr_script=$(realpath "${BASH_SOURCE[0]}") -path_to_add=${devenver_root}/CMake/3.29.1/bin -echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\" - -PATH=${path_to_add}:${PATH} $@ diff --git a/Linux/Scripts/cmake_env.sh b/Linux/Scripts/cmake_env.sh deleted file mode 100755 index 29d837f..0000000 --- a/Linux/Scripts/cmake_env.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -curr_script=$(realpath "${BASH_SOURCE[0]}") -root_path=${devenver_root}/CMake -path_to_add=${root_path}/$1/bin - -if [ "$1" == "list" ]; then - ls ${root_path} -else - echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\" - PATH=${path_to_add}:${PATH} ${@:2} -fi - diff --git a/Linux/Scripts/gcc_env.sh b/Linux/Scripts/gcc_env.sh deleted file mode 100755 index dbe9c41..0000000 --- a/Linux/Scripts/gcc_env.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -base_path="$devenver_root/GCC" - -# Check for help argument -if [[ "$1" == "help" || "$1" == "" || "$1" == "--help" || "$1" == "/?" ]]; then - echo "USAGE: gcc_env.sh " - echo - echo "VERSIONS:" - ls "$base_path" - exit 0 -fi - -# Check if a version is provided -if [[ -z "$1" ]]; then - echo "Error: No version specified." - echo "USAGE: gcc_env.sh " - exit 1 -fi - -# Extract the version and remaining arguments -version="$1" -shift -remaining_args="$@" - -# Execute the command -echo "[SCRIPT] Executing $remaining_args" - -root_path="$base_path/$version" -PATH=${root_path}/bin:${root_path}/lib:${root_path}/include:${PATH} -$remaining_args diff --git a/Linux/Scripts/node_env.sh b/Linux/Scripts/node_env.sh deleted file mode 100755 index 4e51c5a..0000000 --- a/Linux/Scripts/node_env.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -root_path="$devenver_root/NodeJS" - -# Check for help argument -if [[ "$1" == "help" || "$1" == "" || "$1" == "--help" || "$1" == "/?" ]]; then - echo "USAGE: node_env.sh " - echo - echo "VERSIONS:" - ls "$root_path" - exit 0 -fi - -# Check if a version is provided -if [[ -z "$1" ]]; then - echo "Error: No version specified." - echo "USAGE: node_env.sh " - exit 1 -fi - -# Extract the version and remaining arguments -version="$1" -shift -remaining_args="$@" - -# Construct the command to execute -bin_path="$root_path/$version/bin" - -# Execute the command -echo "[SCRIPT] Executing $remaining_args" - -PATH=${bin_path}:${PATH} -$remaining_args diff --git a/app_manifest_dev.py b/app_manifest_dev.py index a31ef9b..26818c6 100644 --- a/app_manifest_dev.py +++ b/app_manifest_dev.py @@ -903,6 +903,40 @@ def get_manifest(is_windows): ], }) + version = "20.18.2" + if is_windows: + download_url = f"https://nodejs.org/dist/v{version}/node-v{version}-win-x64.7z" + download_checksum = "asd" + checksum = "asd" + add_to_devenv_script = [ ] + else: + download_url = f"https://nodejs.org/dist/v{version}/node-v{version}-linux-x64.tar.xz" + download_checksum = "4e50f727ae09bdafecf2322c72faf7cd82bf3b8851a16b8bb63974e0d8d6eceb" + checksum = "7109816761936af63cec42b03ce74ff8c0979161a3f97952984aa1be75e40233" + + result.append({ + "label": "NodeJS", + "manifests": [ + { + "download_checksum": download_checksum, + "download_url": download_url, + "version": version, + "unzip_method": 'default', + "executables": [ + { + "path": exe_path, + "symlink": symlink, + "add_to_devenv_path": False, + "checksum": checksum, + } + ], + "add_to_devenv_script": add_to_devenv_script, + } + ], + }) + + + version = "20.12.2" if is_windows: download_url = f"https://nodejs.org/dist/v{version}/node-v{version}-win-x64.7z"