aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 18:54:02 -0200
committerFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 18:54:02 -0200
commit5ffde8ae511e62d7e821c07da53e201ed8efc5f4 (patch)
treed3b45720b2efb3bc69572bb9cff9d2c35e93f04e
parent2b5f187a40fa043ad5ed5dac5d3a85385043feb9 (diff)
downloadluafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.gz
luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.bz2
luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.zip
packaging for version 1.5.0
-rw-r--r--README18
-rw-r--r--doc/us/index.html12
-rw-r--r--rockspecs/luafilesystem-1.5.0-1.rockspec27
3 files changed, 39 insertions, 18 deletions
diff --git a/README b/README
index 788aac6..0103efa 100644
--- a/README
+++ b/README
@@ -14,26 +14,18 @@ LuaRocks Installation
14--------------------- 14---------------------
15luarocks install luafilesystem 15luarocks install luafilesystem
16 16
17Unix Installation
18-----------------
19To install on Linux/OSX/BSD, please edit the config file and then call
20
21make
22make install
23
24The last step may require root privileges.
25
26Windows Installation
27--------------------
28To install on Windows, please copy lfs.dll to your package.cpath directory
29 17
30Documentation 18Documentation
31------------- 19-------------
32Please check the documentation at /doc/us/ for more information. 20Please check the documentation at doc/us/ for more information.
33 21
34History 22History
35------- 23-------
36 24
25Version 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
37Version 1.4.2 [03/Feb/2009] 29Version 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>
80page. If you are using 80page.</p>
81<a href="http://luabinaries.luaforge.net">LuaBinaries</a> a Windows binary
82version 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 @@
1package = "LuaFileSystem"
2
3version = "1.5.0-1"
4
5source = {
6 url = "http://cloud.github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.5.0.tar.gz",
7}
8
9description = {
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
19dependencies = {
20 "lua >= 5.1"
21}
22
23build = {
24 type = "module",
25 modules = { lfs = "src/lfs.c" },
26 copy_directories = { "doc", "tests" }
27}