aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-11-28removed unintended codeThijs Schreijer1-9/+0
2013-11-28fixes permission checks on Windows with VirtualStore redirectionThijs Schreijer1-0/+42
2013-11-19fixed double quotes in io.popen commandsThijs Schreijer2-1/+10
2013-11-18fixed type. Fixes #185Thijs Schreijer1-1/+1
2013-11-17Add --force flag.Hisham Muhammad1-7/+12
Should be useful for François Perrad's work on the BuildRoot infrastructure for LuaRocks.
2013-11-17Make sure manifest unzips properly, to avoid stale manifests.Hisham Muhammad1-1/+3
2013-11-14Fix `luarocks path` now that luarocks.cfg no longer edits package.pathHisham Muhammad1-2/+10
2013-11-13update get_md5() and check_md5() to also return an error message if it failsThijs Schreijer3-13/+20
unquoted arguments of get_md5 command to prevent failure, needs further updating
2013-11-13fixes LR install in location with spaces, quoting LR commandsThijs Schreijer3-20/+43
NOTE: seems to be broken now, bug not found yet
2013-11-12Remove incompatibility in the sed command, as reported in the Lua mailing list.Hisham Muhammad1-1/+1
2013-11-12Allow the wrapper scripts to keep working even if LuaRocks is uninstalledHisham Muhammad2-4/+4
(or if one is building them to run in another box without LuaRocks, for example, in cross-compiling scenarios).
2013-11-12added quoting to os command, failed with paths containing spacesThijs Schreijer1-1/+1
2013-11-12Merge changes proposed by @siffiejoe in #172.Hisham Muhammad4-22/+17
(Sorry about the clumsiness of not doing a proper merge.)
2013-11-12fix: registry import with filename containing spacesThijs Schreijer1-1/+1
2013-11-12Several updates:Thijs Schreijer1-9/+60
1) will search the system path for Lua interpreter if no location is found. Only then the ancient defaults will be checked. 2) if /LUA is provided, it will only look there, and fail if not found instead of falling back to the defaults 3) if no interpreter found, it is not automatically installed. Only with explicit /L switch the included interpreter is installed
2013-11-12minor text updateThijs Schreijer1-3/+4
2013-11-11fixed issue with double quoted argumentsThijs Schreijer1-7/+21
2013-11-11fixed command line parameters with spacesThijs Schreijer1-28/+41
reorganized help description fixed whitespace
2013-11-10map_trees deals with both string and table treesAndreas Fidjeland1-1/+1
Fixes #178
2013-11-04Merge branch 'master' of github.com:keplerproject/luarocksHisham Muhammad1-1/+1
2013-11-04Symlinks shouldn't refer to DESTDIR.Hisham Muhammad1-1/+1
Patch submitted by Dmitri Paduchikh.
2013-11-04Fix #174: An extra parenthesis in build/cmake.luaRoman Tsisyk1-1/+1
2013-10-29Prepare for release 2.1.1v2.1.1Hisham Muhammad2-2/+2
2013-10-29Improve coverage -- now at 80.06%Hisham Muhammad1-1/+21
2013-10-29Fix handling of arguments.Hisham Muhammad1-33/+35
2013-10-29Remove redundant function.Hisham Muhammad1-10/+5
2013-10-29Don't loop in case of circular dependenciesHisham Muhammad1-0/+1
2013-10-29Fix inverted logic in recent commit.Hisham Muhammad1-1/+1
2013-10-28added extra path for luarocks modules on windowsPhilipp Janda1-3/+5
2013-10-28Add escaping of ]] preventing code injection as contributed by @siffiejoe. ↵Hisham Muhammad1-1/+3
See #154, #167.
2013-10-28update infoHisham Muhammad1-1/+1
2013-10-28Remove binaries which are no longer needed. See #167.Hisham Muhammad2-0/+0
2013-10-28Remove spurious \ from patternHisham Muhammad1-1/+1
2013-10-27Should fix build on Windows. See #167.Hisham Muhammad5-19/+25
Also, speeds up operations on Windows considerably.
2013-10-25Use a more idiomatic Windows path for the local cachesHisham Muhammad1-1/+7
2013-10-24Accidentally ate a space, sorry!Hisham Muhammad1-1/+1
2013-10-24Add option to make 7z overwrite zip files, matching unzip behavior on Unix.Hisham Muhammad1-4/+4
Flag suggested by @siffiejoe. Should fix problems mentioned in #167.
2013-10-20Cache remote manifest files locally and hit server with a HEAD request to ↵Hisham Muhammad7-50/+132
check timestamp.
2013-10-18Fix behavior on nonexisting files, and while we're at it make it more ↵Hisham Muhammad1-7/+9
efficient and less prone to race conditions.
2013-10-18Make make-manifest more fool-proof, for values of "fool" equalling HishamHisham Muhammad1-0/+11
2013-10-18Add documentation.Hisham Muhammad1-0/+6
2013-10-18Cleanup temporary fields that escaped; catch an argument error.Hisham Muhammad1-1/+7
2013-10-18Improve coverage -- now at 79.65%Hisham Muhammad1-1/+7
2013-10-18Fix infinite loop!Hisham Muhammad1-1/+1
2013-10-14Improvements for write_rockspecHisham Muhammad2-5/+27
2013-10-14remove non-portable Qb from lua.luaPhilipp Janda1-12/+0
2013-10-14special handling for chdir and root directoryPhilipp Janda1-0/+6
2013-10-14better shell escaping on windowsPhilipp Janda2-6/+53
2013-10-14Improved quoting in script wrappers. Add util.LQ function for Lua quoting.Hisham Muhammad3-9/+14
As discussed in #154.
2013-10-14No need to quote backslashes in single-quoted strings.Hisham Muhammad1-1/+14
As referenced by @siffiejoe in #154.