prepare for 1.0 release.

pull/10/head v1.0
Robert G. Jakabosky 15 years ago
parent 2df2e1eae3
commit 96b76af120

@ -0,0 +1,28 @@
package = "lua-zmq"
version = "1.0-1"
source = {
url = "git://github.com/Neopallium/lua-zmq.git",
branch = "v1.0",
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
zmq = {
sources = {"src/pre_generated-zmq.nobj.c"},
libraries = {"zmq"},
},
},
install = {
lua = {
['zmq.poller'] = "src/poller.lua",
}
}
}

@ -1,27 +1,27 @@
package = "lua-zmq"
version = "scm-1"
source = {
url = "git://github.com/Neopallium/lua-zmq.git"
url = "git://github.com/Neopallium/lua-zmq.git",
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11"
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1"
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
zmq = {
sources = {"src/pre_generated-zmq.nobj.c"},
libraries = {"zmq"}
}
libraries = {"zmq"},
},
},
install = {
lua = {
['zmq.poller'] = "src/poller.lua",
}
}
},
},
}

@ -0,0 +1,22 @@
package = "lua-zmq-threads"
version = "1.0-1"
source = {
url = "git://github.com/Neopallium/lua-zmq.git"
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11"
}
dependencies = {
"lua-zmq",
"lua-llthreads",
}
build = {
type = "none",
install = {
lua = {
['zmq.threads'] = "src/threads.lua",
}
}
}

@ -1,12 +1,12 @@
package = "lua-zmq-threads"
version = "scm-0"
source = {
url = "git://github.com/Neopallium/lua-zmq.git"
url = "git://github.com/Neopallium/lua-zmq.git",
}
description = {
summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.",
homepage = "http://github.com/Neopallium/lua-zmq",
license = "MIT/X11"
license = "MIT/X11",
}
dependencies = {
"lua-zmq",
@ -17,6 +17,6 @@ build = {
install = {
lua = {
['zmq.threads'] = "src/threads.lua",
}
}
},
},
}

Loading…
Cancel
Save