From ccd465a1c7c7257e85eb04fcc6767b38e794dbbe Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 27 Jun 2012 14:02:57 +0200 Subject: * discard old rockspecs --- lanes-2.0-11.rockspec | 96 ------------------------------------------------ lanes-2.1-0.rockspec | 97 ------------------------------------------------- lanes-3.0-beta.rockspec | 97 ------------------------------------------------- lanes-3.0.0-1.rockspec | 97 ------------------------------------------------- lanes-3.1.0-1.rockspec | 91 ---------------------------------------------- lanes-3.1.1.rockspec | 91 ---------------------------------------------- lanes-3.1.2.rockspec | 91 ---------------------------------------------- lanes-3.1.3.rockspec | 91 ---------------------------------------------- 8 files changed, 751 deletions(-) delete mode 100644 lanes-2.0-11.rockspec delete mode 100644 lanes-2.1-0.rockspec delete mode 100644 lanes-3.0-beta.rockspec delete mode 100644 lanes-3.0.0-1.rockspec delete mode 100644 lanes-3.1.0-1.rockspec delete mode 100644 lanes-3.1.1.rockspec delete mode 100644 lanes-3.1.2.rockspec delete mode 100644 lanes-3.1.3.rockspec diff --git a/lanes-2.0-11.rockspec b/lanes-2.0-11.rockspec deleted file mode 100644 index a5e7d3a..0000000 --- a/lanes-2.0-11.rockspec +++ /dev/null @@ -1,96 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- --- History: --- BGe 27-Jan-2011: 2.0.11 (see CHANGES) --- AKa 1-Sep-2008: 2.0-2 (NOT sent to list): fixed VC++ not finding DLL issue --- AKa 20-Aug-2008: 2.0-1 sent to luarocks-developers --- - -package = "Lanes" - -version = "2.0-11" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v2.0.11" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua >= 5.1, <= 5.2", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-2.1-0.rockspec b/lanes-2.1-0.rockspec deleted file mode 100644 index a8ff1d2..0000000 --- a/lanes-2.1-0.rockspec +++ /dev/null @@ -1,97 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- --- History: --- BGe 1-Mar-2011: 2.1.0 --- BGe 27-Jan-2011: 2.0.11 (see CHANGES) --- AKa 1-Sep-2008: 2.0-2 (NOT sent to list): fixed VC++ not finding DLL issue --- AKa 20-Aug-2008: 2.0-1 sent to luarocks-developers --- - -package = "Lanes" - -version = "2.1-0" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v2.1.0" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua >= 5.1, <= 5.2", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.0-beta.rockspec b/lanes-3.0-beta.rockspec deleted file mode 100644 index 8f10ef4..0000000 --- a/lanes-3.0-beta.rockspec +++ /dev/null @@ -1,97 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- --- History: --- BGe 1-Mar-2011: 2.1.0 --- BGe 27-Jan-2011: 2.0.11 (see CHANGES) --- AKa 1-Sep-2008: 2.0-2 (NOT sent to list): fixed VC++ not finding DLL issue --- AKa 20-Aug-2008: 2.0-1 sent to luarocks-developers --- - -package = "Lanes" - -version = "3.0-beta" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.0-beta" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua >= 5.1, <= 5.2", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.0.0-1.rockspec b/lanes-3.0.0-1.rockspec deleted file mode 100644 index 1e090d5..0000000 --- a/lanes-3.0.0-1.rockspec +++ /dev/null @@ -1,97 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- --- History: --- BGe 1-Mar-2011: 2.1.0 --- BGe 27-Jan-2011: 2.0.11 (see CHANGES) --- AKa 1-Sep-2008: 2.0-2 (NOT sent to list): fixed VC++ not finding DLL issue --- AKa 20-Aug-2008: 2.0-1 sent to luarocks-developers --- - -package = "Lanes" - -version = "3.0.0-1" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.0.0" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua >= 5.1, <= 5.2", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.1.0-1.rockspec b/lanes-3.1.0-1.rockspec deleted file mode 100644 index 98bbbf5..0000000 --- a/lanes-3.1.0-1.rockspec +++ /dev/null @@ -1,91 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- - -package = "Lanes" - -version = "3.1.0-1" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.1.0" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua >= 5.1, <= 5.2", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.1.1.rockspec b/lanes-3.1.1.rockspec deleted file mode 100644 index 1b06384..0000000 --- a/lanes-3.1.1.rockspec +++ /dev/null @@ -1,91 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- - -package = "Lanes" - -version = "3.1.1-1" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.1.1" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua = 5.1", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.1.2.rockspec b/lanes-3.1.2.rockspec deleted file mode 100644 index a184efe..0000000 --- a/lanes-3.1.2.rockspec +++ /dev/null @@ -1,91 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- - -package = "Lanes" - -version = "3.1.2-1" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.1.2" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua = 5.1", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - diff --git a/lanes-3.1.3.rockspec b/lanes-3.1.3.rockspec deleted file mode 100644 index 04c50e4..0000000 --- a/lanes-3.1.3.rockspec +++ /dev/null @@ -1,91 +0,0 @@ --- --- Lanes rockspec --- --- Ref: --- --- - -package = "Lanes" - -version = "3.1.3-1" - -source= { - url= "git://github.com/LuaLanes/lanes.git", - branch= "v3.1.3" -} - -description = { - summary= "Multithreading support for Lua", - detailed= [[ - Lua Lanes is a portable, message passing multithreading library - providing the possibility to run multiple Lua states in parallel. - ]], - license= "MIT/X11", - homepage="http://kotisivu.dnainternet.net/askok/lanes/", - maintainer="Benoit Germain " -} - --- Q: What is the difference of "windows" and "win32"? Seems there is none; --- so should we list either one or both? --- -supported_platforms= { "win32", - "macosx", - "linux", - "freebsd", -- TBD: not tested - "msys", -- TBD: not supported by LuaRocks 1.0 (or is it?) -} - -dependencies= { - "lua = 5.1", -} - --- --- Non-Win32: build using the Makefile --- Win32: build using 'make-vc.cmd' and "manual" copy of products --- --- TBD: How is MSYS treated? We'd like (really) it to use the Makefile. --- It should be a target like "cygwin", not defining "windows". --- "windows" should actually guarantee Visual C++ as the compiler. --- --- Q: Does "win32" guarantee we have Visual C++ 2005/2008 command line tools? --- --- Note: Cannot use the simple "module" build type, because we need to precompile --- 'src/keeper.lua' -> keeper.lch and bake it into lanes.c. --- -build = { - - -- Win32 (Visual C++) uses 'make-vc.cmd' for building - -- - platforms= { - windows= { - type= "command", - build_command= "make-vc.cmd", - install= { - lua = { "src/lanes.lua" }, - lib = { "lua51-lanes.dll" } - } - } - }, - - -- Other platforms use the Makefile - -- - -- LuaRocks defines CFLAGS, LIBFLAG and LUA_INCDIR for 'make rock', - -- defines LIBDIR, LUADIR for 'make install' - -- - -- Ref: - -- - type = "make", - - build_target = "rock", - build_variables= { - CFLAGS= "$(CFLAGS) -I$(LUA_INCDIR)", - LIBFLAG= "$(LIBFLAG)", - }, - - install_target = "install", - install_variables= { - LUA_LIBDIR= "$(LIBDIR)", - LUA_SHAREDIR= "$(LUADIR)", - } -} - -- cgit v1.2.3-55-g6feb