diff options
author | Fabio Mascarenhas <mascarenhas@lambda.local> | 2009-10-20 18:54:02 -0200 |
---|---|---|
committer | Fabio Mascarenhas <mascarenhas@lambda.local> | 2009-10-20 18:54:02 -0200 |
commit | 5ffde8ae511e62d7e821c07da53e201ed8efc5f4 (patch) | |
tree | d3b45720b2efb3bc69572bb9cff9d2c35e93f04e | |
parent | 2b5f187a40fa043ad5ed5dac5d3a85385043feb9 (diff) | |
download | luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.gz luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.bz2 luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.zip |
packaging for version 1.5.0
-rw-r--r-- | README | 18 | ||||
-rw-r--r-- | doc/us/index.html | 12 | ||||
-rw-r--r-- | rockspecs/luafilesystem-1.5.0-1.rockspec | 27 |
3 files changed, 39 insertions, 18 deletions
@@ -14,26 +14,18 @@ LuaRocks Installation | |||
14 | --------------------- | 14 | --------------------- |
15 | luarocks install luafilesystem | 15 | luarocks install luafilesystem |
16 | 16 | ||
17 | Unix Installation | ||
18 | ----------------- | ||
19 | To install on Linux/OSX/BSD, please edit the config file and then call | ||
20 | |||
21 | make | ||
22 | make install | ||
23 | |||
24 | The last step may require root privileges. | ||
25 | |||
26 | Windows Installation | ||
27 | -------------------- | ||
28 | To install on Windows, please copy lfs.dll to your package.cpath directory | ||
29 | 17 | ||
30 | Documentation | 18 | Documentation |
31 | ------------- | 19 | ------------- |
32 | Please check the documentation at /doc/us/ for more information. | 20 | Please check the documentation at doc/us/ for more information. |
33 | 21 | ||
34 | History | 22 | History |
35 | ------- | 23 | ------- |
36 | 24 | ||
25 | Version 1.5.0 [20/Oct/2009] | ||
26 | * added explicit next and close methods to second return value of lfs.dir (the directory object), for explicit iteration or explicit closing. | ||
27 | * added directory locking via lfs.lock_dir function (see the manual). | ||
28 | |||
37 | Version 1.4.2 [03/Feb/2009] | 29 | Version 1.4.2 [03/Feb/2009] |
38 | 30 | ||
39 | * fixed bug [#13198] lfs.attributes(filename, 'size') overflow on files > 2 Gb again (bug report and patch by KUBO Takehiro). | 31 | * 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.</p> | |||
71 | 71 | ||
72 | <h2><a name="status"></a>Status</h2> | 72 | <h2><a name="status"></a>Status</h2> |
73 | 73 | ||
74 | <p>Current version is 1.4.2. It was developed for Lua 5.1.</p> | 74 | <p>Current version is 1.5.0. It was developed for Lua 5.1.</p> |
75 | 75 | ||
76 | <h2><a name="download"></a>Download</h2> | 76 | <h2><a name="download"></a>Download</h2> |
77 | 77 | ||
78 | <p>LuaFileSystem source can be downloaded from its | 78 | <p>LuaFileSystem source can be downloaded from its |
79 | <a href="http://luaforge.net/projects/luafilesystem/files">Lua Forge</a> | 79 | <a href="http://github.com/keplerproject/luafilesystem">Github</a> |
80 | page. If you are using | 80 | page.</p> |
81 | <a href="http://luabinaries.luaforge.net">LuaBinaries</a> a Windows binary | ||
82 | version of LuaFileSystem (compiled with Visual Studio 2005 Express) can be found at the same LuaForge page.</p> | ||
83 | 81 | ||
84 | <h2><a name="history"></a>History</h2> | 82 | <h2><a name="history"></a>History</h2> |
85 | 83 | ||
86 | <dl class="history"> | 84 | <dl class="history"> |
85 | <dt><strong>Version 1.5.0</strong> [20/Oct/2009]</dt> | ||
86 | <li>Added explicit next and close methods to second return value of lfs.dir | ||
87 | (the directory object), for explicit iteration or explicit closing.</li> | ||
88 | <li>Added directory locking via lfs.lock_dir function (see the <a href="manual.html">manual</a>).</li> | ||
87 | <dt><strong>Version 1.4.2</strong> [03/Feb/2009]</dt> | 89 | <dt><strong>Version 1.4.2</strong> [03/Feb/2009]</dt> |
88 | <dd> | 90 | <dd> |
89 | <ul> | 91 | <ul> |
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 @@ | |||
1 | package = "LuaFileSystem" | ||
2 | |||
3 | version = "1.5.0-1" | ||
4 | |||
5 | source = { | ||
6 | url = "http://cloud.github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.5.0.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 = "module", | ||
25 | modules = { lfs = "src/lfs.c" }, | ||
26 | copy_directories = { "doc", "tests" } | ||
27 | } | ||