aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/BuildLuarocks.cmake
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-06-29 22:25:00 +0200
committerGitHub <noreply@github.com>2019-06-29 22:25:00 +0200
commit52fced6090aaf9c633e613e5fd46f0793705f22c (patch)
treef28618454530f922d399385d85da5e32de723c4a /third-party/cmake/BuildLuarocks.cmake
parent9875372607cb5afd21780b3917b0ed6899098e7c (diff)
downloadrneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.tar.gz
rneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.tar.bz2
rneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.zip
build: update some test dependencies (#10339)
* build: update some test dependencies * luacheck ignores * BuildLua: add ${BUSTED} to depends for ${BUSTED_LUA} This is required to rebuild it when busted gets updated.
Diffstat (limited to 'third-party/cmake/BuildLuarocks.cmake')
-rw-r--r--third-party/cmake/BuildLuarocks.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake
index 2ae0e84ecd..f6caa8bad5 100644
--- a/third-party/cmake/BuildLuarocks.cmake
+++ b/third-party/cmake/BuildLuarocks.cmake
@@ -111,7 +111,7 @@ endif()
# DEPENDS on the previous module, because Luarocks breaks if parallel.
add_custom_command(OUTPUT ${HOSTDEPS_LIB_DIR}/luarocks/rocks/mpack
COMMAND ${LUAROCKS_BINARY}
- ARGS build mpack 1.0.7-0 ${LUAROCKS_BUILDARGS}
+ ARGS build mpack 1.0.8-0 ${LUAROCKS_BUILDARGS}
DEPENDS luarocks)
add_custom_target(mpack
DEPENDS ${HOSTDEPS_LIB_DIR}/luarocks/rocks/mpack)
@@ -120,7 +120,7 @@ list(APPEND THIRD_PARTY_DEPS mpack)
# DEPENDS on the previous module, because Luarocks breaks if parallel.
add_custom_command(OUTPUT ${HOSTDEPS_LIB_DIR}/luarocks/rocks/lpeg
COMMAND ${LUAROCKS_BINARY}
- ARGS build lpeg 1.0.1-1 ${LUAROCKS_BUILDARGS}
+ ARGS build lpeg 1.0.2-1 ${LUAROCKS_BUILDARGS}
DEPENDS mpack)
add_custom_target(lpeg
DEPENDS ${HOSTDEPS_LIB_DIR}/luarocks/rocks/lpeg)
@@ -174,7 +174,7 @@ if(USE_BUNDLED_BUSTED)
# DEPENDS on the previous module, because Luarocks breaks if parallel.
add_custom_command(OUTPUT ${BUSTED_EXE}
COMMAND ${LUAROCKS_BINARY}
- ARGS build busted 2.0.rc12-1 ${LUAROCKS_BUILDARGS}
+ ARGS build busted 2.0.rc13-0 ${LUAROCKS_BUILDARGS}
DEPENDS penlight)
add_custom_target(busted
DEPENDS ${BUSTED_EXE})
@@ -182,7 +182,7 @@ if(USE_BUNDLED_BUSTED)
# DEPENDS on the previous module, because Luarocks breaks if parallel.
add_custom_command(OUTPUT ${LUACHECK_EXE}
COMMAND ${LUAROCKS_BINARY}
- ARGS build luacheck 0.21.2-1 ${LUAROCKS_BUILDARGS}
+ ARGS build luacheck 0.23.0-1 ${LUAROCKS_BUILDARGS}
DEPENDS busted)
add_custom_target(luacheck
DEPENDS ${LUACHECK_EXE})