Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | path, loader: handle coexisting foo.bar and foo.bar.init modules | Hisham Muhammad | 2018-07-01 | 2 | -17/+24 | |
| | | | | | | | | LuaRocks used to conflate in its manifest two modules whose names only differed by ".init" (e.g. "foo.bar" and "foo.bar.init"). With this change, `path.path_to_modules` treats them as distinct modules, and `luarocks.loader` handles them correctly (given `require("foo.bar")`, it looks for `foo.bar` first and then `foo.bar.init` next). | |||||
* | write_rockspec: cleanup all rockspec internal fields | Hisham Muhammad | 2018-07-01 | 1 | -0/+10 | |
| | ||||||
* | wrapper scripts: honor deps_mode when wrapping scripts | Hisham Muhammad | 2018-07-01 | 6 | -16/+36 | |
| | ||||||
* | build, write_rockspec: autodetect scripts to install as well | Hisham Muhammad | 2018-07-01 | 2 | -7/+20 | |
| | ||||||
* | Let LuaRocks find LUA_LIBDIR and LUA_INCDIR by itself | Hisham Muhammad | 2018-07-01 | 5 | -45/+44 | |
| | ||||||
* | mingw32: do not link Lua statically | Hisham Muhammad | 2018-07-01 | 2 | -0/+17 | |
| | ||||||
* | Windows: disable fs modules for now | Hisham Muhammad | 2018-07-01 | 1 | -0/+1 | |
| | ||||||
* | fs: do not cache cfg.variables | Hisham Muhammad | 2018-07-01 | 3 | -25/+21 | |
| | | | | | | | Avoid relying on the order that cfg and fs are required. This is not strictly required in regular operation, but it allows us to mock cfg and use fs. | |||||
* | build: resolve LUALIB at runtime | Hisham Muhammad | 2018-07-01 | 3 | -138/+178 | |
| | | | | | | Move logic from install.bat for resolving LUALIB (the name of the Lua library) reusing the standard LuaRocks functionality for finding external dependency libraries. | |||||
* | Windows: support hardcoded.WIN_TOOLS for tool paths | Hisham Muhammad | 2018-07-01 | 1 | -0/+8 | |
| | ||||||
* | cfg: add / to external_deps_dirs, because some Linux libraries still live in ↵ | Hisham Muhammad | 2018-07-01 | 1 | -1/+1 | |
| | | | | /lib | |||||
* | config: Lua 5.1/5.2 compatibility fix | Hisham Muhammad | 2018-07-01 | 1 | -1/+3 | |
| | ||||||
* | fs: add LuaPosix-version of set_permissions | Hisham Muhammad | 2018-07-01 | 3 | -51/+92 | |
| | | | | | | | | This implemention the ugly side-effect of "exposing" some Unix-specific utility functions to the public API, so they can be shared by `luarocks.fs.lua` and `luarocks.fs.unix.tools`. I named those functions `_unix_*` (with a Python-style `_` at the beginning) to clarify that they should not be used publicly. | |||||
* | fs.lua: add a LuaPosix-independent version of make_temp_dir | Hisham Muhammad | 2018-07-01 | 1 | -0/+18 | |
| | | | | This version can run on Windows using lfs alone. | |||||
* | manif: fix loading rock manifest from the correct repo | Hisham Muhammad | 2018-07-01 | 1 | -1/+1 | |
| | | | | | get_providing_file was always loading the rock_manifest from the default repo. | |||||
* | fs: math.randomseed only once | Hisham Muhammad | 2018-07-01 | 3 | -4/+2 | |
| | ||||||
* | show: add --porcelain and --rock-license options | Hisham Muhammad | 2018-07-01 | 2 | -74/+130 | |
| | ||||||
* | command: auto-export some standard variables | Hisham Muhammad | 2018-07-01 | 1 | -3/+10 | |
| | ||||||
* | fs: add execute_env: execute with environment variables | Hisham Muhammad | 2018-07-01 | 1 | -0/+9 | |
| | ||||||
* | config: be more resilient when reading config files | Hisham Muhammad | 2018-07-01 | 1 | -2/+1 | |
| | ||||||
* | fs: nicer error message when cfg is not initialized | Hisham Muhammad | 2018-07-01 | 1 | -0/+4 | |
| | ||||||
* | cmd, cfg: read project-dir configuration | Hisham Muhammad | 2018-07-01 | 3 | -9/+40 | |
| | ||||||
* | cmd, Tests: ensure versioned directory is tried first | Hisham Muhammad | 2018-07-01 | 1 | -1/+1 | |
| | ||||||
* | cmd: ensure that found Lua matches version requested with --lua-version | Hisham Muhammad | 2018-07-01 | 1 | -24/+26 | |
| | ||||||
* | Tests: ensure that tests do not accidentally find a project dir | Hisham Muhammad | 2018-07-01 | 1 | -0/+2 | |
| | ||||||
* | builtin: only add Lua libdir when linking liblua | Hisham Muhammad | 2018-07-01 | 1 | -2/+3 | |
| | ||||||
* | cfg, cmd: major reorganization | Hisham Muhammad | 2018-07-01 | 7 | -785/+963 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `--lua-dir` flag, specifying a prefix for the Lua installation to be used. This reconfigures LuaRocks entirely, including allowing a LuaRocks which is itself running using one Lua 5.x version to manage packages for a different Lua 5.y version. The resulting configuration can be checked with `luarocks config --lua-dir=<path>`. * requiring `luarocks.core.cfg` no longer has side-effects * configuration now needs to be initialized with `cfg.init([lua_data])`, where `lua_data` is a table with the configuration of the VM: * `lua_version` - e.g. `"5.3"` * `luajit_version` - e.g. `"2.1.0-beta3"` * `lua_interpreter` - e.g. `"lua5.3"` * `lua_bindir` - e.g. `"/usr/local/bin"` * `lua_libdir` - e.g. `"/usr/local/lib"` * `lua_incdir` - e.g. `"/usr/local/include/lua-5.3"` * `cfg.init` can be called multiple times, reconfiguring the global state. This is important since `luarocks.loader` now calls it, and the `--lua-dir` command line can override the configuration and reconfigure LuaRocks. * `site_config_*` is no more: LuaRocks is no longer dependent on a properly-written site_config file. Instead, it can *optionally* use `luarocks.core.hardcoded` for hardcoded values, or detect its configuration at runtime, based on OS detection, arg[-1] or command-line flags. * reduction of moving parts in the configuration: * `cfg.platforms` is no longer a globally-visible table; instead, `cfg` provides an API of read-only functions: `is_platform`, `each_platform`, `print_platforms`. * `cfg.*_proxy` options are no longer configured via the config files, but rather via the standard `*_proxy` environment variables. * `"windows"` is now the more general platform name of the Windows family. This is technically a breaking change but I don't expect it to cause problems with real-world rockspecs. * internal code reorganization in `luarocks.cmd` module | |||||
* | persist: add save_as_module, for all-in-one binary | Hisham Muhammad | 2018-07-01 | 1 | -2/+33 | |
| | ||||||
* | build: use cfg.is_platform() | Hisham Muhammad | 2018-07-01 | 1 | -1/+1 | |
| | ||||||
* | util: support listing Lua versions in descending order | Hisham Muhammad | 2018-07-01 | 1 | -4/+12 | |
| | ||||||
* | rockspecs: use cfg.each_platform() | Hisham Muhammad | 2018-07-01 | 1 | -4/+4 | |
| | ||||||
* | cmd: move local functions inside | Hisham Muhammad | 2018-07-01 | 1 | -21/+22 | |
| | ||||||
* | cmd: new command-line initialization sequence | Hisham Muhammad | 2018-07-01 | 4 | -15/+15 | |
| | ||||||
* | queries: delay initalization of default [arch] entry | Hisham Muhammad | 2018-07-01 | 1 | -1/+6 | |
| | ||||||
* | cmd: move cfg.errorcodes to cmd.errorcodes | Hisham Muhammad | 2018-07-01 | 7 | -28/+24 | |
| | ||||||
* | cmd: rename luarocks.command_line to luarocks.cmd | Hisham Muhammad | 2018-07-01 | 3 | -9/+9 | |
| | ||||||
* | fs: make module loading side-effect free, require explicit init() | Hisham Muhammad | 2018-07-01 | 4 | -49/+72 | |
| | ||||||
* | fs: perform tool detection at runtime (downloader, md5checker) | Hisham Muhammad | 2018-06-28 | 3 | -25/+63 | |
| | ||||||
* | core.util: move type_check.merge_under to core.util.deep_merge_under | Hisham Muhammad | 2018-06-28 | 3 | -20/+27 | |
| | ||||||
* | fs.win32.pe-parser: copy get_architecture from install.bat | Hisham Muhammad | 2018-06-28 | 1 | -0/+15 | |
| | ||||||
* | config: skip some LuaRocks 2.x cfg options | Hisham Muhammad | 2018-06-28 | 1 | -1/+9 | |
| | ||||||
* | config: print out full config when given no arguments | Hisham Muhammad | 2018-06-28 | 1 | -1/+74 | |
| | ||||||
* | Move win32.pe-parser to luarocks.fs.win32.pe-parser | Hisham Muhammad | 2018-06-28 | 1 | -0/+553 | |
| | ||||||
* | Nicer-looking path for project dir | Hisham Muhammad | 2018-06-28 | 1 | -0/+1 | |
| | ||||||
* | rockspecs: propagate failure when parsing dependencies | Hisham Muhammad | 2018-06-20 | 1 | -3/+7 | |
| | ||||||
* | Tests: patch.lua | George Roman | 2018-06-14 | 1 | -40/+1 | |
| | ||||||
* | Tests: add c:\mingw to library search path | Hisham Muhammad | 2018-06-14 | 1 | -0/+1 | |
| | ||||||
* | Windows: find default system libraries | Hisham Muhammad | 2018-06-14 | 1 | -1/+13 | |
| | ||||||
* | builtin: if "libraries" is used but "external_dependencies" is not given, ↵ | Hisham Muhammad | 2018-06-14 | 2 | -0/+36 | |
| | | | | | | | | autogenerate it The approach is slightly ugly since it adds builtin-specific knowledge to `luarocks.deps`, but I don't think any other build backends will support this behavior any time soon. | |||||
* | builtin: auto-detect modules when build.modules (or build!) is absent | Hisham Muhammad | 2018-06-14 | 3 | -56/+94 | |
| |