aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Performance improvementsHisham Muhammad2014-01-0910-84/+108
|
* Add help on --deps-modeHisham Muhammad2014-01-074-3/+26
|
* Merge branch 'master' of github.com:keplerproject/luarocksHisham Muhammad2014-01-041-0/+4
|\
| * Merge pull request #214 from Tieske/purge_permissionHisham Muhammad2014-01-031-0/+4
| |\ | | | | | | Fix: Purge command did not check permission for the tree to operate on
| | * Fix: Purge command did not check permission for the tree to operate onThijs Schreijer2014-01-031-0/+4
| | |
* | | Improvements to the write_rockspec command.Hisham Muhammad2014-01-041-14/+52
|/ / | | | | | | Let's make this more and more automagical over time. :)
* | Merge branch 'master' of github.com:keplerproject/luarocksHisham Muhammad2014-01-038-46/+149
|\|
| * Merge pull request #212 from Tieske/text_fixThijs Schreijer2013-12-271-11/+10
| |\ | | | | | | some textual updates
| | * some textual updatesThijs Schreijer2013-12-271-11/+10
| |/
| * Merge pull request #211 from Tieske/exitcodesHisham Muhammad2013-12-267-35/+137
| |\ | | | | | | Win defaults, /SELFCONTAINED option
| | * updated comments for exitcodesThijs Schreijer2013-12-265-9/+61
| | | | | | | | | | | | batch wrapper script (luarocks.bat) updated to auto-elevate if permission was denied
| | * specify error exitcodes, specifically 'permission denied'.Thijs Schreijer2013-12-256-10/+26
| | |
| | * updated default system tree location to 'program files', so it is protected ↵Thijs Schreijer2013-12-251-16/+50
| |/ | | | | | | | | | | with admin rights. Implemented a /SELFCONTAINED installation option that makes a single directory installation
| * Merge pull request #209 from Tieske/help_outputThijs Schreijer2013-12-231-5/+7
| |\ | | | | | | normalize paths in help output
| | * normalize paths in help outputThijs Schreijer2013-12-231-5/+7
| |/
* / Licensing cleanupHisham Muhammad2014-01-033-29/+18
|/
* Make sure value of tree is propagated correctly to commands.Hisham Muhammad2013-12-233-3/+27
|
* Merge branch 'master' of github.com:keplerproject/luarocksHisham Muhammad2013-12-236-5/+23
|\
| * Merge pull request #206 from Tieske/verbose_flagHisham Muhammad2013-12-222-1/+10
| |\ | | | | | | adds flag `--verbose` as equivalent for config file `verbose = true`
| | * adds flag `--verbose` as equivalent for config file `verbose = true`Thijs Schreijer2013-12-222-1/+10
| | |
| * | Merge pull request #207 from Tieske/normpathHisham Muhammad2013-12-222-1/+10
| |\ \ | | | | | | | | Normalize search and list output paths on Windows
| | * | take urls into account besides local pathsThijs Schreijer2013-12-221-1/+9
| | | |
| | * | Normalizes paths displayed from `search` module, used for searching and ↵Thijs Schreijer2013-12-222-1/+2
| | |/ | | | | | | | | | listing installed rocks
| * | Merge pull request #208 from Tieske/treeorderThijs Schreijer2013-12-221-1/+1
| |\ \ | | |/ | |/| Installer defined trees in wrong order
| | * fixed wrong tree order in config file; order was user - system. Now ↵Thijs Schreijer2013-12-221-1/+1
| |/ | | | | | | corrected to system - user. So installations default to system tree.
| * Merge pull request #205 from Tieske/context_menu_fixThijs Schreijer2013-12-211-2/+2
| |\ | | | | | | fixed bug where context menu options did not support paths containing spaces
| | * fixed bug where context menu options did not support paths containing spacesThijs Schreijer2013-12-221-2/+2
| | |
* | | Try versioned "lua" names before the unversioned one.Hisham Muhammad2013-12-231-6/+6
|/ / | | | | | | | | Should improve on behavior mentioned at http://stackoverflow.com/questions/20321560/how-do-install-libraries-for-both-lua5-2-and-5-1-using-luarocks/20359102?noredirect=1#comment30696438_20359102
* | Fix display of error message in loader.Hisham Muhammad2013-12-211-3/+3
| |
* | Fix regressions caused by #194. Thank you, integrated testing!Hisham Muhammad2013-12-202-11/+11
| |
* | Let's not use "built-in" terminology in this case: avoid confusion with the ↵Hisham Muhammad2013-12-201-3/+3
| | | | | | | | "builtin" build mode.
* | Use same loop for both arraysHisham Muhammad2013-12-201-18/+9
| |
* | Let's be more conservative about this for now.Hisham Muhammad2013-12-201-5/+2
| |
* | Merge pull request #194 from rtsisyk/gh-177-option-for-builtin-packagesHisham Muhammad2013-12-203-12/+49
|\ \ | | | | | | Add a configuration option to specify manually installed rocks (#177)
| * | Add a configuration option to specify manually installed rocks.Roman Tsisyk2013-11-303-12/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The patch adds a new configuration option - cfg.rocks_provided. This option contains a list of packages that are either builtin or manually installed outside of LuaRocks package management system: rocks_provided = { [module_name] = module_version.."-"..rockspec_version, -- ... } These settings are taken into account during dependency resolution and when search and install commands are used. An attempt to install a rock from the list causes an error. LuaRocks automatically adds following modules to the list: rocks_provided = { lua = lua_version.."-1", -- For Lua 5.2 or later: bit32 = lua_version.."-1", -- For LuaJIT: luajit = lj_version.."-1", jit = lj_version.."-1", ffi = lj_version.."-1", bit = lj_version.."-1", luabitop = lj_version.."-1" } where lua_version extracted from _VERSION (e.g. 5.2), lj_version extracted from jit.version (e.g. 2.0.2). Built-in values can be overridden by configuration options. Closes #177.
* | | Merge pull request #188 from echiesse/masterHisham Muhammad2013-12-201-3/+9
|\ \ \ | |_|/ |/| | Fixed the error of not embedding the manifest in DLLs compiled by Visual Studio 2008…
| * | Merge branch 'master' of https://github.com/echiesse/luarocksEric Chiesse2013-11-300-0/+0
| |\ \
| | * | Corrigido erro de não fazer o embed do manifest em dlls compiladas pelo ↵Eric Chiesse2013-11-231-3/+9
| | | | | | | | | | | | | | | | Visual Studio 2008 no caso de a dll fazer parte de um módulo (estar em um subdiretório). O LuaRocks não fazia corretamente o build de módulo que tivessem estrutura de diretório (como luasql.postgres).
| * | | Fixed the error of not embedding the manifest in DLLs compiled by Visual ↵Eric Chiesse2013-11-301-3/+9
| |/ / | | | | | | | | | Studio 2008 in the case where the DLL is part of a module (inside a subdirectory). LusRocks was not correctly building modules with directory structure (like luasql.postgres) when compiling for win32.
* | | Merge pull request #204 from Tieske/win_named_treeThijs Schreijer2013-12-191-4/+5
|\ \ \ | | | | | | | | Win installer bugfix and update
| * | | 1. bug fix for installing on x64 systems in "program files (x86)" ↵Thijs Schreijer2013-12-191-4/+5
|/ / / | | | | | | | | | | | | | | | (parentheses around x86 gave some escaping problems) 2. Adds named trees created by windows installer in the config file.
* | | Add check that will be used to ensure no rocks without licenses are uploaded.Hisham Muhammad2013-12-181-1/+13
| | | | | | | | | | | | Closes #202.
* | | Prioritize "scm" over "cvs". This was underspecified before.Hisham Muhammad2013-12-181-1/+1
| | |
* | | Make default rocks_trees named as well.Hisham Muhammad2013-12-182-4/+4
| | |
* | | Fix some tests that only run locally.Hisham Muhammad2013-12-181-5/+3
| | |
* | | Add named trees, as suggested by @Tieske, plus tests.Hisham Muhammad2013-12-182-6/+19
| | |
* | | More testsHisham Muhammad2013-12-181-1/+8
| | |
* | | Test environment improvementsHisham Muhammad2013-12-181-41/+64
| | |
* | | Propagate failure of MD5 correctly. Closes #184.Hisham Muhammad2013-12-134-4/+8
| | |
* | | Merge pull request #200 from fab13n/masterHisham Muhammad2013-12-131-2/+3
|\ \ \ | | | | | | | | Fixed an improper error message