From 67e5f4ff685bee3fa381db6f50be3506ad0b5e76 Mon Sep 17 00:00:00 2001 From: Oscar Lim Date: Sun, 10 Apr 2016 00:27:59 -0700 Subject: Release v0.1.1 --- luasystem-0.1.0-0.rockspec | 47 ---------------------------------------------- luasystem-0.1.1-0.rockspec | 47 ++++++++++++++++++++++++++++++++++++++++++++++ src/core.c | 2 +- 3 files changed, 48 insertions(+), 48 deletions(-) delete mode 100644 luasystem-0.1.0-0.rockspec create mode 100644 luasystem-0.1.1-0.rockspec diff --git a/luasystem-0.1.0-0.rockspec b/luasystem-0.1.0-0.rockspec deleted file mode 100644 index a1a322f..0000000 --- a/luasystem-0.1.0-0.rockspec +++ /dev/null @@ -1,47 +0,0 @@ -package = 'luasystem' -version = '0.1.0-0' -source = { - url = "https://github.com/o-lim/luasystem/archive/v0.1.0.tar.gz", - dir = "luasystem-0.1.0" -} -description = { - summary = 'Platform independent system calls for Lua.', - detailed = [[ - Adds a Lua API for making platform independent system calls. - ]], - homepage = 'http://olivinelabs.com/luasystem/', - license = 'MIT ' -} -dependencies = { - 'lua >= 5.1', -} - -local function make_platform(plat) - local defines = { - unix = { }, - macosx = { }, - win32 = { }, - mingw32 = { "WINVER=0x0501" }, - } - return { - modules = { - ['system.core'] = { - sources = { 'src/core.c', 'src/compat.c', 'src/time.c', }, - defines = defines[plat], - }, - }, - } -end - -build = { - type = 'builtin', - platforms = { - unix = make_platform('unix'), - macosx = make_platform('macosx'), - win32 = make_platform('win32'), - mingw32 = make_platform('mingw32'), - }, - modules = { - ['system.init'] = 'system/init.lua', - }, -} diff --git a/luasystem-0.1.1-0.rockspec b/luasystem-0.1.1-0.rockspec new file mode 100644 index 0000000..40c8b74 --- /dev/null +++ b/luasystem-0.1.1-0.rockspec @@ -0,0 +1,47 @@ +package = 'luasystem' +version = '0.1.1-0' +source = { + url = "https://github.com/o-lim/luasystem/archive/v0.1.1.tar.gz", + dir = "luasystem-0.1.1" +} +description = { + summary = 'Platform independent system calls for Lua.', + detailed = [[ + Adds a Lua API for making platform independent system calls. + ]], + homepage = 'http://olivinelabs.com/luasystem/', + license = 'MIT ' +} +dependencies = { + 'lua >= 5.1', +} + +local function make_platform(plat) + local defines = { + unix = { }, + macosx = { }, + win32 = { }, + mingw32 = { "WINVER=0x0501" }, + } + return { + modules = { + ['system.core'] = { + sources = { 'src/core.c', 'src/compat.c', 'src/time.c', }, + defines = defines[plat], + }, + }, + } +end + +build = { + type = 'builtin', + platforms = { + unix = make_platform('unix'), + macosx = make_platform('macosx'), + win32 = make_platform('win32'), + mingw32 = make_platform('mingw32'), + }, + modules = { + ['system.init'] = 'system/init.lua', + }, +} diff --git a/src/core.c b/src/core.c index 31e768b..c35fba5 100644 --- a/src/core.c +++ b/src/core.c @@ -1,7 +1,7 @@ #include #include -#define LUASYSTEM_VERSION "LuaSystem 0.1.0" +#define LUASYSTEM_VERSION "LuaSystem 0.1.1" #ifdef _WIN32 #define LUAEXPORT __declspec(dllexport) -- cgit v1.2.3-55-g6feb