aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/make_spec.lua12
-rw-r--r--src/luarocks/cmd/make.lua11
2 files changed, 19 insertions, 4 deletions
diff --git a/spec/make_spec.lua b/spec/make_spec.lua
index 1bfbce7e..c9410cce 100644
--- a/spec/make_spec.lua
+++ b/spec/make_spec.lua
@@ -66,6 +66,18 @@ describe("luarocks make #integration", function()
66 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/luasocket/3.0rc1-2/doc")) 66 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/luasocket/3.0rc1-2/doc"))
67 end) 67 end)
68 68
69 it("--only-deps", function()
70 local rockspec = testing_paths.fixtures_dir .. "/build_only_deps-0.1-1.rockspec"
71
72 test_env.remove_dir("build_only_deps-0.1-1/")
73 assert.is_true(run.luarocks_bool("unpack " .. rockspec))
74 lfs.chdir("build_only_deps-0.1-1/")
75 assert.is_true(run.luarocks_bool("make " .. rockspec .. " --only-deps"))
76 assert.is_false(run.luarocks_bool("show build_only_deps"))
77 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/build_only_deps/0.1-1/build_only_deps-0.1-1.rockspec"))
78 assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/a_rock/1.0-1/a_rock-1.0-1.rockspec"))
79 end)
80
69 describe("LuaRocks making rockspecs (using lxsh)", function() 81 describe("LuaRocks making rockspecs (using lxsh)", function()
70 --download lxsh and unpack it 82 --download lxsh and unpack it
71 before_each(function() 83 before_each(function()
diff --git a/src/luarocks/cmd/make.lua b/src/luarocks/cmd/make.lua
index 2db6c403..60a0f11e 100644
--- a/src/luarocks/cmd/make.lua
+++ b/src/luarocks/cmd/make.lua
@@ -62,9 +62,6 @@ commands. See the help on those for details.
62If the current directory contains a luarocks.lock file, it is used as the 62If the current directory contains a luarocks.lock file, it is used as the
63authoritative source for exact version of dependencies. The --pin flag 63authoritative source for exact version of dependencies. The --pin flag
64overrides and recreates this file scanning dependency based on ranges. 64overrides and recreates this file scanning dependency based on ranges.
65
66NB: Use `luarocks install` with the `--only-deps` flag if you want to install
67only dependencies of the rockspec (see `luarocks help install`).
68]], util.see_also()) 65]], util.see_also())
69 :summary("Compile package in current directory using a rockspec.") 66 :summary("Compile package in current directory using a rockspec.")
70 67
@@ -102,7 +99,7 @@ function make.command(args)
102 need_to_fetch = false, 99 need_to_fetch = false,
103 minimal_mode = true, 100 minimal_mode = true,
104 deps_mode = deps.get_deps_mode(args), 101 deps_mode = deps.get_deps_mode(args),
105 build_only_deps = false, 102 build_only_deps = not not (args.only_deps and not args.pack_binary_rock),
106 namespace = namespace, 103 namespace = namespace,
107 branch = args.branch, 104 branch = args.branch,
108 verify = not not args.verify, 105 verify = not not args.verify,
@@ -129,6 +126,12 @@ function make.command(args)
129 if not ok then return nil, err end 126 if not ok then return nil, err end
130 local name, version = ok, err 127 local name, version = ok, err
131 128
129 if opts.build_only_deps then
130 util.printout("Stopping after installing dependencies for " ..name.." "..version)
131 util.printout()
132 return name, version
133 end
134
132 if args.no_doc then 135 if args.no_doc then
133 util.remove_doc_dir(name, version) 136 util.remove_doc_dir(name, version)
134 end 137 end