Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | "soft-revert" support for building static libs. | Hisham | 2016-10-29 | 2 | -0/+8 |
| | | | | | This is causing a conflict in the manifest file. Looks like we'll need to extend the manifest format anyway. | ||||
* | Fix references to writer.make_manifest | Hisham | 2016-10-29 | 1 | -4/+4 |
| | |||||
* | Adjust changes by @mpeterv in #638 to new locations. | Hisham | 2016-10-29 | 2 | -67/+126 |
| | |||||
* | Merge branch 'master' into luarocks-3 | Hisham | 2016-10-29 | 3 | -19/+54 |
|\ | |||||
| * | Merge pull request #638 from mpeterv/remove-without-manifest-rebuild | Hisham Muhammad | 2016-10-29 | 2 | -64/+122 |
| |\ | | | | | | | Remove packages without manifest rebuild | ||||
| | * | Update manifest after removal without rebuilding | Peter Melnichenko | 2016-10-28 | 2 | -9/+84 |
| | | | | | | | | | | | | | | | | | | | | | Rename `manif.update_manifest` to `manif.add_to_manifest`. Add `manif.remove_from_manifest` that performs reverse action. Use it in `repos.delete_version` to avoid rebuilding manifest everytime a package is removed. | ||||
| | * | manif.update_manifest: do not update manifest if rebuilt | Peter Melnichenko | 2016-10-28 | 1 | -8/+4 |
| | | | |||||
| | * | manif.update_manifest: load manifest as local | Peter Melnichenko | 2016-10-28 | 1 | -1/+1 |
| | | | |||||
| | * | Rename a variable in manif.update_manifest | Peter Melnichenko | 2016-10-28 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | `repo` sometimes means root dir and sometimes means rock dir. At least do not reuse the same variable for both. | ||||
| | * | Refactor store_results in luarocks.manif (2) | Peter Melnichenko | 2016-10-28 | 1 | -21/+8 |
| | | | | | | | | | | | | | | | Do not accept a hook function to call after storing results. Simply call it on the outside after calling store_results. | ||||
| | * | Refactor store_results in luarocks.manif | Peter Melnichenko | 2016-10-28 | 1 | -22/+22 |
| | | | | | | | | | | | | | | | | | | Instead of passing a function and its arguments to a helper function for it to call it, make a copy of result, and return it, call the function on the outer level and pass the result to helper. | ||||
| * | | Improve performance of manif_core.get_versions | Peter Melnichenko | 2016-10-29 | 1 | -11/+10 |
| |/ | | | | | | | | | | | | | | | | | | | To get all installed versions of a package using deps_mode, instead of deeply merging all manifests of corresponding trees, shallowly merge only tables related to that package. This affects speed of manifest manipulation and dependency resolution. Minimal performance testing suggests 3x-4x speed-up on reinstallation of a package using `luarocks make`. | ||||
| * | Merge pull request #637 from mpeterv/fix-win-abs-path | Hisham Muhammad | 2016-10-28 | 2 | -8/+44 |
| |\ | | | | | | | Fix absolute path detection on Windows | ||||
| | * | Fix absolute path detection on Windows | Peter Melnichenko | 2016-10-28 | 1 | -8/+31 |
| | | | | | | | | | | | | | | | | | | Do not use "^[%.a-zA-Z]?:?[\\/]" as a pattern when checking if a path is absolute on Windows. Check if there is a directory separator after an optional drive letter instead. | ||||
| | * | Add test for #632. | Hisham | 2016-10-28 | 1 | -0/+13 |
| | | | |||||
* | | | Merge branch 'master' into luarocks-3 | Hisham | 2016-10-28 | 5 | -33/+40 |
|\| | | |||||
| * | | Merge branch 'master' of https://github.com/keplerproject/luarocks | Hisham | 2016-10-28 | 4 | -32/+39 |
| |\| | |||||
| | * | Refactor windows argument quoting functions | Peter Melnichenko | 2016-10-28 | 1 | -21/+9 |
| | | | | | | | | | | | | Use string replacements instead of functions in calls to gsub. | ||||
| | * | Move Unix-specific fs.Q implementation into luarocks.fs.unix | Peter Melnichenko | 2016-10-28 | 2 | -11/+9 |
| | | | |||||
| | * | Add a few tests for fs.Q | Peter Melnichenko | 2016-10-28 | 1 | -0/+21 |
| | | | |||||
| * | | Prefer versioned Lua interpreter if it exists. | Hisham | 2016-10-28 | 1 | -1/+1 |
| |/ | | | | | | | | | | | | | | | | | | | This avoids in practice a problem that occurs in this scenario: 1. user installs Lua 5.1, gets lua and lua5.1 binaries 2. user installs LuaRocks, it detects and uses lua 3. user installs Lua 5.2, gets lua and lua5.2 binaries (lua is replaced) 4. user installs LuaRocks with --lua-version=5.2, it detects and uses lua 5. luarocks-5.1 now uses lua, which is Lua 5.2, rockspecs get passed the wrong value of $(LUA) | ||||
* | | Fix merge. | Hisham | 2016-10-28 | 1 | -1/+0 |
| | | |||||
* | | Merge branch 'master' into luarocks-3 | Hisham | 2016-10-27 | 17 | -82/+136 |
|\| | |||||
| * | Support user-defined platforms array. | Hisham | 2016-10-26 | 1 | -30/+57 |
| | | | | | | | | | | Let the user set their own custom platform entries, but also provide fallbacks to make sure things work. | ||||
| * | Check if header matches interpreter. | Hisham | 2016-10-26 | 1 | -0/+12 |
| | | |||||
| * | Improve check of Lua interpreter | Hisham | 2016-10-26 | 1 | -38/+39 |
| | | | | | | | | | | (e.g. allow it to find `lua5.1` when lua is 5.3 and only `--lua-version=5.1` is given). | ||||
| * | Merge branch 'master' of https://github.com/keplerproject/luarocks | Hisham | 2016-10-26 | 15 | -16/+24 |
| |\ | |||||
| | * | Merge pull request #635 from mpeterv/rock-name-case | Hisham Muhammad | 2016-10-26 | 10 | -7/+22 |
| | |\ | | | | | | | | | Make rock name arguments case insensitive | ||||
| | | * | Add two tests for uppercase rock name arguments | Peter Melnichenko | 2016-10-26 | 2 | -1/+13 |
| | | | | |||||
| | | * | Treat rock name arguments in case insensitive way | Peter Melnichenko | 2016-10-26 | 8 | -6/+9 |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Internally package names are lowercased, however, rockspec may contain a name with uppercase letters, which will be displayed by `luarocks show`. Some commands, like `luarocks search`, `luarocks install` and `luarocks build`, support this and convert input name to lowercase before passing it to interanl functions. Do the same thing in other commands accepting rock names. | ||||
| | * | Remove some unused locals and imports | Peter Melnichenko | 2016-10-20 | 6 | -9/+2 |
| | | | |||||
| * | | Add link_lua_explicitly option. | Hisham | 2016-10-25 | 2 | -1/+3 |
| | | | | | | | | | | | | | | | Remove explicit reference to cygwin, and make option available for custom environments. | ||||
| * | | Check rockspec_version before running type check. | Hisham | 2016-10-25 | 1 | -6/+6 |
| |/ | |||||
* | | Check rockspec_version before running type check. | Hisham | 2016-10-25 | 1 | -5/+6 |
| | | |||||
* | | Merge branch 'master' into luarocks-3 | Hisham | 2016-10-20 | 3 | -14/+34 |
|\| | |||||
| * | Show traceback for errors in scheduled functions | Peter Melnichenko | 2016-10-20 | 1 | -9/+15 |
| | | |||||
| * | Slightly improve error messages in deploy/remove | Peter Melnichenko | 2016-10-20 | 1 | -5/+7 |
| | | |||||
| * | Add a test for sailor/sailorproject#138 | Peter Melnichenko | 2016-10-20 | 1 | -0/+12 |
| | | |||||
* | | Make sure brand-new rockspec table has the utility function. | Hisham | 2016-10-20 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'master' into luarocks-3 | Hisham | 2016-10-20 | 5 | -100/+189 |
|\| | |||||
| * | Merge pull request #631 from mpeterv/fix-conflict-resolution | Hisham Muhammad | 2016-10-20 | 4 | -96/+188 |
| |\ | | | | | | | Fix conflict resolution | ||||
| | * | Fix backup of wrapped scripts on deploy | Peter Melnichenko | 2016-10-20 | 1 | -26/+25 |
| | | | | | | | | | | | | | | | When deploying script to bin/script.bat, check and back up bin/script.bat, not bin/script. | ||||
| | * | Add a test for wrapped script backup | Peter Melnichenko | 2016-10-20 | 1 | -0/+2 |
| | | | |||||
| | * | Fix conflict resolution on deploy/delete | Peter Melnichenko | 2016-10-19 | 2 | -78/+146 |
| | | | | | | | | | | | | | | | | | | | | | | | | When deploying or deleting files, resolve conflicts purely based on module names and command names, not file names. Also, don't assume that in case of a conflict both packages have the same file providing the module or command; it can be false due to binary wrappers and `path_to_module("mod/init.lua")` == `path_to_module("mod.lua"). | ||||
| | * | Add a test for #302 | Peter Melnichenko | 2016-10-19 | 2 | -0/+23 |
| |/ | |||||
| * | Remove some useless code in luarocks.build | Peter Melnichenko | 2016-10-19 | 1 | -4/+1 |
| | | | | | | | | Same as 6639022. | ||||
* | | Oops, messed with the module location. | Hisham | 2016-10-19 | 1 | -2/+2 |
| | | |||||
* | | Merge in Windows-compatible quoting. | Hisham | 2016-10-19 | 1 | -2/+2 |
| | | |||||
* | | Add format-check function in rockspec table. | Hisham | 2016-10-19 | 4 | -8/+8 |
| | | | | | | | | This avoids sprinkling the luarocks.deps dependency everywhere. | ||||
* | | Add some useful rules to .gitignore | Hisham | 2016-10-19 | 1 | -0/+10 |
| | |