File size: 6,034 Bytes
d7c5875 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local string = _tl_compat and _tl_compat.string or string
local cmd_build = {}
local pack = require("luarocks.pack")
local path = require("luarocks.path")
local dir = require("luarocks.dir")
local util = require("luarocks.util")
local fetch = require("luarocks.fetch")
local fs = require("luarocks.fs")
local deps = require("luarocks.deps")
local remove = require("luarocks.remove")
local cfg = require("luarocks.core.cfg")
local build = require("luarocks.build")
local search = require("luarocks.search")
local make = require("luarocks.cmd.make")
local repos = require("luarocks.repos")
function cmd_build.add_to_parser(parser)
local cmd = parser:command("build", "Build and install a rock, compiling its C parts if any.\n" ..
"If the sources contain a luarocks.lock file, uses it as an authoritative source for " ..
"exact version of dependencies.\n" ..
"If no arguments are given, behaves as luarocks make.", util.see_also()):
summary("Build/compile a rock.")
cmd:argument("rock", "A rockspec file, a source rock file, or the name of " ..
"a rock to be fetched from a repository."):
args("?"):
action(util.namespaced_name_action)
cmd:argument("version", "Rock version."):
args("?")
cmd:flag("--only-deps --deps-only", "Install only the dependencies of the rock.")
cmd:option("--branch", "Override the `source.branch` field in the loaded " ..
"rockspec. Allows to specify a different branch to fetch. Particularly " ..
'for "dev" rocks.'):
argname("<name>")
cmd:flag("--pin", "Create a luarocks.lock file listing the exact " ..
"versions of each dependency found for this rock (recursively), " ..
"and store it in the rock's directory. " ..
"Ignores any existing luarocks.lock file in the rock's sources.")
make.cmd_options(cmd)
end
local function build_rock(rock_filename, opts)
local cwd = fs.absolute_name(dir.path("."))
local ok, err, errcode
local unpack_dir
unpack_dir, err, errcode = fetch.fetch_and_unpack_rock(rock_filename, nil, opts.verify)
if not unpack_dir then
return nil, err, errcode
end
local rockspec_filename = path.rockspec_name_from_rock(rock_filename)
ok, err = fs.change_dir(unpack_dir)
if not ok then return nil, err end
local rockspec
rockspec, err, errcode = fetch.load_rockspec(rockspec_filename)
if not rockspec then
return nil, err, errcode
end
local n, v = build.build_rockspec(rockspec, opts, cwd)
ok, err, errcode = n ~= nil, v, nil
fs.pop_dir()
return ok, err, errcode
end
local function do_build(name, namespace, version, opts)
local url, err
if name:match("%.rockspec$") or name:match("%.rock$") then
url = name
else
url, err = search.find_src_or_rockspec(name, namespace, version, opts.check_lua_versions)
if not url then
return nil, err
end
end
name, version = path.parse_name(url)
if name and repos.is_installed(name, version) then
if not opts.rebuild then
util.printout(name .. " " .. version .. " is already installed in " .. path.root_dir(cfg.root_dir))
util.printout("Use --force to reinstall.")
return name, version, "skip"
end
end
if url:match("%.rockspec$") then
local cwd = fs.absolute_name(dir.path("."))
local rockspec
rockspec, err = fetch.load_rockspec(url, nil, opts.verify)
if not rockspec then
return nil, err
end
return build.build_rockspec(rockspec, opts, cwd)
end
if url:match("%.src%.rock$") then
opts.need_to_fetch = false
end
local ok, errcode
ok, err, errcode = build_rock(url, opts)
if not ok then
return nil, err, errcode
end
return name, version
end
function cmd_build.command(args)
if not args.rock then
return make.command(args)
end
local opts = {
need_to_fetch = true,
minimal_mode = false,
deps_mode = deps.get_deps_mode(args),
build_only_deps = not not (args.only_deps and not args.pack_binary_rock),
namespace = args.namespace,
branch = args.branch,
verify = not not args.verify,
check_lua_versions = not not args.check_lua_versions,
pin = not not args.pin,
rebuild = not not (args.force or args.force_fast),
no_install = false,
}
if args.sign and not args.pack_binary_rock then
return nil, "In the build command, --sign is meant to be used only with --pack-binary-rock"
end
if args.pack_binary_rock then
return pack.pack_binary_rock(args.rock, args.namespace, args.version, args.sign, function()
local name, version = do_build(args.rock, args.namespace, args.version, opts)
if name and args.no_doc then
util.remove_doc_dir(name, version)
end
return name, version
end)
end
local name, version, skip = do_build(args.rock, args.namespace, args.version, opts)
if not name then
return nil, version
end
if skip == "skip" then
return name ~= nil, version
end
if args.no_doc then
util.remove_doc_dir(name, version)
end
if opts.build_only_deps then
util.printout("Stopping after installing dependencies for " .. name .. " " .. version)
util.printout()
else
if (not args.keep) and not cfg.keep_other_versions then
local ok, err, warn = remove.remove_other_versions(name, version, args.force, args.force_fast)
if not ok then
return nil, err
elseif warn then
util.printerr(err)
end
end
end
if opts.deps_mode ~= "none" then
deps.check_dependencies(nil, deps.get_deps_mode(args))
end
return name ~= nil, version
end
cmd_build.needs_lock = function(args)
if args.pack_binary_rock then
return false
end
return true
end
return cmd_build
|