From 2238060cdc223374f76f465eb184e7d248876634 Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Fri, 7 Feb 2014 16:58:05 +0400 Subject: Fix. rockspec name --- rockspecs/ lua-llthreads2-0.1.1-1.rockspec | 44 ------------------------------ rockspecs/lua-llthreads2-0.1.1-1.rockspec | 44 ++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 44 deletions(-) delete mode 100644 rockspecs/ lua-llthreads2-0.1.1-1.rockspec create mode 100644 rockspecs/lua-llthreads2-0.1.1-1.rockspec diff --git a/rockspecs/ lua-llthreads2-0.1.1-1.rockspec b/rockspecs/ lua-llthreads2-0.1.1-1.rockspec deleted file mode 100644 index af74686..0000000 --- a/rockspecs/ lua-llthreads2-0.1.1-1.rockspec +++ /dev/null @@ -1,44 +0,0 @@ -package = "lua-llthreads2" -version = "0.1.1-1" -source = { - url = "https://github.com/moteus/lua-llthreads2/archive/v0.1.1.zip", - dir = "lua-llthreads2-0.1.1", -} -description = { - summary = "Low-Level threads for Lua", - homepage = "http://github.com/moteus/lua-llthreads2", - license = "MIT/X11", - detailed = [[ - This is drop-in replacement for `lua-llthread` module but the module called `llthreads2`. - In additional module supports: thread join with zero timeout; logging thread errors with - custom logger; run detached joinable threads; pass cfunctions as argument to child thread. - ]], -} -dependencies = { - "lua >= 5.1, < 5.3", -} -build = { - type = "builtin", - platforms = { - unix = { - modules = { - llthreads2 = { - libraries = {"pthread"}, - } - } - }, - windows = { - modules = { - llthreads2 = { - libraries = {"kernel32"}, - } - } - } - }, - modules = { - llthreads2 = { - sources = { "src/l52util.c", "src/llthread.c" }, - defines = { "LLTHREAD_MODULE_NAME=llthreads2" }, - } - } -} \ No newline at end of file diff --git a/rockspecs/lua-llthreads2-0.1.1-1.rockspec b/rockspecs/lua-llthreads2-0.1.1-1.rockspec new file mode 100644 index 0000000..af74686 --- /dev/null +++ b/rockspecs/lua-llthreads2-0.1.1-1.rockspec @@ -0,0 +1,44 @@ +package = "lua-llthreads2" +version = "0.1.1-1" +source = { + url = "https://github.com/moteus/lua-llthreads2/archive/v0.1.1.zip", + dir = "lua-llthreads2-0.1.1", +} +description = { + summary = "Low-Level threads for Lua", + homepage = "http://github.com/moteus/lua-llthreads2", + license = "MIT/X11", + detailed = [[ + This is drop-in replacement for `lua-llthread` module but the module called `llthreads2`. + In additional module supports: thread join with zero timeout; logging thread errors with + custom logger; run detached joinable threads; pass cfunctions as argument to child thread. + ]], +} +dependencies = { + "lua >= 5.1, < 5.3", +} +build = { + type = "builtin", + platforms = { + unix = { + modules = { + llthreads2 = { + libraries = {"pthread"}, + } + } + }, + windows = { + modules = { + llthreads2 = { + libraries = {"kernel32"}, + } + } + } + }, + modules = { + llthreads2 = { + sources = { "src/l52util.c", "src/llthread.c" }, + defines = { "LLTHREAD_MODULE_NAME=llthreads2" }, + } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb