Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Fleutot2014-03-21 08:45:29 +0000
committerFabien Fleutot2014-03-21 08:45:29 +0000
commitadaea18f0382c7e48fdcea8b1bfb680f16eb238d (patch)
tree32e5630cf6d94ba4db996310f429142b92cc4aa5
parent6ea10dad44c23e14ecd3bd55fac29b3efaf750d2 (diff)
downloadorg.eclipse.metalua-adaea18f0382c7e48fdcea8b1bfb680f16eb238d.tar.gz
org.eclipse.metalua-adaea18f0382c7e48fdcea8b1bfb680f16eb238d.tar.xz
org.eclipse.metalua-adaea18f0382c7e48fdcea8b1bfb680f16eb238d.zip
relaxed lua version requirements in metalua-parser rockspec
-rw-r--r--metalua-parser-0.7.3-2.rockspec38
1 files changed, 38 insertions, 0 deletions
diff --git a/metalua-parser-0.7.3-2.rockspec b/metalua-parser-0.7.3-2.rockspec
new file mode 100644
index 0000000..f89f26b
--- /dev/null
+++ b/metalua-parser-0.7.3-2.rockspec
@@ -0,0 +1,38 @@
+--*-lua-*--
+package = "metalua-parser"
+version = "0.7.3-1"
+source = {
+ url = "http://git.eclipse.org/c/koneki/org.eclipse.koneki.metalua.git/snapshot/org.eclipse.koneki.metalua-v0.7.3.tar.gz"
+}
+description = {
+ summary = "Metalua's parser: converting Lua source strings and files into AST",
+ detailed = [[
+ This is a subset of the full Metalua compiler. It defines and generates an AST
+ format for Lua programs, which offers a nice level of abstraction to reason about
+ and manipulate Lua programs.
+ ]],
+ homepage = "http://git.eclipse.org/c/koneki/org.eclipse.koneki.metalua.git",
+ license = "EPL + MIT"
+}
+dependencies = {
+ "lua >= 5.1"
+}
+build = {
+ type="builtin",
+ modules={
+ ["metalua.grammar.generator"] = "metalua/grammar/generator.lua",
+ ["metalua.grammar.lexer"] = "metalua/grammar/lexer.lua",
+ ["metalua.compiler.parser"] = "metalua/compiler/parser.lua",
+ ["metalua.compiler.parser.table"] = "metalua/compiler/parser/table.lua",
+ ["metalua.compiler.parser.ext"] = "metalua/compiler/parser/ext.lua",
+ ["metalua.compiler.parser.annot.generator"] = "metalua/compiler/parser/annot/generator.lua",
+ ["metalua.compiler.parser.annot.grammar"] = "metalua/compiler/parser/annot/grammar.lua",
+ ["metalua.compiler.parser.stat"] = "metalua/compiler/parser/stat.lua",
+ ["metalua.compiler.parser.misc"] = "metalua/compiler/parser/misc.lua",
+ ["metalua.compiler.parser.lexer"] = "metalua/compiler/parser/lexer.lua",
+ ["metalua.compiler.parser.meta"] = "metalua/compiler/parser/meta.lua",
+ ["metalua.compiler.parser.expr"] = "metalua/compiler/parser/expr.lua",
+ ["metalua.compiler"] = "metalua/compiler.lua",
+ ["metalua.pprint"] = "metalua/pprint.lua",
+ }
+}

Back to the top