-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Updated to test against LuaJit 2.0.5 + Updated to test against Lua 5.3.5 + Updated to recognize that it’s 2018
- Loading branch information
Peter Aronoff
committed
Jul 20, 2018
1 parent
3338515
commit 1aa0cd4
Showing
11 changed files
with
57 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package = 'split' | ||
version = '3.2.1-1' | ||
source = { | ||
url = 'git://github.com/telemachus/split.git', | ||
branch = 'master', | ||
tag = 'v3.2.1-1' | ||
} | ||
description = { | ||
summary = 'String split function and iterator for Lua', | ||
detailed = [[ | ||
A string split function and iterator for Lua since the string standard | ||
library doesn't come with one. | ||
]], | ||
homepage = 'https://github.com/telemachus/split', | ||
license = 'BSD 3-Clause', | ||
maintainer = 'Peter Aronoff <[email protected]>' | ||
} | ||
dependencies = { 'lua >= 5.1' } | ||
build = { | ||
type = 'builtin', | ||
modules = { | ||
split = 'src/split.lua', | ||
}, | ||
copy_directories = { 'doc' } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters