Skip to content

Commit

Permalink
Add. rockspec for version 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Dec 16, 2014
1 parent 6955d4b commit 7aeaa8a
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: c

env:
global:
- LUAROCKS=2.2.0-rc1
- LUAROCKS=2.2.0
matrix:
- LUA=lua5.1
- LUA=lua5.2
Expand Down
6 changes: 3 additions & 3 deletions .travis/setup_lua.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ else
curl http://www.lua.org/ftp/lua-5.2.3.tar.gz | tar xz
cd lua-5.2.3;
elif [ "$LUA" == "lua5.3" ]; then
curl http://www.lua.org/work/lua-5.3.0-beta.tar.gz | tar xz
cd lua-5.3.0-beta;
curl http://www.lua.org/work/lua-5.3.0-rc0.tar.gz | tar xz
cd lua-5.3.0;
fi
sudo make $PLATFORM install;
fi
Expand Down Expand Up @@ -97,5 +97,5 @@ elif [ "$LUA" == "lua5.1" ]; then
elif [ "$LUA" == "lua5.2" ]; then
rm -rf lua-5.2.3;
elif [ "$LUA" == "lua5.3" ]; then
rm -rf lua-5.3.0-beta;
rm -rf lua-5.3.0;
fi
2 changes: 1 addition & 1 deletion dist.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "lua-path"
version = "0.2.2"
version = "0.2.3"

desc = "File system path manipulation library"
author = "Alexey Melnichuk"
Expand Down
46 changes: 46 additions & 0 deletions rockspecs/lua-path-0.2.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package = "lua-path"
version = "0.2.3-1"
source = {
url = "https://github.com/moteus/lua-path/archive/v0.2.3.zip",
dir = "lua-path-0.2.3",
}

description = {
summary = "File system path manipulation library",
detailed = [[
]],
homepage = "https://github.com/moteus/lua-path",
license = "MIT/X11",
}

dependencies = {
"lua >= 5.1, < 5.4",
-- "luafilesystem >= 1.4",
-- "alien >= 0.7.0", -- instead lfs on windows
}

build = {
type = "builtin",
copy_directories = {
"test",
},
modules = {
["path" ] = "lua/path.lua",
["path.fs" ] = "lua/path/fs.lua",
["path.findfile" ] = "lua/path/findfile.lua",
["path.lfs.fs" ] = "lua/path/lfs/fs.lua",
["path.syscall.fs" ] = "lua/path/syscall/fs.lua",
["path.lfs.impl.fs" ] = "lua/path/lfs/impl/fs.lua",
["path.module" ] = "lua/path/module.lua",
["path.win32.alien.fs" ] = "lua/path/win32/alien/fs.lua",
["path.win32.alien.types" ] = "lua/path/win32/alien/types.lua",
["path.win32.alien.utils" ] = "lua/path/win32/alien/utils.lua",
["path.win32.alien.wcs" ] = "lua/path/win32/alien/wcs.lua",
["path.win32.ffi.fs" ] = "lua/path/win32/ffi/fs.lua",
["path.win32.ffi.types" ] = "lua/path/win32/ffi/types.lua",
["path.win32.ffi.wcs" ] = "lua/path/win32/ffi/wcs.lua",
["path.win32.fs" ] = "lua/path/win32/fs.lua",
["path.win32.wcs" ] = "lua/path/win32/wcs.lua",
}
}

0 comments on commit 7aeaa8a

Please sign in to comment.