Skip to content

Commit

Permalink
Preparing files to release 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sqmedeiros committed May 2, 2023
1 parent e25eb35 commit 912b0b9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions rockspecs/lpeglabel-1.6.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package = "LPegLabel"
version = "1.6.2-1"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.6.2-1.tar.gz",
tag = "v1.6.2-1",
dir = "lpeglabel-1.6.2-1",
}
description = {
summary = "Parsing Expression Grammars For Lua with Labeled Failures",
detailed = [[
LPegLabel is a conservative extension of the LPeg library that provides
an implementation of Parsing Expression Grammars (PEGs) with labeled failures.
By using labeled failures we can properly report syntactical errors.
We can also recover from such errors by describing a grammar rule with
the same name of a given label.
LPegLabel also reports the farthest failure position in case of an ordinary failure.
]],
homepage = "https://github.com/sqmedeiros/lpeglabel/",
maintainer = "Sergio Medeiros <[email protected]>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lplcap.c", "lplcode.c", "lplprint.c", "lpltree.c", "lplvm.c"
},
relabel = "relabel.lua"
}
}

0 comments on commit 912b0b9

Please sign in to comment.