summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Melnichenko <mpeterval@gmail.com>2016-06-26 17:18:01 +0300
committerPeter Melnichenko <mpeterval@gmail.com>2016-06-26 17:18:01 +0300
commit7d2fc0b3adca1b2472470bdfd047f761a22f81d8 (patch)
treedbe812701f20961d7a7c41a84f5d132b6b9882dc
parent8b4cbc972fdab88e2af84022b2a54c10dcd17b41 (diff)
downloadluacov-7d2fc0b3adca1b2472470bdfd047f761a22f81d8.tar.gz
Remove fixed release rockspecs
-rw-r--r--rockspecs/luacov-0.10.0-1.rockspec39
-rw-r--r--rockspecs/luacov-0.11.0-1.rockspec39
-rw-r--r--rockspecs/luacov-0.3-1.rockspec38
-rw-r--r--rockspecs/luacov-0.4-1.rockspec38
-rw-r--r--rockspecs/luacov-0.5-1.rockspec38
-rw-r--r--rockspecs/luacov-0.6-1.rockspec39
-rw-r--r--rockspecs/luacov-0.7-1.rockspec39
-rw-r--r--rockspecs/luacov-0.8-1.rockspec39
-rw-r--r--rockspecs/luacov-0.9-1.rockspec39
-rw-r--r--rockspecs/luacov-0.9.1-1.rockspec39
10 files changed, 0 insertions, 387 deletions
diff --git a/rockspecs/luacov-0.10.0-1.rockspec b/rockspecs/luacov-0.10.0-1.rockspec
deleted file mode 100644
index 2c17cfe..0000000
--- a/rockspecs/luacov-0.10.0-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.10.0-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.10.0"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.11.0-1.rockspec b/rockspecs/luacov-0.11.0-1.rockspec
deleted file mode 100644
index ff1b54c..0000000
--- a/rockspecs/luacov-0.11.0-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.11.0-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.11.0"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.3-1.rockspec b/rockspecs/luacov-0.3-1.rockspec
deleted file mode 100644
index 857c73c..0000000
--- a/rockspecs/luacov-0.3-1.rockspec
+++ /dev/null
@@ -1,38 +0,0 @@
-package = "LuaCov"
-version = "0.3-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.3",
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- license = "MIT/X11",
- homepage = "http://keplerproject.github.com/luacov/"
-}
-dependencies = {
- "lua >= 5.1",
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.4-1.rockspec b/rockspecs/luacov-0.4-1.rockspec
deleted file mode 100644
index 1ef95ff..0000000
--- a/rockspecs/luacov-0.4-1.rockspec
+++ /dev/null
@@ -1,38 +0,0 @@
-package = "LuaCov"
-version = "0.4-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.4",
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- license = "MIT/X11",
- homepage = "http://keplerproject.github.com/luacov/"
-}
-dependencies = {
- "lua >= 5.1",
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.5-1.rockspec b/rockspecs/luacov-0.5-1.rockspec
deleted file mode 100644
index 6177d9d..0000000
--- a/rockspecs/luacov-0.5-1.rockspec
+++ /dev/null
@@ -1,38 +0,0 @@
-package = "LuaCov"
-version = "0.5-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.5"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- luacov = "src/luacov.lua",
- ['luacov.defaults'] = "src/luacov/defaults.lua",
- ['luacov.reporter'] = "src/luacov/reporter.lua",
- ['luacov.runner'] = "src/luacov/runner.lua",
- ['luacov.stats'] = "src/luacov/stats.lua",
- ['luacov.tick'] = "src/luacov/tick.lua"
- },
- install = {
- bin = {
- luacov = "src/bin/luacov"
- }
- }
-}
diff --git a/rockspecs/luacov-0.6-1.rockspec b/rockspecs/luacov-0.6-1.rockspec
deleted file mode 100644
index c6f8bd1..0000000
--- a/rockspecs/luacov-0.6-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.6-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.6"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.7-1.rockspec b/rockspecs/luacov-0.7-1.rockspec
deleted file mode 100644
index 73c494b..0000000
--- a/rockspecs/luacov-0.7-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.7-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.7"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.8-1.rockspec b/rockspecs/luacov-0.8-1.rockspec
deleted file mode 100644
index 55d496f..0000000
--- a/rockspecs/luacov-0.8-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.8-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.8"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.9-1.rockspec b/rockspecs/luacov-0.9-1.rockspec
deleted file mode 100644
index 746f1d2..0000000
--- a/rockspecs/luacov-0.9-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.9-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.9"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}
diff --git a/rockspecs/luacov-0.9.1-1.rockspec b/rockspecs/luacov-0.9.1-1.rockspec
deleted file mode 100644
index ae25544..0000000
--- a/rockspecs/luacov-0.9.1-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.9.1-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.9.1"
-}
-description = {
- summary = "Coverage analysis tool for Lua scripts",
- detailed = [[
- LuaCov is a simple coverage analysis tool for Lua scripts.
- When a Lua script is run with the luacov module, it
- generates a stats file. The luacov command-line script then
- processes this file generating a report indicating which code
- paths were not traversed, which is useful for verifying the
- effectiveness of a test suite.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}