aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2026-08-08 22:07:17 +0200
committerHisham Muhammad <hisham@gobolinux.org>2026-08-11 14:18:02 -0300
commit44a63f61baf90d2187e98415195f8e20fad4050b (patch)
treec9e7722f25e8a982cf5ce08ea3da9470874916e6
parent665f160b4d0b79e85e66c6cc83e442d72eb40868 (diff)
downloadluarocks-44a63f61baf90d2187e98415195f8e20fad4050b.tar.gz
luarocks-44a63f61baf90d2187e98415195f8e20fad4050b.tar.bz2
luarocks-44a63f61baf90d2187e98415195f8e20fad4050b.zip
Upgrade deps compat53 and luacov for lua5.5 compatibility
-rw-r--r--spec/show_spec.lua4
-rw-r--r--spec/util/test_env.lua2
-rw-r--r--spec/util/versions.lua7
3 files changed, 8 insertions, 5 deletions
diff --git a/spec/show_spec.lua b/spec/show_spec.lua
index cd34b5a5..12a70808 100644
--- a/spec/show_spec.lua
+++ b/spec/show_spec.lua
@@ -46,12 +46,12 @@ describe("luarocks show #integration", function()
46 46
47 it("rockspec of luacov", function() 47 it("rockspec of luacov", function()
48 local output = run.luarocks("show --rockspec luacov") 48 local output = run.luarocks("show --rockspec luacov")
49 assert.is.truthy(output:match("luacov--0.15.0--1.rockspec")) 49 assert.is.truthy(output:match("luacov--0.17.0--1.rockspec"))
50 end) 50 end)
51 51
52 it("mversion of luacov", function() 52 it("mversion of luacov", function()
53 local output = run.luarocks("show --mversion luacov") 53 local output = run.luarocks("show --mversion luacov")
54 assert.is.truthy(output:match("0.15.0--1")) 54 assert.is.truthy(output:match("0.17.0--1"))
55 end) 55 end)
56 56
57 it("rock tree of luacov", function() 57 it("rock tree of luacov", function()
diff --git a/spec/util/test_env.lua b/spec/util/test_env.lua
index d37444e2..bfdedb9b 100644
--- a/spec/util/test_env.lua
+++ b/spec/util/test_env.lua
@@ -1151,8 +1151,10 @@ function test_env.main()
1151 end 1151 end
1152 1152
1153 -- luacov is needed for both minimal or full environment 1153 -- luacov is needed for both minimal or full environment
1154 table.insert(urls, "/datafile-${DATAFILE}.src.rock")
1154 table.insert(urls, "/luacov-${LUACOV}.src.rock") 1155 table.insert(urls, "/luacov-${LUACOV}.src.rock")
1155 table.insert(urls, "/cluacov-${CLUACOV}.src.rock") 1156 table.insert(urls, "/cluacov-${CLUACOV}.src.rock")
1157 table.insert(rocks, "datafile")
1156 table.insert(rocks, "luacov") 1158 table.insert(rocks, "luacov")
1157 table.insert(rocks, "cluacov") 1159 table.insert(rocks, "cluacov")
1158 1160
diff --git a/spec/util/versions.lua b/spec/util/versions.lua
index 22d811e2..e5c85c17 100644
--- a/spec/util/versions.lua
+++ b/spec/util/versions.lua
@@ -1,13 +1,14 @@
1return { 1return {
2 binaryheap = "0.4-1", -- dependency for copas 2 binaryheap = "0.4-1", -- dependency for copas
3 bit32 = "5.3.5.1-1", -- dependency for luaposix on Lua 5.1 3 bit32 = "5.3.5.1-1", -- dependency for luaposix on Lua 5.1
4 cluacov = "0.1.3-1", 4 cluacov = "1.0.0-1",
5 compat53 = "0.14.3-1", 5 compat53 = "0.15.1-1",
6 copas = "3.0.0-2", 6 copas = "3.0.0-2",
7 cprint = "0.2-1", 7 cprint = "0.2-1",
8 datafile = "0.11-1",
8 dkjson = "2.6-1", 9 dkjson = "2.6-1",
9 lpeg = "1.0.0-1", 10 lpeg = "1.0.0-1",
10 luacov = "0.15.0-1", 11 luacov = "0.17.0-1",
11 luafilesystem = "1.8.0-1", 12 luafilesystem = "1.8.0-1",
12 luafilesystem_old = "1.6.3-2", 13 luafilesystem_old = "1.6.3-2",
13 luaposix = "35.1-1", 14 luaposix = "35.1-1",