aboutsummaryrefslogtreecommitdiff
path: root/luarocks-dev-1.rockspec (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improve flexibility around vendored librariesmaintobil4sk5 days1-0/+5
| | | | | | | | | | | | | | | | | | | | | compat53 is vendored since #1757 as it is required to run luarocks with lua 5.1 or 5.2. However, this introduced some issues as the GNUmakefile install rule places these in the same place where `luarocks install compat53` would install them. This means you get conflicts if you install the actual package: ``` Warning: /.../prefix/share/lua/5.1/compat53/init.lua is not tracked by this installation of LuaRocks. Moving it to /.../prefix/share/lua/5.1/compat53/init.lua~ Warning: /.../prefix/share/lua/5.1/compat53/module.lua is not tracked by this installation of LuaRocks. Moving it to /.../prefix/share/lua/5.1/compat53/module.lua~ Warning: /.../prefix/share/lua/5.1/compat53/file_mt.lua is not tracked by this installation of LuaRocks. Moving it to /.../prefix/share/lua/5.1/compat53/file_mt.lua~ ``` It is also not ideal for linux package maintainers to include a vendored package, see: https://github.com/luarocks/luarocks/pull/1757#issuecomment-3409873412. To solve these issues, this patchset makes the following changes: - GNUmakefile now places the compat53 files under `luarocks/vendor/compat53` (which is added internally to the luarocks script's `package.path`). This way a user's installation of compat53 does not interfere at all with luarocks one. - Added `--with-system-compat53` option to configure script for external packaging systems. - Fixed install.bat's logic for deciding whether to vendor compat53, as the current script includes it for every version. install.bat already places luarocks sources outside of LUAPATH, so that part can stay as is. I've also inverted the version check to avoid the need for future patches like: #1850.
* rockspec: fix version numberHisham Muhammad2026-01-151-1/+1
|
* Merge branch '3.13.0'Hisham Muhammad2025-12-281-0/+37
|
* Release 3.12.1Hisham Muhammad2025-06-171-37/+0
|
* drop cfg.lua_interpreter, use cfg.variables.LUAHisham Muhammad2024-02-181-2/+2
|
* rockspec: pass lua_dir and lua_interpreter to busted.Hisham Muhammad2022-06-061-3/+3
|
* use busted-htestHisham Muhammad2020-04-211-0/+1
|
* Add rockspecHisham Muhammad2019-05-061-0/+36
|
* Release 3.1.0v3.1.0Hisham Muhammad2019-04-261-36/+0
|
* Add rockspecHisham Muhammad2019-04-011-0/+36
|
* Release 3.0.4v3.0.4Hisham Muhammad2018-10-301-36/+0
|
* Unix: new build systemHisham Muhammad2018-07-011-0/+36
* Reworked configure script * Now passes shellcheck * New Makefile for Unix * Simplified `make` and `make install` targets * Simplified `make bootstrap` target * New targets `make binary` and `make install-binary` build and install an all-in-one binary of LuaRocks