aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/command_line.lua6
-rw-r--r--src/luarocks/dir.lua10
-rw-r--r--src/luarocks/fs.lua5
-rw-r--r--src/luarocks/search.lua1
4 files changed, 20 insertions, 2 deletions
diff --git a/src/luarocks/command_line.lua b/src/luarocks/command_line.lua
index 63b918b5..059b7a1c 100644
--- a/src/luarocks/command_line.lua
+++ b/src/luarocks/command_line.lua
@@ -61,6 +61,12 @@ function run_command(...)
61 61
62 local command 62 local command
63 63
64 if flags["verbose"] then -- setting it in the config file will kick-in earlier in the process
65 cfg.verbose = true
66 local fs = require("luarocks.fs")
67 fs.verbose()
68 end
69
64 if flags["version"] then 70 if flags["version"] then
65 util.printout(program.." "..cfg.program_version) 71 util.printout(program.." "..cfg.program_version)
66 util.printout(program_description) 72 util.printout(program_description)
diff --git a/src/luarocks/dir.lua b/src/luarocks/dir.lua
index 3c7465bb..e8cd746e 100644
--- a/src/luarocks/dir.lua
+++ b/src/luarocks/dir.lua
@@ -64,6 +64,14 @@ function split_url(url)
64 return protocol, pathname 64 return protocol, pathname
65end 65end
66 66
67--- Normalize a url or local path.
68-- URLs should be in the "protocol://path" format. System independent
69-- forward slashes are used, removing trailing and double slashes
70-- @param url string: an URL or a local pathname.
71-- @return string: Normalized result.
67function normalize(name) 72function normalize(name)
68 return name:gsub("\\", "/"):gsub("(.)/*$", "%1") 73 local protocol, pathname = split_url(name)
74 pathname = pathname:gsub("\\", "/"):gsub("(.)/*$", "%1"):gsub("//", "/")
75 if protocol ~= "file" then pathname = protocol .."://"..pathname end
76 return pathname
69end 77end
diff --git a/src/luarocks/fs.lua b/src/luarocks/fs.lua
index 2d799da2..b281eb14 100644
--- a/src/luarocks/fs.lua
+++ b/src/luarocks/fs.lua
@@ -14,7 +14,9 @@ local cfg = require("luarocks.cfg")
14local pack = table.pack or function(...) return { n = select("#", ...), ... } end 14local pack = table.pack or function(...) return { n = select("#", ...), ... } end
15local unpack = table.unpack or unpack 15local unpack = table.unpack or unpack
16 16
17if cfg.verbose then -- patch io.popen and os.execute to display commands in verbose mode 17local old_popen, old_exec
18_M.verbose = function() -- patch io.popen and os.execute to display commands in verbose mode
19 if old_popen or old_exec then return end
18 old_popen = io.popen 20 old_popen = io.popen
19 io.popen = function(one, two) 21 io.popen = function(one, two)
20 if two == nil then 22 if two == nil then
@@ -36,6 +38,7 @@ if cfg.verbose then -- patch io.popen and os.execute to display commands in verb
36 return unpack(code, 1, code.n) 38 return unpack(code, 1, code.n)
37 end 39 end
38end 40end
41if cfg.verbose then _M.verbose() end
39 42
40local function load_fns(fs_table) 43local function load_fns(fs_table)
41 for name, fn in pairs(fs_table) do 44 for name, fn in pairs(fs_table) do
diff --git a/src/luarocks/search.lua b/src/luarocks/search.lua
index 356e06e8..76ea6815 100644
--- a/src/luarocks/search.lua
+++ b/src/luarocks/search.lua
@@ -305,6 +305,7 @@ function print_results(results, porcelain)
305 end 305 end
306 for version, repos in util.sortedpairs(versions, deps.compare_versions) do 306 for version, repos in util.sortedpairs(versions, deps.compare_versions) do
307 for _, repo in ipairs(repos) do 307 for _, repo in ipairs(repos) do
308 repo.repo = dir.normalize(repo.repo)
308 if porcelain then 309 if porcelain then
309 util.printout(package, version, repo.arch, repo.repo) 310 util.printout(package, version, repo.arch, repo.repo)
310 else 311 else