aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* removed /debug /release switches for setting up the enviornment. it does NOT ↵Thijs Schreijer2015-12-021-2/+1
| | | | determine linking against a debug runtime or release runtime.
* Merge branch 'test_xpol' of github.com:Tieske/luarocks into test_xpolThijs Schreijer2015-12-011-1/+1
|\
| * Merge pull request #1 from ignacio/patch-1Thijs Schreijer2015-12-011-1/+1
| |\ | | | | | | Fix typo
| | * Fix typoIgnacio Burgueño2015-12-011-1/+1
| |/
* / added debug/release option for SDK detectionThijs Schreijer2015-12-011-1/+2
|/
* updated;Thijs Schreijer2015-12-011-9/+54
| | | | | | - output on checks done - commandline switch to disable the auto-search for ms tools - added debug libs to the SDK search
* Merge branch 'master' of github.com:xpol/luarocks into test_xpolThijs Schreijer2015-12-011-1/+92
|\
| * User assertion for required condition check.xpol2015-11-031-3/+3
| |
| * Enable batch script delayed expansion and extensions.Xpol Wan2015-11-011-1/+1
| | | | | | | | This is required for Windows SDK setenv.cmd.
| * Support Visual Studio Express Editions and cleanup code.Xpol Wan2015-11-011-14/+18
| |
| * Add support for Windows SDK v7.1 and v6.1.Xpol Wan2015-11-011-24/+60
| | | | | | | | Other Windows SDK versions requires a separate installation of Visual Studio.
| * Move mingw test out of get_msvc_env_setup_cmd().Xpol Wan2015-10-271-3/+1
| |
| * Don't setup msvc when user desires MinGW.Xpol Wan2015-10-271-0/+2
| |
| * Add comments about Windows SDKs.Xpol Wan2015-10-271-0/+3
| |
| * Better msvc compiler setup compatibility.Xpol Wan2015-10-271-22/+32
| | | | | | | | | | | | 1. Use vcvarsall.bat if exists. 2. Use vcvars32.bat / vcvars64.bat if exists. 3. Do no compiler env setup in luarocks.bat if 1 and 2 are both not exists.
| * Better setup vc compiler, should compatible with Windows SDK.Xpol Wan2015-10-241-13/+30
| | | | | | | | | | 1. Use reg: HKEY_LOCAL_MACHINE\SOFTWARE[\Wow6432Node]\Microsoft\VisualStudio\<version>\Setup\VC:ProductDir 2. Use bin\vcvars32.bat and bin\amd64\vcvars64.bat instead of vcvarsall.bat.
| * Automatically setup MSVC command line tools for VC2008 or above.Xpol Wan2015-10-231-0/+21
| |
* | Merge pull request #455 from Tieske/fix_errormsgThijs Schreijer2015-11-252-4/+6
|\ \ | | | | | | fix: bad errormessage and missing quotes
| * | fix: bad errormessage and missing quotesThijs Schreijer2015-11-252-4/+6
| | |
* | | Merge branch 'master' of https://github.com/keplerproject/luarocksHisham Muhammad2015-11-165-109/+110
|\ \ \
| * \ \ Merge pull request #448 from zoresvit/patch-1Hisham Muhammad2015-11-111-20/+1
| |\ \ \ | | |/ / | |/| | Fix `find_program` function to be less fragile
| | * | Use `command -v` for obtaining executable path.Ruslan Kiianchuk2015-11-071-1/+1
| | | | | | | | | | | | Seems like `command -v` is defined by POSIX and therefore should be compatible with all POSIX OSes.
| | * | Fix `find_program` function to be less fragileRuslan Kiianchuk2015-11-071-20/+1
| | |/ | | | | | | Look for executable path using system utility `which` instead of fragile regular expressions. See $447 for details. Also see discussion in [neovim](https://github.com/neovim/neovim/issues/3620#issuecomment-154757577) issues.
| * | Merge pull request #413 from Tieske/unversion_LRHisham Muhammad2015-11-073-77/+97
| |\ \ | | |/ | |/| Win installer: Unversion LR target path
| | * explicit warn when enviornment variable given filename doesn't existThijs Schreijer2015-10-271-9/+25
| | |
| | * update commandline help Windows installerThijs Schreijer2015-07-261-2/+3
| | |
| | * moved systree on top of Lua installationThijs Schreijer2015-07-261-7/+13
| | |
| | * fixed bad reference to main LuaRocks install path, should fix AppVeyor failuresThijs Schreijer2015-07-202-2/+1
| | |
| | * added debug lineThijs Schreijer2015-07-191-0/+1
| | |
| | * Fixes appveyor build script for changed pathsThijs Schreijer2015-07-191-4/+3
| | |
| | * update windows installer help textThijs Schreijer2015-07-191-3/+0
| | |
| | * Windows installer: no longer use the LR version in the target installation path.Thijs Schreijer2015-07-191-20/+18
| | | | | | | | | | | | Fixes #151
| | * Windows installer: backup configuration files before removing installation ↵Thijs Schreijer2015-07-181-35/+38
| | | | | | | | | | | | directory
| | * minor textual fixesThijs Schreijer2015-07-141-2/+2
| | |
| * | Merge pull request #440 from mpeterv/fix-patch-errorHisham Muhammad2015-10-191-11/+6
| |\ \ | | | | | | | | Fix patch error message when source is different
| | * | Fix patch error message when source is differentmpeterv2015-10-171-11/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | check_patched() relies on throwing and catching string 'nomatch'. Pass 0 as the second argument for error() when throwing to avoid location info being added to the message. Fixes lack of error when patch should fail with "source is different" error.
| * | | Merge pull request #439 from mpeterv/fix-patch-empty-linesHisham Muhammad2015-10-191-1/+6
| |\ \ \ | | |/ / | |/| | Fix empty line handling in patch.lua
| | * | Fix empty line handling in patch.luampeterv2015-10-171-1/+6
| |/ / | | | | | | | | | | | | | | | | | | | | | Interpret empty lines in hunk bodies as empty context lines, that is, add a space to them. This is consistent with command-line patch tool behaviour. Fixes #434.
* / / Do not distribute appveyor files in release packages.Hisham Muhammad2015-11-161-2/+2
|/ /
* | Revert accidental commit.Hisham Muhammad2015-09-302-4/+2
| |
* | Use env for setting MACOSX_DEPLOYMENT_TARGET.Hisham Muhammad2015-09-303-4/+6
| | | | | | | | See #422.
* | add set_time function for tar module without lfsHisham Muhammad2015-09-222-0/+6
| |
* | Merge pull request #426 from usstwxy/patch-1Hisham Muhammad2015-09-221-3/+4
|\ \ | | | | | | Update tar.lua
| * | Update tar.luaWXY2015-09-211-3/+4
| | | | | | | | | fix a bug occured when unrar some .tar files using this module
* | | Merge pull request #427 from tst2005/masterIgnacio Burgueño2015-09-211-0/+1
|\ \ \ | | | | | | | | missing to close file descriptor
| * | | missing to close file descriptorTsT2015-09-211-0/+1
|/ / /
* / / We use lzlib, not lua-zlibHisham Muhammad2015-09-211-1/+1
|/ /
* | Fix documentation of --lua-versionHisham Muhammad2015-09-171-1/+1
| |
* | Update LuaCovHisham Muhammad2015-08-301-1/+1
| |
* | Merge pull request #418 from jasonwilliams200OK/masterIgnacio Burgueño2015-08-181-5/+2
|\ \ | | | | | | ci: updates appveyor config to use VS2015