aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml33
-rw-r--r--.travis/platform.sh15
-rw-r--r--.travis/setup_lua.sh101
-rw-r--r--rockspecs/luafilesystem-cvs-3.rockspec27
-rw-r--r--src/lfs.c8
5 files changed, 184 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..67b5812
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,33 @@
1language: c
2
3env:
4 global:
5 - LUAROCKS=2.2.0-rc1
6 matrix:
7 - LUA=lua5.1
8 - LUA=lua5.2
9 - LUA=lua5.3
10 - LUA=luajit
11
12branches:
13 only:
14 - master
15
16before_install:
17 - bash .travis/setup_lua.sh
18 - sudo pip install cpp-coveralls
19
20install:
21 - sudo luarocks make rockspecs/luafilesystem-cvs-3.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
22
23script:
24 - cd tests
25 - sudo lua test.lua
26
27after_success:
28 - coveralls -b .. -r .. -E usr
29
30notifications:
31 email:
32 on_success: change
33 on_failure: always
diff --git a/.travis/platform.sh b/.travis/platform.sh
new file mode 100644
index 0000000..4a3af0d
--- /dev/null
+++ b/.travis/platform.sh
@@ -0,0 +1,15 @@
1if [ -z "$PLATFORM" ]; then
2 PLATFORM=$TRAVIS_OS_NAME;
3fi
4
5if [ "$PLATFORM" == "osx" ]; then
6 PLATFORM="macosx";
7fi
8
9if [ -z "$PLATFORM" ]; then
10 if [ "$(uname)" == "Linux" ]; then
11 PLATFORM="linux";
12 else
13 PLATFORM="macosx";
14 fi;
15fi
diff --git a/.travis/setup_lua.sh b/.travis/setup_lua.sh
new file mode 100644
index 0000000..373e24d
--- /dev/null
+++ b/.travis/setup_lua.sh
@@ -0,0 +1,101 @@
1#! /bin/bash
2
3# A script for setting up environment for travis-ci testing.
4# Sets up Lua and Luarocks.
5# LUA must be "lua5.1", "lua5.2" or "luajit".
6# luajit2.0 - master v2.0
7# luajit2.1 - master v2.1
8
9LUAJIT_BASE="LuaJIT-2.0.3"
10
11source .travis/platform.sh
12
13LUAJIT="no"
14
15if [ "$PLATFORM" == "macosx" ]; then
16 if [ "$LUA" == "luajit" ]; then
17 LUAJIT="yes";
18 fi
19 if [ "$LUA" == "luajit2.0" ]; then
20 LUAJIT="yes";
21 fi
22 if [ "$LUA" == "luajit2.1" ]; then
23 LUAJIT="yes";
24 fi;
25elif [ "$(expr substr $LUA 1 6)" == "luajit" ]; then
26 LUAJIT="yes";
27fi
28
29if [ "$LUAJIT" == "yes" ]; then
30
31 if [ "$LUA" == "luajit" ]; then
32 curl http://luajit.org/download/$LUAJIT_BASE.tar.gz | tar xz;
33 else
34 git clone http://luajit.org/git/luajit-2.0.git $LUAJIT_BASE;
35 fi
36
37 cd $LUAJIT_BASE
38
39 if [ "$LUA" == "luajit2.1" ]; then
40 git checkout v2.1;
41 fi
42
43 make && sudo make install
44
45 if [ "$LUA" == "luajit2.1" ]; then
46 sudo ln -s /usr/local/bin/luajit-2.1.0-alpha /usr/local/bin/luajit
47 sudo ln -s /usr/local/bin/luajit /usr/local/bin/lua;
48 else
49 sudo ln -s /usr/local/bin/luajit /usr/local/bin/lua;
50 fi;
51
52else
53 if [ "$LUA" == "lua5.1" ]; then
54 curl http://www.lua.org/ftp/lua-5.1.5.tar.gz | tar xz
55 cd lua-5.1.5;
56 elif [ "$LUA" == "lua5.2" ]; then
57 curl http://www.lua.org/ftp/lua-5.2.3.tar.gz | tar xz
58 cd lua-5.2.3;
59 elif [ "$LUA" == "lua5.3" ]; then
60 curl http://www.lua.org/work/lua-5.3.0-beta.tar.gz | tar xz
61 cd lua-5.3.0-beta;
62 fi
63 sudo make $PLATFORM install;
64fi
65
66cd $TRAVIS_BUILD_DIR;
67
68LUAROCKS_BASE=luarocks-$LUAROCKS
69
70# curl http://luarocks.org/releases/$LUAROCKS_BASE.tar.gz | tar xz
71
72git clone https://github.com/keplerproject/luarocks.git $LUAROCKS_BASE
73cd $LUAROCKS_BASE
74
75git checkout v$LUAROCKS
76
77if [ "$LUA" == "luajit" ]; then
78 ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.0;
79elif [ "$LUA" == "luajit2.0" ]; then
80 ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.0;
81elif [ "$LUA" == "luajit2.1" ]; then
82 ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.1;
83else
84 ./configure;
85fi
86
87make build && sudo make install
88
89cd $TRAVIS_BUILD_DIR
90
91rm -rf $LUAROCKS_BASE
92
93if [ "$LUAJIT" == "yes" ]; then
94 rm -rf $LUAJIT_BASE;
95elif [ "$LUA" == "lua5.1" ]; then
96 rm -rf lua-5.1.5;
97elif [ "$LUA" == "lua5.2" ]; then
98 rm -rf lua-5.2.3;
99elif [ "$LUA" == "lua5.3" ]; then
100 rm -rf lua-5.3.0-beta;
101fi
diff --git a/rockspecs/luafilesystem-cvs-3.rockspec b/rockspecs/luafilesystem-cvs-3.rockspec
new file mode 100644
index 0000000..a4388cd
--- /dev/null
+++ b/rockspecs/luafilesystem-cvs-3.rockspec
@@ -0,0 +1,27 @@
1package = "LuaFileSystem"
2
3version = "cvs-3"
4
5source = {
6 url = "git://github.com/keplerproject/luafilesystem.git",
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, < 5.4"
21}
22
23build = {
24 type = "builtin",
25 modules = { lfs = "src/lfs.c" },
26 copy_directories = { "doc", "tests" }
27}
diff --git a/src/lfs.c b/src/lfs.c
index 5461f82..cea87ef 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -69,6 +69,14 @@
69#define LFS_VERSION "1.6.2" 69#define LFS_VERSION "1.6.2"
70#define LFS_LIBNAME "lfs" 70#define LFS_LIBNAME "lfs"
71 71
72#if LUA_VERSION_NUM >= 503 /* Lua 5.3 */
73
74#ifndef luaL_optlong
75#define luaL_optlong luaL_optinteger
76#endif
77
78#endif
79
72#if LUA_VERSION_NUM < 502 80#if LUA_VERSION_NUM < 502
73# define luaL_newlib(L,l) (lua_newtable(L), luaL_register(L,NULL,l)) 81# define luaL_newlib(L,l) (lua_newtable(L), luaL_register(L,NULL,l))
74#endif 82#endif