| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
The package was changed in upstream:
http://lua-users.org/lists/lua-l/2017-01/msg00160.html
|
| |
|
|
|
|
| |
See https://github.com/keplerproject/luarocks/pull/491#issuecomment-246206471
|
|
|
|
|
|
| |
Luarocks wrapper used to keep lock dir not removed if luarocks process
failed. To run it again, the lock directory should have been removed
manually.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The following script was applied:
sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')
sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
$(git grep -l 'part of MXE.*See index.html')
before='This file is part of MXE. See index.html for further information.'
after='This file is part of MXE. See LICENSE.md for licensing information.'
sed "s/$before/$after/" -i $(git grep -l 'part of MXE')
Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.
See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Source: https://github.com/mxe/mxe/pull/1017#issuecomment-162260698
|
|
|
|
|
| |
See https://github.com/mxe/mxe/pull/1017#issuecomment-161557440
See http://wiki.bash-hackers.org/howto/mutex
|
|
|
|
|
|
|
|
|
| |
> There's also now an automatic all-<plugin> target which is the
> last segment of the plugin path. all-rocks.mk can be removed
> and make all-luarocks MXE_PLUGIN_DIRS=plugins/luarocks ...
> will work.
See #1017
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
... instead of $(PREFIX)/bin, not to clobber the user's normal
tools.
See #1017
|
|
|
|
| |
See #1017
|
|
|
|
|
|
|
|
| |
> install doesn't depend on build so (on OSX) the symlink is
> created first and doesn't have execute permissions. These
> steps should be separated.
See #1017
|
|
LuaRocks plugin adds
* package "luarocks"
* several packages with rocks (lpeg, luasocket, llthreads2, lua-rapidjson)
* plugins/luarocks/README.md
* virtual rock "all-rocks" depending on all rocks
* short test for rocks
|