aboutsummaryrefslogtreecommitdiff
path: root/lfw (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-09-21We use lzlib, not lua-zlibHisham Muhammad1-1/+1
2015-09-17Fix documentation of --lua-versionHisham Muhammad1-1/+1
2015-08-30Update LuaCovHisham Muhammad1-1/+1
2015-08-18ci: updates appveyor config to use VS2015.Peter Jas1-5/+2
2015-07-10Fix git cloning command when using git+http protocolmpeterv1-1/+1
git+http and git+https pass '--' instead of '--depth=1' option. As '--branch' option was passed after depth, it caused the former to be interpreted as an extra argument by git. Pass '--branch' first instead.
2015-07-09added extra include files search paths, see ↵Thijs Schreijer1-6/+15
https://github.com/keplerproject/luarocks/issues/403#issuecomment-119726674 updated bak files as per @ignacio see https://github.com/keplerproject/luarocks/pull/407#discussion-diff-33782733
2015-07-02also version the `site_config` fileThijs Schreijer1-7/+8
2015-07-01update displayed data to match versionThijs Schreijer1-3/+4
2015-06-30Updates pe-parser to v0.4Ignacio Burgueño1-1/+4
2015-06-30Strip known extensionsIgnacio Burgueño3-1/+31
2015-06-30prefer versioned config files and directories over non-versioned onesThijs Schreijer2-101/+137
2015-06-29Make wording of help summaries consistent.Hisham Muhammad3-3/+3
As noted by @mpeterv in https://github.com/keplerproject/luarocks/pull/400#issuecomment-116307146 Changed them so they all use imperative verb form.
2015-06-29Changes wording as suggestedIgnacio Burgueño1-1/+1
2015-06-26Adds missing testsIgnacio Burgueño2-1/+33
2015-06-26Adds help to 'luarocks config' commandIgnacio Burgueño1-1/+16
2015-06-26Add a test for '--rockspec-format' optionmpeterv2-0/+2
2015-06-26Add '--rockspec-format' option for write_rockspec commandmpeterv2-12/+15
'--rockspec-format' option allows selecting rockspec format version when writing a rockspec.
2015-06-26added error message in case of a bad platform valueThijs Schreijer1-0/+6
2015-06-26added correct order for platform overridesThijs Schreijer1-1/+27
2015-06-25Update appveyor test matrix to use Lua 5.3.1Ignacio Burgueño1-1/+1
2015-06-25integrated cfg.platform and cfg.platformsThijs Schreijer1-47/+47
2015-06-25Don't restrict the generator override to mingwIgnacio Burgueño1-1/+1
2015-06-25Use new key target_cpuIgnacio Burgueño1-1/+1
2015-06-25CMake needs a hint to use 64 bit target with msvc.Ignacio Burgue o1-7/+7
Only when using Windows 64 bits and the msvc compiler. CMake uses the x86 generator by default. We need to tell it explicitly that we wan't to use the x64 generator. refs #382
2015-06-25cmake backend: Generate 64 bits build when appropiateIgnacio Burgueño1-1/+5
Adds -DCMAKE_GENERATOR_PLATFORM=x64 when needed. It seems that CMake does not do that by default (although I might be wrong on that). fixes #382
2015-06-25refactored the loading of the config files in a more structural manner, ↵Thijs Schreijer1-39/+45
removing duplicate code and error handling.
2015-06-25`detected` was only retained in `cfg` through multiple copies, removed by ↵Thijs Schreijer1-47/+45
directly operating on `cfg.platform`
2015-06-25do not reuse environmentsThijs Schreijer1-26/+31
2015-06-25fix travis-ci errorThijs Schreijer1-1/+3
2015-06-25removed accidental reintroduced lineThijs Schreijer1-1/+0
2015-06-25config.lua is not being integrated, bug introduced in #385Thijs Schreijer1-7/+13
2015-06-24Don't shadow filename variable: fixes error message.Hisham Muhammad1-2/+2
2015-06-24Update build matrix to use latest versionsIgnacio Burgueño1-2/+2
Updates the build matrix to use Lua 5.2.4 and 5.3.1
2015-06-24Make 'build' field in rockspecs mandatory.Ignacio Burgueño4-1/+16
Rockspecs must have a 'build' field. If by any chance, it is not needed (see #379), add this: ````lua build = { type = "none" } ````
2015-06-24oops... remove debug stuffThijs Schreijer1-9/+0
2015-06-24- site_config remains local, not exposedThijs Schreijer1-11/+20
- added field 'target_cpu' to `cfg` and config file environments
2015-06-24Remove `--extensions` flag. Fixes #391.Hisham Muhammad3-8/+0
Instead of enabling extensions, use a higher value for `rockspec_format` when writing rockspecs.
2015-06-20fix typoKyle McLamb1-9/+9
2015-06-19Allows luarocks.cfg to be used without being installed.Ignacio Burgueño1-1/+1
This allows to address the issue #386
2015-06-18Factors the code to check for a tool. Changes 'not found' message wording.Ignacio Burgueño6-10/+36
Adds the function fs.is_tool_available to check if a given tool (git, hg, cmake, etc) is available.
2015-06-18fix: use same environment table for the system config file as well.Thijs Schreijer1-23/+16
2015-06-18Checks if tool is installed (svn, cvs, hg)Ignacio Burgueño3-2/+15
2015-06-17Checks if git is installedIgnacio Burgueño1-0/+4
When sources are to be fetched using git, check beforehand it is available in the path instead of causing an error. It will show the message: `Error: 'git' program not found. Is git installed? You may want to edit variables.GIT` and exit. refs #381
2015-06-17fixed typoThijs Schreijer1-1/+1
2015-06-16added 2 functions to the global environment of the config-file loader ↵Thijs Schreijer1-1/+16
sandbox; `os_getenv()` and `__dump_env()`
2015-06-08Use LuaJIT 2.0.4 on AppVeyor's test matrixIgnacio Burgueño1-1/+1
2015-05-26remove excess line (windows installer)Thijs Schreijer1-1/+1
2015-05-25Correct use of which_config. Fixes #374.Hisham Muhammad1-4/+4
2015-05-25Add config_cmd.lua to Makefile.setup.inc.Philipp Janda1-5/+5
Without config_cmd.lua in the list of LuaRocks files to install the installation is broken and throws an error when trying to display the usage message.
2015-05-18Add `luarocks config` command for querying LuaRocks settings.Hisham Muhammad7-19/+102