diff options
| author | Fabio Mascarenhas <mascarenhas@acm.org> | 2012-10-01 15:57:09 -0300 |
|---|---|---|
| committer | Fabio Mascarenhas <mascarenhas@acm.org> | 2012-10-01 15:57:09 -0300 |
| commit | 944e325e2930a19ed7783816def8cd94508a15f8 (patch) | |
| tree | 0c609305c2e249f1d07d1108bf2448fba843cfc9 | |
| parent | 201d18a4977a9d74ec18480bcd7a269a5bd47596 (diff) | |
| download | luafilesystem-944e325e2930a19ed7783816def8cd94508a15f8.tar.gz luafilesystem-944e325e2930a19ed7783816def8cd94508a15f8.tar.bz2 luafilesystem-944e325e2930a19ed7783816def8cd94508a15f8.zip | |
fix build for Lua 5.2; version 1.6.1
| -rw-r--r-- | README | 3 | ||||
| -rw-r--r-- | doc/us/index.html | 9 | ||||
| -rw-r--r-- | rockspecs/luafilesystem-1.6.1-1.rockspec | 27 |
3 files changed, 39 insertions, 0 deletions
| @@ -22,6 +22,9 @@ Please check the documentation at doc/us/ for more information. | |||
| 22 | History | 22 | History |
| 23 | ------- | 23 | ------- |
| 24 | 24 | ||
| 25 | Version 1.6.1 [01/Oct/2012] | ||
| 26 | * fix build for Lua 5.2 | ||
| 27 | |||
| 25 | Version 1.6.0 [26/Sep/2012] | 28 | Version 1.6.0 [26/Sep/2012] |
| 26 | * getcwd fix for Android | 29 | * getcwd fix for Android |
| 27 | * support for Lua 5.2 | 30 | * 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.</p> | |||
| 83 | <h2><a name="history"></a>History</h2> | 83 | <h2><a name="history"></a>History</h2> |
| 84 | 84 | ||
| 85 | <dl class="history"> | 85 | <dl class="history"> |
| 86 | <dt><strong>Version 1.6.1</strong> [01/Oct/2012]</dt> | ||
| 87 | <dd><ul> | ||
| 88 | <li>fix build for Lua 5.2</li> | ||
| 89 | </ul></dd> | ||
| 90 | |||
| 86 | <dt><strong>Version 1.6.0</strong> [26/Sep/2012]</dt> | 91 | <dt><strong>Version 1.6.0</strong> [26/Sep/2012]</dt> |
| 92 | <dd><ul> | ||
| 87 | <li>getcwd fix for Android</li> | 93 | <li>getcwd fix for Android</li> |
| 88 | <li>support for Lua 5.2</li> | 94 | <li>support for Lua 5.2</li> |
| 89 | <li>add lfs.link</li> | 95 | <li>add lfs.link</li> |
| 90 | <li>other bug fixes</li> | 96 | <li>other bug fixes</li> |
| 97 | </ul></dd> | ||
| 91 | 98 | ||
| 92 | <dt><strong>Version 1.5.0</strong> [20/Oct/2009]</dt> | 99 | <dt><strong>Version 1.5.0</strong> [20/Oct/2009]</dt> |
| 100 | <dd><ul> | ||
| 93 | <li>Added explicit next and close methods to second return value of lfs.dir | 101 | <li>Added explicit next and close methods to second return value of lfs.dir |
| 94 | (the directory object), for explicit iteration or explicit closing.</li> | 102 | (the directory object), for explicit iteration or explicit closing.</li> |
| 95 | <li>Added directory locking via lfs.lock_dir function (see the <a href="manual.html">manual</a>).</li> | 103 | <li>Added directory locking via lfs.lock_dir function (see the <a href="manual.html">manual</a>).</li> |
| 104 | </ul></dd> | ||
| 96 | <dt><strong>Version 1.4.2</strong> [03/Feb/2009]</dt> | 105 | <dt><strong>Version 1.4.2</strong> [03/Feb/2009]</dt> |
| 97 | <dd> | 106 | <dd> |
| 98 | <ul> | 107 | <ul> |
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 @@ | |||
| 1 | package = "LuaFileSystem" | ||
| 2 | |||
| 3 | version = "1.6.1-1" | ||
| 4 | |||
| 5 | source = { | ||
| 6 | url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.1.tar.gz", | ||
| 7 | } | ||
| 8 | |||
| 9 | description = { | ||
| 10 | summary = "File System Library for the Lua Programming Language", | ||
| 11 | detailed = [[ | ||
| 12 | LuaFileSystem is a Lua library developed to complement the set of | ||
| 13 | functions related to file systems offered by the standard Lua | ||
| 14 | distribution. LuaFileSystem offers a portable way to access the | ||
| 15 | underlying directory structure and file attributes. | ||
| 16 | ]] | ||
| 17 | } | ||
| 18 | |||
| 19 | dependencies = { | ||
| 20 | "lua >= 5.1" | ||
| 21 | } | ||
| 22 | |||
| 23 | build = { | ||
| 24 | type = "builtin", | ||
| 25 | modules = { lfs = "src/lfs.c" }, | ||
| 26 | copy_directories = { "doc", "tests" } | ||
| 27 | } | ||
