fix(rocks): dont trigger rebuild for luarocks when build is overriden

This commit is contained in:
Folke Lemaitre 2024-06-24 17:36:59 +02:00
parent c33b9fbf8d
commit 146de4e801
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 10 additions and 10 deletions

View File

@ -170,10 +170,10 @@ function Spec:import(spec)
self.importing = nil
return self:error(
"Invalid spec module: `"
.. modname
.. "`\nExpected a `table` of specs, but a `"
.. type(mod)
.. "` was returned instead"
.. modname
.. "`\nExpected a `table` of specs, but a `"
.. type(mod)
.. "` was returned instead"
)
end
self:normalize(mod)
@ -216,11 +216,11 @@ function M.update_state()
plugin._ = plugin._ or {}
if plugin.lazy == nil then
local lazy = plugin._.dep
or Config.options.defaults.lazy
or plugin.event
or plugin.keys
or plugin.ft
or plugin.cmd
or Config.options.defaults.lazy
or plugin.event
or plugin.keys
or plugin.ft
or plugin.cmd
plugin.lazy = lazy and true or false
end
if plugin.dir:find(Config.options.root, 1, true) == 1 then
@ -264,7 +264,7 @@ function M.update_rocks_state()
end)
for _, plugin in pairs(Config.plugins) do
if plugin._.pkg and plugin._.pkg.source == "rockspec" then
if plugin._.pkg and plugin._.pkg.source == "rockspec" and plugin.build == "rockspec" then
plugin._.build = not installed[plugin.name]
end
end