Fixed some diagnostics warnings

Moved examples to tofix because fixing them is besides the point right
now.
This commit is contained in:
Dawid Sobczak 2023-09-19 11:42:10 +01:00
parent 52164c82e3
commit 858fe11666
166 changed files with 68 additions and 264 deletions

View file

@ -0,0 +1,32 @@
package = "LPegLabel"
version = "0.12.2-1"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v0.12.2.tar.gz",
tag = "v0.12.2",
dir = "lpeglabel-0.12.2",
}
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.
Labels can be used to signal different kinds of erros and to specify which
alternative in a labeled ordered choice should handle a given label.
Labels can also be combined with the standard patterns of LPeg.
]],
homepage = "https://github.com/sqmedeiros/lpeglabel/",
maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.2",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
},
relabel = "relabel.lua"
}
}

View file

@ -0,0 +1,32 @@
package = "LPegLabel"
version = "0.12.2-2"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v0.12.2-2.tar.gz",
tag = "v0.12.2-2",
dir = "lpeglabel-0.12.2-2",
}
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.
Labels can be used to signal different kinds of erros and to specify which
alternative in a labeled ordered choice should handle a given label.
Labels can also be combined with the standard patterns of LPeg.
]],
homepage = "https://github.com/sqmedeiros/lpeglabel/",
maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
},
relabel = "relabel.lua"
}
}

View file

@ -0,0 +1,32 @@
package = "LPegLabel"
version = "1.0.0-1"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.0.0-1.tar.gz",
tag = "v1.0.0-1",
dir = "lpeglabel-1.0.0-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.
Labels can be used to signal different kinds of erros and to specify which
alternative in a labeled ordered choice should handle a given label.
Labels can also be combined with the standard patterns of LPeg.
]],
homepage = "https://github.com/sqmedeiros/lpeglabel/",
maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
},
relabel = "relabel.lua"
}
}

View file

@ -0,0 +1,32 @@
package = "LPegLabel"
version = "1.1.0-1"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.1.0-1.tar.gz",
tag = "v1.1.0-1",
dir = "lpeglabel-1.1.0-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.
Labels can be used to signal different kinds of erros and to specify which
which recovery pattern should handle a given label.
Labels can also be combined with the standard patterns of LPeg.
]],
homepage = "https://github.com/sqmedeiros/lpeglabel/",
maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
},
relabel = "relabel.lua"
}
}

View file

@ -0,0 +1,32 @@
package = "LPegLabel"
version = "1.2.0-1"
source = {
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.2.0-1.tar.gz",
tag = "v1.2.0-1",
dir = "lpeglabel-1.2.0-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.
Labels can be used to signal different kinds of erros and to specify which recovery
pattern should handle 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 <sqmedeiros@gmail.com>",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
lpeglabel = {
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
},
relabel = "relabel.lua"
}
}