aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2018-11-15 09:25:07 +0100
committerBenoit Germain <bnt.germain@gmail.com>2018-11-15 09:25:07 +0100
commit55acf8e19728ac39581c35f1324debf9449bd185 (patch)
treec1e8b5732be0d226c457bc7d2b27b6274163be82
parentf087dfe25d093b1cb1665d12dc5a039f29f3af11 (diff)
downloadlanes-55acf8e19728ac39581c35f1324debf9449bd185.tar.gz
lanes-55acf8e19728ac39581c35f1324debf9449bd185.tar.bz2
lanes-55acf8e19728ac39581c35f1324debf9449bd185.zip
rockspec for version v3.13.0
-rw-r--r--CHANGES4
-rw-r--r--lanes-3.13.0-0.rockspec66
2 files changed, 70 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 893bfc5..1025484 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
1CHANGES: 1CHANGES:
2 2
3CHANGE 136: BGe 15-Nov-18
4 * split linda code in a separate file
5 * rockspec for version v3.13.0
6
3CHANGE 135: BGe 11-Nov-18 7CHANGE 135: BGe 11-Nov-18
4 * fix a bunch of compilation warnings 8 * fix a bunch of compilation warnings
5 9
diff --git a/lanes-3.13.0-0.rockspec b/lanes-3.13.0-0.rockspec
new file mode 100644
index 0000000..fca228a
--- /dev/null
+++ b/lanes-3.13.0-0.rockspec
@@ -0,0 +1,66 @@
1--
2-- Lanes rockspec
3--
4-- Ref:
5-- <http://luarocks.org/en/Rockspec_format>
6--
7
8package = "Lanes"
9
10version = "3.13.0-0"
11
12source= {
13 url= "git://github.com/LuaLanes/lanes.git",
14 branch= "v3.13.0"
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, 5.2 and 5.3
40}
41
42build = {
43 type = "builtin",
44 platforms =
45 {
46 linux =
47 {
48 modules =
49 {
50 ["lanes.core"] =
51 {
52 libraries = "pthread"
53 },
54 }
55 }
56 },
57 modules =
58 {
59 ["lanes.core"] =
60 {
61 sources = { "src/compat.c", "src/deep.c", "src/lanes.c", "src/linda.c", "src/keeper.c", "src/tools.c", "src/threading.c", "src/universe.c"},
62 incdirs = { "src"},
63 },
64 lanes = "src/lanes.lua"
65 }
66}