Add LuaRocks 2.4.3 support

This commit is contained in:
Francois Perrad 2017-09-13 10:56:10 +02:00
parent 3d66ed47ab
commit c44db4fcdb

View File

@ -1418,7 +1418,7 @@ class LuaRocks(Program):
"2.1.0", "2.1.1", "2.1.2", "2.1.0", "2.1.1", "2.1.2",
"2.2.0", "2.2.1", "2.2.2", "2.2.0", "2.2.1", "2.2.2",
"2.3.0", "2.3.0",
"2.4.0", "2.4.1", "2.4.2" "2.4.0", "2.4.1", "2.4.2", "2.4.3",
] ]
translations = { translations = {
"2": "2.4.2", "2": "2.4.2",
@ -1426,10 +1426,10 @@ class LuaRocks(Program):
"2.1": "2.1.2", "2.1": "2.1.2",
"2.2": "2.2.2", "2.2": "2.2.2",
"2.3": "2.3.0", "2.3": "2.3.0",
"2.4": "2.4.2", "2.4": "2.4.3",
"3": "@luarocks-3", "3": "@luarocks-3",
"^": "2.4.2", "^": "2.4.3",
"latest": "2.4.2" "latest": "2.4.3"
} }
checksums = { checksums = {
"luarocks-2.0.10.tar.gz" : "11731dfe6e210a962cb2a857b8b2f14a9ab1043e13af09a1b9455b486401b46e", "luarocks-2.0.10.tar.gz" : "11731dfe6e210a962cb2a857b8b2f14a9ab1043e13af09a1b9455b486401b46e",
@ -1464,6 +1464,8 @@ class LuaRocks(Program):
"luarocks-2.4.1-win32.zip" : "c6cf36ca2e03b1a910e4dde9ac5c9360dc16f3f7afe50a978213d26728f4c667", "luarocks-2.4.1-win32.zip" : "c6cf36ca2e03b1a910e4dde9ac5c9360dc16f3f7afe50a978213d26728f4c667",
"luarocks-2.4.2.tar.gz" : "0e1ec34583e1b265e0fbafb64c8bd348705ad403fe85967fd05d3a659f74d2e5", "luarocks-2.4.2.tar.gz" : "0e1ec34583e1b265e0fbafb64c8bd348705ad403fe85967fd05d3a659f74d2e5",
"luarocks-2.4.2-win32.zip" : "63abc6f1240e0774f94bfe4150eaa5be06979c245db1dd5c8ddc4fb4570f7204", "luarocks-2.4.2-win32.zip" : "63abc6f1240e0774f94bfe4150eaa5be06979c245db1dd5c8ddc4fb4570f7204",
"luarocks-2.4.3.tar.gz" : "4d414d32fed5bb121c72d3ff1280b7f2dc9027a9bc012e41dfbffd5b519b362e",
"luarocks-2.4.3-win32.zip" : "08821ec39e7c3ad20f5b3d3e118ba8f1f5a7db6e6ad22e11eb5e8a2bdc95cbfb",
} }
def is_luarocks_2_0(self): def is_luarocks_2_0(self):
@ -1786,7 +1788,7 @@ def main(argv=None):
"so that '@458a40b' installs from a commit and '@' installs from the master branch.") "so that '@458a40b' installs from a commit and '@' installs from the master branch.")
parser.add_argument( parser.add_argument(
"-r", "--luarocks", help="Version of LuaRocks to install. " "-r", "--luarocks", help="Version of LuaRocks to install. "
"As with Lua, a version number (in range 2.0.8 - 2.4.2), '^', git URI with reference or " "As with Lua, a version number (in range 2.0.8 - 2.4.3), '^', git URI with reference or "
"a local path can be used. '3' can be used as a version number and installs from " "a local path can be used. '3' can be used as a version number and installs from "
"the 'luarocks-3' branch of the standard LuaRocks git repo. " "the 'luarocks-3' branch of the standard LuaRocks git repo. "
"Note that Lua 5.2 is not supported in LuaRocks 2.0.8 " "Note that Lua 5.2 is not supported in LuaRocks 2.0.8 "