From ce2a44c40877f0ceda5ffa14ca11fe0776dce9ac Mon Sep 17 00:00:00 2001 From: "Robert G. Jakabosky" Date: Tue, 9 Aug 2011 03:37:05 -0700 Subject: [PATCH] Prepare 1.1 release. --- rockspecs/lua-zmq-1.1-1.rockspec | 36 ++++++++++++++++++++++++ rockspecs/lua-zmq-threads-1.1-1.rockspec | 23 +++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 rockspecs/lua-zmq-1.1-1.rockspec create mode 100644 rockspecs/lua-zmq-threads-1.1-1.rockspec diff --git a/rockspecs/lua-zmq-1.1-1.rockspec b/rockspecs/lua-zmq-1.1-1.rockspec new file mode 100644 index 0000000..07d3788 --- /dev/null +++ b/rockspecs/lua-zmq-1.1-1.rockspec @@ -0,0 +1,36 @@ +package = "lua-zmq" +version = "1.1-1" +source = { + url = "git://github.com/Neopallium/lua-zmq.git", + branch = "v1.1", +} +description = { + summary = "Lua bindings to zeromq2, with LuaJIT2 FFI support.", + homepage = "http://github.com/Neopallium/lua-zmq", + license = "MIT/X11", +} +dependencies = { + "lua >= 5.1", +} +external_dependencies = { + ZEROMQ = { + header = "zmq.h", + library = "zmq", + } +} +build = { + type = "builtin", + modules = { + zmq = { + sources = {"src/pre_generated-zmq.nobj.c"}, + incdirs = "$(ZEROMQ_INCDIR)", + libdirs = "$(ZEROMQ_LIBDIR)", + libraries = {"zmq"}, + }, + }, + install = { + lua = { + ['zmq.poller'] = "src/poller.lua", + } + } +} diff --git a/rockspecs/lua-zmq-threads-1.1-1.rockspec b/rockspecs/lua-zmq-threads-1.1-1.rockspec new file mode 100644 index 0000000..0da8cff --- /dev/null +++ b/rockspecs/lua-zmq-threads-1.1-1.rockspec @@ -0,0 +1,23 @@ +package = "lua-zmq-threads" +version = "1.1-1" +source = { + url = "git://github.com/Neopallium/lua-zmq.git", + branch = "v1.1", +} +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", + } + } +}