From 330794fb051617edc884207b738b1f30d7aef8ef Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 1 Dec 2015 20:10:03 +0100 Subject: [PATCH] Luacheck: point to latest rockspec So far luacheck's rockspec specified only the git protocol. Hence people behind firewalls/proxies, that block port 9814, had trouble fetching this dependency via luarocks. The latest commit updated the rockspec to use either git or https. Thus common workarounds like this are not needed anymore: git config --global url."https://".insteadOf git:// References #3769. --- third-party/cmake/BuildLuarocks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index f3e5a96220..a6126af789 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -123,7 +123,7 @@ if(USE_BUNDLED_BUSTED) add_custom_command(OUTPUT ${HOSTDEPS_BIN_DIR}/luacheck COMMAND ${LUAROCKS_BINARY} - ARGS build https://raw.githubusercontent.com/mpeterv/luacheck/0.12.0/luacheck-scm-1.rockspec ${LUAROCKS_BUILDARGS} + ARGS build https://raw.githubusercontent.com/mpeterv/luacheck/3929eaa3528be2a8a50c593d687c8625205a2033/luacheck-scm-1.rockspec ${LUAROCKS_BUILDARGS} DEPENDS busted) add_custom_target(luacheck DEPENDS ${HOSTDEPS_BIN_DIR}/luacheck)