From 944e325e2930a19ed7783816def8cd94508a15f8 Mon Sep 17 00:00:00 2001 From: Fabio Mascarenhas Date: Mon, 1 Oct 2012 15:57:09 -0300 Subject: [PATCH] fix build for Lua 5.2; version 1.6.1 --- README | 3 +++ doc/us/index.html | 9 ++++++++ rockspecs/luafilesystem-1.6.1-1.rockspec | 27 ++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 rockspecs/luafilesystem-1.6.1-1.rockspec diff --git a/README b/README index 6610243..c1fe6c7 100644 --- a/README +++ b/README @@ -22,6 +22,9 @@ Please check the documentation at doc/us/ for more information. History ------- +Version 1.6.1 [01/Oct/2012] + * fix build for Lua 5.2 + Version 1.6.0 [26/Sep/2012] * getcwd fix for Android * support for Lua 5.2 diff --git a/doc/us/index.html b/doc/us/index.html index 6d7072b..1046bd9 100644 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -83,16 +83,25 @@ page.

History

+
Version 1.6.1 [01/Oct/2012]
+
    +
  • fix build for Lua 5.2
  • +
+
Version 1.6.0 [26/Sep/2012]
+
  • getcwd fix for Android
  • support for Lua 5.2
  • add lfs.link
  • other bug fixes
  • +
Version 1.5.0 [20/Oct/2009]
+
  • Added explicit next and close methods to second return value of lfs.dir (the directory object), for explicit iteration or explicit closing.
  • Added directory locking via lfs.lock_dir function (see the manual).
  • +
Version 1.4.2 [03/Feb/2009]
    diff --git a/rockspecs/luafilesystem-1.6.1-1.rockspec b/rockspecs/luafilesystem-1.6.1-1.rockspec new file mode 100644 index 0000000..7f45e33 --- /dev/null +++ b/rockspecs/luafilesystem-1.6.1-1.rockspec @@ -0,0 +1,27 @@ +package = "LuaFileSystem" + +version = "1.6.1-1" + +source = { + url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.1.tar.gz", +} + +description = { + summary = "File System Library for the Lua Programming Language", + detailed = [[ + LuaFileSystem is a Lua library developed to complement the set of + functions related to file systems offered by the standard Lua + distribution. LuaFileSystem offers a portable way to access the + underlying directory structure and file attributes. + ]] +} + +dependencies = { + "lua >= 5.1" +} + +build = { + type = "builtin", + modules = { lfs = "src/lfs.c" }, + copy_directories = { "doc", "tests" } +}