aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rwxr-xr-xconfigure2
-rwxr-xr-xsrc/bin/luarocks2
-rw-r--r--src/luarocks/fs/unix/tools.lua12
-rw-r--r--src/luarocks/manif.lua2
-rw-r--r--src/luarocks/path_cmd.lua (renamed from src/luarocks/path_command.lua)20
6 files changed, 22 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 244563b7..46943312 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ remove.lua fs.lua manif.lua add.lua deps.lua build.lua search.lua show.lua \
24manif_core.lua fetch.lua unpack.lua validate.lua cfg.lua download.lua \ 24manif_core.lua fetch.lua unpack.lua validate.lua cfg.lua download.lua \
25help.lua util.lua index.lua cache.lua refresh_cache.lua loader.lua \ 25help.lua util.lua index.lua cache.lua refresh_cache.lua loader.lua \
26admin_remove.lua fetch/hg.lua fetch/git_file.lua new_version.lua lint.lua \ 26admin_remove.lua fetch/hg.lua fetch/git_file.lua new_version.lua lint.lua \
27purge.lua path.lua path_command.lua write_rockspec.lua doc.lua 27purge.lua path.lua path_cmd.lua write_rockspec.lua doc.lua
28 28
29CONFIG_FILE = $(SYSCONFDIR)/config-$(LUA_VERSION).lua 29CONFIG_FILE = $(SYSCONFDIR)/config-$(LUA_VERSION).lua
30 30
diff --git a/configure b/configure
index 166d6898..e9f5e018 100755
--- a/configure
+++ b/configure
@@ -36,7 +36,7 @@ Where to install files installed by rocks, to make the accessible to Lua and
36your \$PATH. Beware of clashes between files installed by LuaRocks and by your 36your \$PATH. Beware of clashes between files installed by LuaRocks and by your
37system's package manager. 37system's package manager.
38 38
39--rocks-tree=FILE Root of the local tree of installed rocks. 39--rocks-tree=DIR Root of the local tree of installed rocks.
40 Default is \$PREFIX 40 Default is \$PREFIX
41 41
42--lua-version=VERSION Use specific Lua version: 5.1 or 5.2 42--lua-version=VERSION Use specific Lua version: 5.1 or 5.2
diff --git a/src/bin/luarocks b/src/bin/luarocks
index 9c190175..b85fbc7c 100755
--- a/src/bin/luarocks
+++ b/src/bin/luarocks
@@ -16,7 +16,7 @@ commands = {
16 remove = "luarocks.remove", 16 remove = "luarocks.remove",
17 make = "luarocks.make", 17 make = "luarocks.make",
18 download = "luarocks.download", 18 download = "luarocks.download",
19 path = "luarocks.path_command", 19 path = "luarocks.path_cmd",
20 show = "luarocks.show", 20 show = "luarocks.show",
21 new_version = "luarocks.new_version", 21 new_version = "luarocks.new_version",
22 lint = "luarocks.lint", 22 lint = "luarocks.lint",
diff --git a/src/luarocks/fs/unix/tools.lua b/src/luarocks/fs/unix/tools.lua
index a288dd60..8a71171d 100644
--- a/src/luarocks/fs/unix/tools.lua
+++ b/src/luarocks/fs/unix/tools.lua
@@ -19,9 +19,13 @@ end
19-- Uses the module's internal directory stack. 19-- Uses the module's internal directory stack.
20-- @return string: the absolute pathname of the current directory. 20-- @return string: the absolute pathname of the current directory.
21function tools.current_dir() 21function tools.current_dir()
22 local pipe = io.popen(vars.PWD) 22 local current = cfg.cache_pwd
23 local current = pipe:read("*l") 23 if not current then
24 pipe:close() 24 local pipe = io.popen(fs.Q(vars.PWD))
25 current = pipe:read("*l")
26 pipe:close()
27 cfg.cache_pwd = current
28 end
25 for _, directory in ipairs(dir_stack) do 29 for _, directory in ipairs(dir_stack) do
26 current = fs.absolute_name(directory, current) 30 current = fs.absolute_name(directory, current)
27 end 31 end
@@ -34,7 +38,7 @@ end
34-- @return boolean: true if command succeeds (status code 0), false 38-- @return boolean: true if command succeeds (status code 0), false
35-- otherwise. 39-- otherwise.
36function tools.execute_string(cmd) 40function tools.execute_string(cmd)
37 local code = os.execute(command_at(fs.current_dir(), cmd)) 41 local code, err = os.execute(command_at(fs.current_dir(), cmd))
38 if code == 0 or code == true then 42 if code == 0 or code == true then
39 return true 43 return true
40 else 44 else
diff --git a/src/luarocks/manif.lua b/src/luarocks/manif.lua
index d160d2db..f1d1629c 100644
--- a/src/luarocks/manif.lua
+++ b/src/luarocks/manif.lua
@@ -133,7 +133,7 @@ function manif.load_manifest(repo_url)
133 local err, errcode 133 local err, errcode
134 for _, filename in ipairs(filenames) do 134 for _, filename in ipairs(filenames) do
135 pathname, err, errcode = fetch_manifest_from(repo_url, filename) 135 pathname, err, errcode = fetch_manifest_from(repo_url, filename)
136 if pathname or errcode == "network" then 136 if pathname then
137 break 137 break
138 end 138 end
139 end 139 end
diff --git a/src/luarocks/path_command.lua b/src/luarocks/path_cmd.lua
index 4e52bdc9..d52f985a 100644
--- a/src/luarocks/path_command.lua
+++ b/src/luarocks/path_cmd.lua
@@ -1,16 +1,16 @@
1 1
2--- Module implementing the LuaRocks "path" command. 2--- @module luarocks.path_cmd
3-- Return the currently configured package path. 3-- Driver for the `luarocks path` command.
4local path_command = {} 4local path_cmd = {}
5 5
6local path = require("luarocks.path")
7local cfg = require("luarocks.cfg")
8local util = require("luarocks.util") 6local util = require("luarocks.util")
9local deps = require("luarocks.deps") 7local deps = require("luarocks.deps")
8local cfg = require("luarocks.cfg")
9local path = require("luarocks.path")
10 10
11path_command.help_summary = "Return the currently configured package path." 11path_cmd.help_summary = "Return the currently configured package path."
12path_command.help_arguments = "" 12path_cmd.help_arguments = ""
13path_command.help = [[ 13path_cmd.help = [[
14Returns the package path currently configured for this installation 14Returns the package path currently configured for this installation
15of LuaRocks, formatted as shell commands to update LUA_PATH and 15of LuaRocks, formatted as shell commands to update LUA_PATH and
16LUA_CPATH. (On Unix systems, you may run: eval `luarocks path`) 16LUA_CPATH. (On Unix systems, you may run: eval `luarocks path`)
@@ -18,7 +18,7 @@ LUA_CPATH. (On Unix systems, you may run: eval `luarocks path`)
18 18
19--- Driver function for "path" command. 19--- Driver function for "path" command.
20-- @return boolean This function always succeeds. 20-- @return boolean This function always succeeds.
21function path_command.run(...) 21function path_cmd.run(...)
22 local flags = util.parse_flags(...) 22 local flags = util.parse_flags(...)
23 local deps_mode = deps.get_deps_mode(flags) 23 local deps_mode = deps.get_deps_mode(flags)
24 24
@@ -55,4 +55,4 @@ function path_command.run(...)
55 return true 55 return true
56end 56end
57 57
58return path_command 58return path_cmd