From fb090057edb0b65d5fe8abfa878deedb5a02b9a6 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 11:46:33 +0800 Subject: [PATCH 01/12] feat: add luau --- ports/luau/cmake-config-export.patch | 114 +++++++++++++++++++++++++++ ports/luau/portfile.cmake | 39 +++++++++ ports/luau/vcpkg.json | 22 ++++++ 3 files changed, 175 insertions(+) create mode 100644 ports/luau/cmake-config-export.patch create mode 100644 ports/luau/portfile.cmake create mode 100644 ports/luau/vcpkg.json diff --git a/ports/luau/cmake-config-export.patch b/ports/luau/cmake-config-export.patch new file mode 100644 index 00000000000000..9864f5ce6c9e32 --- /dev/null +++ b/ports/luau/cmake-config-export.patch @@ -0,0 +1,114 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 51fa919e..8231c1e3 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -65,30 +65,30 @@ add_library(Luau.VM.Internals INTERFACE) + + include(Sources.cmake) + +-target_include_directories(Luau.Common INTERFACE Common/include) ++target_include_directories(Luau.Common INTERFACE $ $) + + target_compile_features(Luau.CLI.lib PUBLIC cxx_std_17) + target_link_libraries(Luau.CLI.lib PRIVATE Luau.Common) + + target_compile_features(Luau.Ast PUBLIC cxx_std_17) +-target_include_directories(Luau.Ast PUBLIC Ast/include) ++target_include_directories(Luau.Ast PUBLIC $ $) + target_link_libraries(Luau.Ast PUBLIC Luau.Common Luau.CLI.lib) + + target_compile_features(Luau.Compiler PUBLIC cxx_std_17) +-target_include_directories(Luau.Compiler PUBLIC Compiler/include) ++target_include_directories(Luau.Compiler PUBLIC $ $) + target_link_libraries(Luau.Compiler PUBLIC Luau.Ast) + + target_compile_features(Luau.Config PUBLIC cxx_std_17) +-target_include_directories(Luau.Config PUBLIC Config/include) ++target_include_directories(Luau.Config PUBLIC $ $) + target_link_libraries(Luau.Config PUBLIC Luau.Ast) + + target_compile_features(Luau.Analysis PUBLIC cxx_std_17) +-target_include_directories(Luau.Analysis PUBLIC Analysis/include) ++target_include_directories(Luau.Analysis PUBLIC $ $) + target_link_libraries(Luau.Analysis PUBLIC Luau.Ast Luau.EqSat Luau.Config) + target_link_libraries(Luau.Analysis PRIVATE Luau.Compiler Luau.VM) + + target_compile_features(Luau.EqSat PUBLIC cxx_std_17) +-target_include_directories(Luau.EqSat PUBLIC EqSat/include) ++target_include_directories(Luau.EqSat PUBLIC $ $) + target_link_libraries(Luau.EqSat PUBLIC Luau.Common) + + target_compile_features(Luau.CodeGen PRIVATE cxx_std_17) +@@ -97,7 +97,7 @@ target_link_libraries(Luau.CodeGen PRIVATE Luau.VM Luau.VM.Internals) # Code gen + target_link_libraries(Luau.CodeGen PUBLIC Luau.Common) + + target_compile_features(Luau.VM PRIVATE cxx_std_11) +-target_include_directories(Luau.VM PUBLIC VM/include) ++target_include_directories(Luau.VM PUBLIC $ $) + target_link_libraries(Luau.VM PUBLIC Luau.Common) + + target_include_directories(isocline PUBLIC extern/isocline/include) +@@ -287,3 +287,54 @@ foreach(LIB Luau.Ast Luau.Compiler Luau.Config Luau.Analysis Luau.EqSat Luau.Cod + endif() + endif() + endforeach() ++ ++# luau package ++include(GNUInstallDirs) ++include(CMakePackageConfigHelpers) ++ ++write_basic_package_version_file( ++ ${CMAKE_CURRENT_BINARY_DIR}/luau-config-version.cmake ++ VERSION "${VERSION}" ++ COMPATIBILITY AnyNewerVersion ++) ++ ++install(FILES ++ ${CMAKE_CURRENT_BINARY_DIR}/luau-config-version.cmake ++ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/luau-config.cmake ++ DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/luau ++) ++ ++install( ++ TARGETS Luau.Common Luau.Ast Luau.Compiler Luau.Config Luau.Analysis Luau.VM Luau.CLI.lib Luau.EqSat ++ EXPORT luau-targets ++ RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" ++ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" ++ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" ++) ++ ++if (LUAU_BUILD_CLI) ++ install( ++ TARGETS Luau.Repl.CLI ++ EXPORT luau-targets ++ RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" ++ ) ++endif() ++ ++install( ++ DIRECTORY "${CMAKE_SOURCE_DIR}/Common/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/Ast/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/Compiler/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/Config/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/Analysis/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/VM/include/" ++ DIRECTORY "${CMAKE_SOURCE_DIR}/VM/src/" ++ DESTINATION "include/luau" ++ FILES_MATCHING ++ PATTERN "*.h" ++) ++ ++install( ++ EXPORT luau-targets ++ NAMESPACE luau:: ++ DESTINATION "${CMAKE_INSTALL_DATADIR}/luau" ++) +\ No newline at end of file +diff --git a/cmake/luau-config.cmake b/cmake/luau-config.cmake +new file mode 100644 +index 00000000..fd681158 +--- /dev/null ++++ b/cmake/luau-config.cmake +@@ -0,0 +1 @@ ++include(${CMAKE_CURRENT_LIST_DIR}/luau-targets.cmake) +\ No newline at end of file diff --git a/ports/luau/portfile.cmake b/ports/luau/portfile.cmake new file mode 100644 index 00000000000000..b01a1babd296c2 --- /dev/null +++ b/ports/luau/portfile.cmake @@ -0,0 +1,39 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO luau-lang/luau + REF ${VERSION} + SHA512 a3be52f7958d364693c0bc2541b08082852917b53a80cc4fbdde3167c9068b269f8476882592eafac4c4d674ed6d51ba25a52eaa3b2b6d4dce4603f6aad73f6b + HEAD_REF master + PATCHES + cmake-config-export.patch +) + +vcpkg_check_features( + OUT_FEATURE_OPTIONS FEATURE_OPTIONS + FEATURES + tool LUAU_BUILD_CLI +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DVERSION=${VERSION} + ${FEATURE_OPTIONS} + OPTIONS_DEBUG + -DLUAU_BUILD_CLI=OFF +) + +vcpkg_cmake_install() + +vcpkg_cmake_config_fixup(PACKAGE_NAME "luau") + +if("tool" IN_LIST FEATURES) + vcpkg_copy_tools(TOOL_NAMES luau AUTO_CLEAN) +endif() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt") \ No newline at end of file diff --git a/ports/luau/vcpkg.json b/ports/luau/vcpkg.json new file mode 100644 index 00000000000000..3fe644202bee7e --- /dev/null +++ b/ports/luau/vcpkg.json @@ -0,0 +1,22 @@ +{ + "name": "luau", + "version": "0.651", + "homepage": "https://github.com/luau-lang/luau", + "description": "A fast, small, safe, gradually typed embeddable scripting language derived from Lua", + "license": "MIT", + "dependencies": [ + { + "name" : "vcpkg-cmake", + "host" : true + }, + { + "name" : "vcpkg-cmake-config", + "host" : true + } + ], + "features": { + "tool": { + "description": "Builds luau executable" + } + } + } \ No newline at end of file From fcd97893edd58f2dd4050fa91bcf635958ae8d44 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 11:51:53 +0800 Subject: [PATCH 02/12] feat: add port version and base line --- versions/baseline.json | 4 ++++ versions/l-/luau.json | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 versions/l-/luau.json diff --git a/versions/baseline.json b/versions/baseline.json index de0168fbfb087b..b41cbdc0472c48 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -5652,6 +5652,10 @@ "baseline": "3.1.0", "port-version": 1 }, + "luau": { + "baseline": "0.651", + "port-version": 0 + }, "luminoengine": { "baseline": "0.10.1", "port-version": 1 diff --git a/versions/l-/luau.json b/versions/l-/luau.json new file mode 100644 index 00000000000000..d937ae861184bc --- /dev/null +++ b/versions/l-/luau.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "version": "0.651", + "port-version": 0, + "git-tree": "e8a14d5b095aedfe2071a9ffd3f0a90b90ff2627" + } + ] +} \ No newline at end of file From 75f852a6b026a36d313b59545c196f5d18034d73 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 11:57:19 +0800 Subject: [PATCH 03/12] chore: update vcpkg.json format --- ports/luau/vcpkg.json | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/ports/luau/vcpkg.json b/ports/luau/vcpkg.json index 3fe644202bee7e..b090db08b8e436 100644 --- a/ports/luau/vcpkg.json +++ b/ports/luau/vcpkg.json @@ -1,22 +1,22 @@ { - "name": "luau", - "version": "0.651", - "homepage": "https://github.com/luau-lang/luau", - "description": "A fast, small, safe, gradually typed embeddable scripting language derived from Lua", - "license": "MIT", - "dependencies": [ - { - "name" : "vcpkg-cmake", - "host" : true - }, - { - "name" : "vcpkg-cmake-config", - "host" : true - } - ], - "features": { - "tool": { - "description": "Builds luau executable" - } - } - } \ No newline at end of file + "name": "luau", + "version": "0.651", + "description": "A fast, small, safe, gradually typed embeddable scripting language derived from Lua", + "homepage": "https://github.com/luau-lang/luau", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "tool": { + "description": "Builds luau executable" + } + } +} From dfd5a2e173d76a21a3286a96cd7565c14f950cdd Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 11:57:47 +0800 Subject: [PATCH 04/12] chore: update database --- versions/l-/luau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/l-/luau.json b/versions/l-/luau.json index d937ae861184bc..be120e2494ab61 100644 --- a/versions/l-/luau.json +++ b/versions/l-/luau.json @@ -3,7 +3,7 @@ { "version": "0.651", "port-version": 0, - "git-tree": "e8a14d5b095aedfe2071a9ffd3f0a90b90ff2627" + "git-tree": "d2659a9d95140fe63073a421d3d4b0f9e90b0628" } ] } \ No newline at end of file From 358266ae22e1d14ddc231b5b8ebf85b7c4531a12 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 14:40:58 +0800 Subject: [PATCH 05/12] fix: remove absolute paths --- ports/luau/cmake-config-export.patch | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/ports/luau/cmake-config-export.patch b/ports/luau/cmake-config-export.patch index 9864f5ce6c9e32..269812fa99b098 100644 --- a/ports/luau/cmake-config-export.patch +++ b/ports/luau/cmake-config-export.patch @@ -1,5 +1,5 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index 51fa919e..8231c1e3 100644 +index 51fa919e..d25cca2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,30 +65,30 @@ add_library(Luau.VM.Internals INTERFACE) @@ -48,7 +48,30 @@ index 51fa919e..8231c1e3 100644 target_link_libraries(Luau.VM PUBLIC Luau.Common) target_include_directories(isocline PUBLIC extern/isocline/include) -@@ -287,3 +287,54 @@ foreach(LIB Luau.Ast Luau.Compiler Luau.Config Luau.Analysis Luau.EqSat Luau.Cod +@@ -182,22 +182,6 @@ if(MSVC AND LUAU_BUILD_CLI) + set_target_properties(Luau.Repl.CLI PROPERTIES LINK_FLAGS_DEBUG /STACK:2097152) + endif() + +-# embed .natvis inside the library debug information +-if(MSVC) +- target_link_options(Luau.Ast INTERFACE /NATVIS:${CMAKE_CURRENT_SOURCE_DIR}/tools/natvis/Ast.natvis) +- target_link_options(Luau.Analysis INTERFACE /NATVIS:${CMAKE_CURRENT_SOURCE_DIR}/tools/natvis/Analysis.natvis) +- target_link_options(Luau.CodeGen INTERFACE /NATVIS:${CMAKE_CURRENT_SOURCE_DIR}/tools/natvis/CodeGen.natvis) +- target_link_options(Luau.VM INTERFACE /NATVIS:${CMAKE_CURRENT_SOURCE_DIR}/tools/natvis/VM.natvis) +-endif() +- +-# make .natvis visible inside the solution +-if(MSVC_IDE) +- target_sources(Luau.Ast PRIVATE tools/natvis/Ast.natvis) +- target_sources(Luau.Analysis PRIVATE tools/natvis/Analysis.natvis) +- target_sources(Luau.CodeGen PRIVATE tools/natvis/CodeGen.natvis) +- target_sources(Luau.VM PRIVATE tools/natvis/VM.natvis) +-endif() +- + # On Windows and Android threads are provided, on Linux/Mac/iOS we use pthreads + add_library(osthreads INTERFACE) + if(CMAKE_SYSTEM_NAME MATCHES "Linux|Darwin|iOS") +@@ -287,3 +271,54 @@ foreach(LIB Luau.Ast Luau.Compiler Luau.Config Luau.Analysis Luau.EqSat Luau.Cod endif() endif() endforeach() From b4d5cc7cc50d57f2e5dd239809adb5c4018e8be6 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 14:41:31 +0800 Subject: [PATCH 06/12] chore: update version database --- versions/l-/luau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/l-/luau.json b/versions/l-/luau.json index be120e2494ab61..982b675585587a 100644 --- a/versions/l-/luau.json +++ b/versions/l-/luau.json @@ -3,7 +3,7 @@ { "version": "0.651", "port-version": 0, - "git-tree": "d2659a9d95140fe63073a421d3d4b0f9e90b0628" + "git-tree": "ea1bcb7db02b46fd51b187ba76532c766f23e9cb" } ] } \ No newline at end of file From 5549107fe3fbf06466007a34b5346385968382ea Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 15:54:19 +0800 Subject: [PATCH 07/12] fix: make luau with namesapce unofficial --- ports/luau/cmake-config-export.patch | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ports/luau/cmake-config-export.patch b/ports/luau/cmake-config-export.patch index 269812fa99b098..403fbbde318651 100644 --- a/ports/luau/cmake-config-export.patch +++ b/ports/luau/cmake-config-export.patch @@ -1,5 +1,5 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index 51fa919e..d25cca2d 100644 +index 51fa919e..9cf8754a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,30 +65,30 @@ add_library(Luau.VM.Internals INTERFACE) @@ -81,20 +81,20 @@ index 51fa919e..d25cca2d 100644 +include(CMakePackageConfigHelpers) + +write_basic_package_version_file( -+ ${CMAKE_CURRENT_BINARY_DIR}/luau-config-version.cmake ++ ${CMAKE_CURRENT_BINARY_DIR}/unofficial-luau-config-version.cmake + VERSION "${VERSION}" + COMPATIBILITY AnyNewerVersion +) + +install(FILES -+ ${CMAKE_CURRENT_BINARY_DIR}/luau-config-version.cmake -+ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/luau-config.cmake -+ DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/luau ++ ${CMAKE_CURRENT_BINARY_DIR}/unofficial-luau-config-version.cmake ++ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/unofficial-luau-config.cmake ++ DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/unofficial-luau +) + +install( + TARGETS Luau.Common Luau.Ast Luau.Compiler Luau.Config Luau.Analysis Luau.VM Luau.CLI.lib Luau.EqSat -+ EXPORT luau-targets ++ EXPORT unofficial-luau-targets + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" + ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" @@ -103,7 +103,7 @@ index 51fa919e..d25cca2d 100644 +if (LUAU_BUILD_CLI) + install( + TARGETS Luau.Repl.CLI -+ EXPORT luau-targets ++ EXPORT unofficial-luau-targets + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" + ) +endif() @@ -122,16 +122,16 @@ index 51fa919e..d25cca2d 100644 +) + +install( -+ EXPORT luau-targets -+ NAMESPACE luau:: -+ DESTINATION "${CMAKE_INSTALL_DATADIR}/luau" ++ EXPORT unofficial-luau-targets ++ NAMESPACE unofficial-luau:: ++ DESTINATION "${CMAKE_INSTALL_DATADIR}/unofficial-luau" +) \ No newline at end of file -diff --git a/cmake/luau-config.cmake b/cmake/luau-config.cmake +diff --git a/cmake/unofficial-luau-config.cmake b/cmake/unofficial-luau-config.cmake new file mode 100644 -index 00000000..fd681158 +index 00000000..2680ef31 --- /dev/null -+++ b/cmake/luau-config.cmake ++++ b/cmake/unofficial-luau-config.cmake @@ -0,0 +1 @@ -+include(${CMAKE_CURRENT_LIST_DIR}/luau-targets.cmake) ++include(${CMAKE_CURRENT_LIST_DIR}/unofficial-luau-targets.cmake) \ No newline at end of file From 7410cfe708bce0b2d67a3bc256ed928dad0b1cc7 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 15:55:07 +0800 Subject: [PATCH 08/12] chore: update version database --- versions/l-/luau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/l-/luau.json b/versions/l-/luau.json index 982b675585587a..591586febcb6c4 100644 --- a/versions/l-/luau.json +++ b/versions/l-/luau.json @@ -3,7 +3,7 @@ { "version": "0.651", "port-version": 0, - "git-tree": "ea1bcb7db02b46fd51b187ba76532c766f23e9cb" + "git-tree": "a23f8560e6018c863faca47bcdaef7511609a466" } ] } \ No newline at end of file From e2ce0bb1f97709d18f638ad5b5560e6dfe825fa6 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 15:58:00 +0800 Subject: [PATCH 09/12] fix: make config_fixup with package name unofficial-luau --- ports/luau/portfile.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/luau/portfile.cmake b/ports/luau/portfile.cmake index b01a1babd296c2..2d730827bbacbd 100644 --- a/ports/luau/portfile.cmake +++ b/ports/luau/portfile.cmake @@ -27,7 +27,7 @@ vcpkg_cmake_configure( vcpkg_cmake_install() -vcpkg_cmake_config_fixup(PACKAGE_NAME "luau") +vcpkg_cmake_config_fixup(PACKAGE_NAME "unofficial-luau") if("tool" IN_LIST FEATURES) vcpkg_copy_tools(TOOL_NAMES luau AUTO_CLEAN) From c866fc653ebb9381699e3688a7d7083663a9234f Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 15:58:23 +0800 Subject: [PATCH 10/12] chore: update version database --- versions/l-/luau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/l-/luau.json b/versions/l-/luau.json index 591586febcb6c4..c22a81d8ceb089 100644 --- a/versions/l-/luau.json +++ b/versions/l-/luau.json @@ -3,7 +3,7 @@ { "version": "0.651", "port-version": 0, - "git-tree": "a23f8560e6018c863faca47bcdaef7511609a466" + "git-tree": "e5b08b966d05df7229b83ff5f46fb3d4f1ed34b1" } ] } \ No newline at end of file From cd34c7b04c67855035b53c99ebf9574ed9be0c04 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 16:14:04 +0800 Subject: [PATCH 11/12] chore: make namespace unofficial::luau --- ports/luau/cmake-config-export.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/luau/cmake-config-export.patch b/ports/luau/cmake-config-export.patch index 403fbbde318651..eb59a870212dd2 100644 --- a/ports/luau/cmake-config-export.patch +++ b/ports/luau/cmake-config-export.patch @@ -1,5 +1,5 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index 51fa919e..9cf8754a 100644 +index 51fa919e..9854f32c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,30 +65,30 @@ add_library(Luau.VM.Internals INTERFACE) @@ -123,7 +123,7 @@ index 51fa919e..9cf8754a 100644 + +install( + EXPORT unofficial-luau-targets -+ NAMESPACE unofficial-luau:: ++ NAMESPACE unofficial::luau:: + DESTINATION "${CMAKE_INSTALL_DATADIR}/unofficial-luau" +) \ No newline at end of file From d36c156a77e5b9b6c8bad7197890f89a8a08a408 Mon Sep 17 00:00:00 2001 From: songruining Date: Mon, 11 Nov 2024 16:14:44 +0800 Subject: [PATCH 12/12] chore: update version database --- versions/l-/luau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/l-/luau.json b/versions/l-/luau.json index c22a81d8ceb089..cf06853b4d883c 100644 --- a/versions/l-/luau.json +++ b/versions/l-/luau.json @@ -3,7 +3,7 @@ { "version": "0.651", "port-version": 0, - "git-tree": "e5b08b966d05df7229b83ff5f46fb3d4f1ed34b1" + "git-tree": "b24888fd538d5e53526c0a7b6f37646f9aec0556" } ] } \ No newline at end of file