aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2019-04-29 09:43:12 -0300
committerHisham Muhammad <hisham@gobolinux.org>2019-04-29 09:43:41 -0300
commit33b00b4b526c8e0210ac6ce7cf40d3eb5f9b2278 (patch)
tree2d2cd6516e87c7eb024a30c5850c99b02405f94e
parentc451dd03115f87d0143d170fbdaf160e8627391e (diff)
parent058525040ce7c6343416e7f1af2b3533f8b160ec (diff)
downloadluarocks-33b00b4b526c8e0210ac6ce7cf40d3eb5f9b2278.tar.gz
luarocks-33b00b4b526c8e0210ac6ce7cf40d3eb5f9b2278.tar.bz2
luarocks-33b00b4b526c8e0210ac6ce7cf40d3eb5f9b2278.zip
Merge branch '3.1.0'
-rw-r--r--luarocks-dev-1.rockspec36
1 files changed, 0 insertions, 36 deletions
diff --git a/luarocks-dev-1.rockspec b/luarocks-dev-1.rockspec
deleted file mode 100644
index bc19e3ff..00000000
--- a/luarocks-dev-1.rockspec
+++ /dev/null
@@ -1,36 +0,0 @@
1rockspec_format = "3.0"
2package = "luarocks"
3version = "dev-1"
4source = {
5 url = "git+https://github.com/luarocks/luarocks"
6}
7description = {
8 summary = "A package manager for Lua modules.",
9 detailed = [[
10 LuaRocks allows you to install Lua modules as self-contained
11 packages called "rocks", which also contain version dependency
12 information. This information is used both during installation,
13 so that when one rock is requested all rocks it depends on are
14 installed as well, and at run time, so that when a module is
15 required, the correct version is loaded. LuaRocks supports both
16 local and remote repositories, and multiple local rocks trees.
17 ]],
18 homepage = "http://www.luarocks.org",
19 issues_url = "https://github.com/luarocks/luarocks/issues",
20 maintainer = "Hisham Muhammad",
21 license = "MIT",
22}
23test_dependencies = {
24 "luacov",
25}
26test = {
27 type = "busted",
28 platforms = {
29 windows = {
30 flags = { "--exclude-tags=ssh,git,unix" }
31 },
32 unix = {
33 flags = { "--exclude-tags=ssh,git" }
34 }
35 }
36}