diff --git a/jsregexp-0.0.6-2.rockspec b/jsregexp-0.0.6-2.rockspec deleted file mode 100644 index b66ac72..0000000 --- a/jsregexp-0.0.6-2.rockspec +++ /dev/null @@ -1,25 +0,0 @@ -package = "jsregexp" -version = "0.0.6-2" -source = { - url = "git://github.com/kmarius/jsregexp.git", - branch = "master", - tag = "v0.0.6" -} -description = { - summary = "javascript (ECMA19) regular expressions for lua", - detailed = [[ -WIP: This library offers a single function to use javascript regular expressions in lua. It makes use of libregexp from https://bellard.org/quickjs/. - ]], - homepage = "https://github.com/kmarius/jsregexp", - license = "MIT" -} -dependencies = {"lua >= 5.1"} -build = { - type = "builtin", - modules = { - ["jsregexp.core"] = { - "jsregexp.c", "libregexp/cutils.c", "libregexp/libregexp.c", "libregexp/libunicode.c" - }, - jsregexp = "jsregexp.lua" - } -} diff --git a/jsregexp-0.0.7-1.rockspec b/jsregexp-0.0.7-1.rockspec new file mode 100644 index 0000000..b71a9d9 --- /dev/null +++ b/jsregexp-0.0.7-1.rockspec @@ -0,0 +1,28 @@ +package = "jsregexp" +version = "0.0.7-1" +source = { + url = "git://github.com/kmarius/jsregexp.git", + branch = "master", + tag = "v0.0.7", +} +description = { + summary = "javascript (ECMA19) regular expressions for lua", + detailed = [[ +WIP: This library offers a single function to use javascript regular expressions in lua. It makes use of libregexp from https://bellard.org/quickjs/. + ]], + homepage = "https://github.com/kmarius/jsregexp", + license = "MIT", +} +dependencies = { "lua >= 5.1" } +build = { + type = "builtin", + modules = { + ["jsregexp.core"] = { + "jsregexp.c", + "libregexp/cutils.c", + "libregexp/libregexp.c", + "libregexp/libunicode.c", + }, + jsregexp = "jsregexp.lua", + }, +}