aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2012-08-22 21:35:08 +0200
committerBenoit Germain <bnt.germain@gmail.com>2012-08-22 21:35:08 +0200
commita9075ff6cf43e99cee994f5e77d0e1e54cb8dbac (patch)
tree14c941dc9bf58faacb848844b4867b66b386e9dd
parente24c665da149689a174f7aa62c0842de3180461c (diff)
downloadlanes-a9075ff6cf43e99cee994f5e77d0e1e54cb8dbac.tar.gz
lanes-a9075ff6cf43e99cee994f5e77d0e1e54cb8dbac.tar.bz2
lanes-a9075ff6cf43e99cee994f5e77d0e1e54cb8dbac.zip
lanes version 3.2.0
* keeper internals implemented in C instead of Lua for better performances * fixed arguments checks in linda:limit() and linda:set()
-rw-r--r--lanes-3.1.6-1.rockspec55
1 files changed, 0 insertions, 55 deletions
diff --git a/lanes-3.1.6-1.rockspec b/lanes-3.1.6-1.rockspec
deleted file mode 100644
index 68eca58..0000000
--- a/lanes-3.1.6-1.rockspec
+++ /dev/null
@@ -1,55 +0,0 @@
1--
2-- Lanes rockspec
3--
4-- Ref:
5-- <http://luarocks.org/en/Rockspec_format>
6--
7
8package = "Lanes"
9
10version = "3.1.6-1"
11
12source= {
13 url= "git://github.com/LuaLanes/lanes.git",
14 branch= "v3.1.6"
15}
16
17description = {
18 summary= "Multithreading support for Lua",
19 detailed= [[
20 Lua Lanes is a portable, message passing multithreading library
21 providing the possibility to run multiple Lua states in parallel.
22 ]],
23 license= "MIT/X11",
24 homepage="https://github.com/LuaLanes/lanes",
25 maintainer="Benoit Germain <bnt.germain@gmail.com>"
26}
27
28-- Q: What is the difference of "windows" and "win32"? Seems there is none;
29-- so should we list either one or both?
30--
31supported_platforms= { "win32",
32 "macosx",
33 "linux",
34 "freebsd", -- TBD: not tested
35 "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?)
36}
37
38dependencies= {
39 "lua >= 5.1", -- builds with either 5.1 and 5.2
40}
41
42build = {
43 type = "builtin",
44 modules =
45 {
46 ["lanes.core"] =
47 {
48 sources = { "src/lanes.c", "src/keeper.c", "src/tools.c", "src/threading.c"},
49 incdirs = { "src"},
50 },
51 lanes = "src/lanes.lua",
52 ["lanes-keeper"] = "src/lanes-keeper.lua"
53 }
54}
55