From 8361bd10276cc422636c4e3e6ad0b292654f497d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alan=20Dragomirecky=CC=81?= Date: Fri, 9 Jul 2021 23:49:16 +0200 Subject: [PATCH] Replace urls for gcc-avr with dummy (but working) ones --- utils/bootstrap.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/utils/bootstrap.py b/utils/bootstrap.py index f09cdf1..e01994a 100755 --- a/utils/bootstrap.py +++ b/utils/bootstrap.py @@ -45,11 +45,13 @@ dependencies = { }, }, 'gcc-avr': { - 'version': '5.4.0', + # dummy placeholder (currently downloading cmake just for the sake of a valid url/zip archive) + # ... we truly need the binaries! :) + 'version': '0.0.0', 'url': { - 'Linux': 'https://xxxarmkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2', - 'Windows': 'https://xxxarmkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-win32.zip', - 'Darwin': 'https://xxxarmkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-mac.tar.bz2', + 'Linux': 'https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5-Linux-x86_64.tar.gz', + 'Windows': 'https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5-win64-x64.zip', + 'Darwin': 'https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5-Darwin-x86_64.tar.gz', } }, 'clang-format': {