summaryrefslogtreecommitdiff
path: root/src/compat53/module.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-06-05binary build: minor updatesHisham Muhammad2-4/+4
2025-06-05scripts: further instructionsHisham Muhammad2-2/+2
2025-06-05chore: move to luarocks/gh-actions-luarocksbzp20101-2/+2
2025-06-05fix: use specific luarocks versionbzp20101-2/+4
2025-06-03feat: allow loading json manifestbzp20107-5/+87
2025-05-19fix: avoid overwriting CMake variables from rockspecRenato Maia2-10/+0
2025-05-19feat: add build vars. for rockspecs with the dir. of its deps.Renato Maia4-6/+69
Rockspecs can access the directory of its dependencies using variables in the format 'foo_ROCKDIR' where 'foo' is the name of a dependency. This is used to be able to access files of the rock like 'conf', 'docs' and more.
2025-05-19feat: add LUA_VERSION build variable for rockspecsRenato Maia6-3/+62
2025-05-19docs: ajust case of the programming language nameRenato Maia1-7/+7
2025-05-17updates for latest Teal (#1796)Hisham Muhammad6-28/+28
2025-05-02docs: fix markdown rendering of luarocks.md (#1791)Medik1-85/+50
2025-04-14fix(cygwin): external_deps_patterns and runtime_external_deps_patterns (#1782)Luau1-1/+12
2025-04-02fs.unix: only create wrapper for lua scripts (#1738)wzy1-2/+3
2025-03-23ci(windows): change zlib download urlluau-project1-1/+1
2025-03-20feat(releases): also publish json source_digestIsa Farnik1-1/+6
2025-03-17rockspec format: improve message for handling GitHub URLRichard Beckmann1-1/+1
Co-authored-by: Caleb Maclennan <caleb@alerque.com>
2025-03-17rockspec format: indicate that scm URLs cannot start with http(s):// and ↵FractalU1-6/+6
that git:// is being treated the same as git+https:// only for GitHub URLs
2025-03-14fix(coverage): badge on READMEluau-project1-1/+1
2025-03-14fix(coverage): report must be generated and uploaded from the checkout dirluau-project1-10/+6
2025-03-14docs: fix and optimize links in the documentation Richard Beckmann17-192/+191
2025-03-10ci(unix): fix code coverage uploadluau-project1-11/+18
2025-03-10ci: do not run jobs due changes on docs or markdown filesluau-project1-0/+6
2025-03-09docs(readme): minor fixHisham Muhammad1-1/+1
2025-03-09tests: fix typo from Appveyor removalHisham Muhammad1-1/+1
2025-03-09docs(readmy): simplifyHisham Muhammad1-18/+4
2025-03-09docs: remove luacheck badgeHisham Muhammad1-1/+0
2025-03-09docs(readme): update codecov badgeHisham Muhammad1-1/+1
2025-03-09ci: enable on main branchHisham Muhammad1-36/+36
2025-03-09ci: remove AppveyorHisham Muhammad5-130/+4
2025-03-09ci(windows): add windows job to the testing workflow on GHluau-project1-0/+548
2025-03-09ci(windows): support MinGW-w64 UCRT64 on test_envluau-project1-1/+49
2025-03-09ci(windows): bypass Windows GH runner permissionsluau-project1-1/+1
2025-03-09ci(windows): bump luasocket versionluau-project1-1/+1
2025-03-09ci(windows): adjust docs on spec READMEluau-project1-0/+1
2025-03-09docs: improve installation instructions for unix (#1763)Richard Beckmann1-19/+17
* unix installation: improve lua and luarocks build instructions * unix installation: minor fixes * unix installation: minor improvement
2025-03-03docs: update rockspec_format.mdHisham Muhammad1-1/+1
2025-02-27docs(server): add an example for running a luarocks serverHEADmasterThijs Schreijer2-0/+39
2025-02-24Fix markdown tables in windows install docsTobiasz Laskowski1-40/+31
2025-02-24Add compat53 installation to GNUmakefileTobiasz Laskowski1-0/+10
2025-02-24Add lua-compat53 files in install.batTobiasz Laskowski1-0/+11
2025-02-24Add vendored lua compat53 v0.14.4Tobiasz Laskowski3-0/+1290
2025-02-24fix: allow Lua C modules to be uninstalled on MSYS2 (#1756)Luau1-1/+3
Fixes #1755. Changes: * the idea applied as a fix was mirrored from the changes of #1616, by setting ``` defaults.fs_use_modules = false ``` in a suitable place for MSYS2. * the line ``` if platforms.windows and not platforms.msys2_mingw_w64 and hardcoded.WIN_TOOLS then ``` is meant to follow a MSYS2 patch https://github.com/msys2/MINGW-packages/blob/343eeab4f185847981c6b644d775ee98717b6231/mingw-w64-lua-luarocks/0001-luarocks_msys2_mingw_w64.patch#L57 that fixes previous issues for them.
2025-02-24fix: override default C compiler to cc.exe on MSYS2 (#1754)Luau1-0/+6
## Description Fixes #1753. Changes: 1. on each MSYS2 MinGW-w64 environment, there is a `cc.exe` that points to the default C compiler for the environment. 2. the line ```lua defaults.variables.PWD = "cd" ``` is meant to follow a MSYS2 patch ( https://github.com/msys2/MINGW-packages/blob/5fd4997c2508f0949366513f0a2dd4347f9c4e77/mingw-w64-lua-luarocks/0001-luarocks_msys2_mingw_w64.patch#L48 ) that fixes previous issues for them.
2025-02-21docs: fix mingw URLHisham Muhammad1-11/+11
2025-02-21Fix make check for msys2 mingw system (#1745)tobil4sk1-1/+1
On an msys2 install of mingw, make is installed as `mingw32-make`. If `cmake` is installed, that takes priority over `mingw32-make` when matching the pattern `*make*.exe`. This patch changes the pattern to be `*-make*.exe` instead to avoid this bug.
2025-02-21Fix LUA_LIBDIR for msvc installations (#1744)tobil4sk1-1/+3
The order here was swapped in #1701 to fix mingw builds (see #1700), but this broke MSVC installations which need to link against the .lib, which defines the dll imports.
2025-02-21core.path: more thorough error checkingHisham Muhammad2-2/+20
2025-02-21docs: some copyeditingHisham Muhammad1-12/+13
2025-02-21docs: update `upload` docs as per #1733Hisham Muhammad1-3/+6
2025-02-21docs: import Wiki docs into the main repoHisham Muhammad64-0/+4828