From 5ffde8ae511e62d7e821c07da53e201ed8efc5f4 Mon Sep 17 00:00:00 2001 From: Fabio Mascarenhas Date: Tue, 20 Oct 2009 18:54:02 -0200 Subject: packaging for version 1.5.0 --- README | 18 +++++------------- doc/us/index.html | 12 +++++++----- rockspecs/luafilesystem-1.5.0-1.rockspec | 27 +++++++++++++++++++++++++++ 3 files changed, 39 insertions(+), 18 deletions(-) create mode 100644 rockspecs/luafilesystem-1.5.0-1.rockspec diff --git a/README b/README index 788aac6..0103efa 100644 --- a/README +++ b/README @@ -14,26 +14,18 @@ LuaRocks Installation --------------------- luarocks install luafilesystem -Unix Installation ------------------ -To install on Linux/OSX/BSD, please edit the config file and then call - -make -make install - -The last step may require root privileges. - -Windows Installation --------------------- -To install on Windows, please copy lfs.dll to your package.cpath directory Documentation ------------- -Please check the documentation at /doc/us/ for more information. +Please check the documentation at doc/us/ for more information. History ------- +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] * fixed bug [#13198] lfs.attributes(filename, 'size') overflow on files > 2 Gb again (bug report and patch by KUBO Takehiro). diff --git a/doc/us/index.html b/doc/us/index.html index 374fe3e..43edefc 100644 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -71,19 +71,21 @@ the underlying directory structure and file attributes.

Status

-

Current version is 1.4.2. It was developed for Lua 5.1.

+

Current version is 1.5.0. It was developed for Lua 5.1.

Download

LuaFileSystem source can be downloaded from its -Lua Forge -page. If you are using -LuaBinaries a Windows binary -version of LuaFileSystem (compiled with Visual Studio 2005 Express) can be found at the same LuaForge page.

+Github +page.

History

+
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.5.0-1.rockspec b/rockspecs/luafilesystem-1.5.0-1.rockspec new file mode 100644 index 0000000..1170ad2 --- /dev/null +++ b/rockspecs/luafilesystem-1.5.0-1.rockspec @@ -0,0 +1,27 @@ +package = "LuaFileSystem" + +version = "1.5.0-1" + +source = { + url = "http://cloud.github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.5.0.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 = "module", + modules = { lfs = "src/lfs.c" }, + copy_directories = { "doc", "tests" } +} -- cgit v1.2.3-55-g6feb