Skip to content

Commit 9a6c219

Browse files
committed
fix(rocks): only build rockspec when it has deps or an advanced build step
1 parent dbffad6 commit 9a6c219

File tree

2 files changed

+30
-15
lines changed

2 files changed

+30
-15
lines changed

lua/lazy/pkg/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local Config = require("lazy.core.config")
22
local Util = require("lazy.util")
33

44
local M = {}
5-
M.VERSION = 8
5+
M.VERSION = 10
66
M.dirty = false
77

88
---@class LazyPkg

lua/lazy/pkg/rockspec.lua

+29-14
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ M.skip = { "lua" }
1212
---@field package string
1313
---@field version string
1414
---@field dependencies string[]
15+
---@field build? {build_type?: string, modules?: any[]}
1516

1617
---@param plugin LazyPlugin
1718
---@return LazyPkgSpec?
@@ -37,30 +38,44 @@ function M.get(plugin)
3738
end
3839
load()
3940

41+
if not rockspec then
42+
return
43+
end
44+
45+
local has_lua = not not vim.uv.fs_stat(plugin.dir .. "/lua")
46+
4047
---@param dep string
4148
local rocks = vim.tbl_filter(function(dep)
4249
local name = dep:gsub("%s.*", "")
4350
return not vim.tbl_contains(M.skip, name)
44-
end, rockspec and rockspec.dependencies or {})
51+
end, rockspec.dependencies or {})
4552

46-
local use = #rocks > 0
47-
use = true
53+
local use = not has_lua
54+
or #rocks > 0
55+
or (
56+
rockspec.build
57+
and rockspec.build.build_type
58+
and rockspec.build.build_type ~= "none"
59+
and not (rockspec.build.build_type == "builtin" and not rockspec.build.modules)
60+
)
61+
62+
if not use then
63+
return
64+
end
4865

4966
local lazy = nil
50-
if not vim.uv.fs_stat(plugin.dir .. "/lua") then
67+
if not has_lua then
5168
lazy = false
5269
end
5370

54-
return use
55-
and {
56-
file = vim.fn.fnamemodify(rockspec_file, ":t"),
57-
spec = {
58-
plugin.name,
59-
build = "rockspec",
60-
lazy = lazy,
61-
},
62-
}
63-
or nil
71+
return {
72+
file = vim.fn.fnamemodify(rockspec_file, ":t"),
73+
spec = {
74+
plugin.name,
75+
build = "rockspec",
76+
lazy = lazy,
77+
},
78+
} or nil
6479
end
6580

6681
return M

0 commit comments

Comments
 (0)