mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl about: Report version of lua-readline
Good to know since it affects how well the shell works
This commit is contained in:
parent
cbcb57fa24
commit
c50c315705
1 changed files with 8 additions and 2 deletions
10
prosodyctl
10
prosodyctl
|
@ -484,6 +484,7 @@ function commands.about(arg)
|
||||||
local library_versions = {};
|
local library_versions = {};
|
||||||
dependencies.softreq"ssl";
|
dependencies.softreq"ssl";
|
||||||
dependencies.softreq"DBI";
|
dependencies.softreq"DBI";
|
||||||
|
dependencies.softreq"readline";
|
||||||
local friendly_names = {
|
local friendly_names = {
|
||||||
DBI = "LuaDBI";
|
DBI = "LuaDBI";
|
||||||
lfs = "LuaFileSystem";
|
lfs = "LuaFileSystem";
|
||||||
|
@ -492,17 +493,22 @@ function commands.about(arg)
|
||||||
socket = "LuaSocket";
|
socket = "LuaSocket";
|
||||||
ssl = "LuaSec";
|
ssl = "LuaSec";
|
||||||
};
|
};
|
||||||
|
local alternate_version_fields = {
|
||||||
|
-- These diverge from the module._VERSION convention
|
||||||
|
readline = "Version";
|
||||||
|
}
|
||||||
local lunbound = dependencies.softreq"lunbound";
|
local lunbound = dependencies.softreq"lunbound";
|
||||||
local lxp = dependencies.softreq"lxp";
|
local lxp = dependencies.softreq"lxp";
|
||||||
local hashes = dependencies.softreq"util.hashes";
|
local hashes = dependencies.softreq"util.hashes";
|
||||||
for name, module in pairs(package.loaded) do
|
for name, module in pairs(package.loaded) do
|
||||||
if type(module) == "table" and rawget(module, "_VERSION")
|
local version_field = alternate_version_fields[name] or "_VERSION";
|
||||||
|
if type(module) == "table" and rawget(module, version_field)
|
||||||
and name ~= "_G" and not name:match("%.") then
|
and name ~= "_G" and not name:match("%.") then
|
||||||
name = friendly_names[name] or name;
|
name = friendly_names[name] or name;
|
||||||
if #name > longest_name then
|
if #name > longest_name then
|
||||||
longest_name = #name;
|
longest_name = #name;
|
||||||
end
|
end
|
||||||
local mod_version = module._VERSION;
|
local mod_version = module[version_field];
|
||||||
if tostring(mod_version):sub(1, #name+1) == name .. " " then
|
if tostring(mod_version):sub(1, #name+1) == name .. " " then
|
||||||
mod_version = mod_version:sub(#name+2);
|
mod_version = mod_version:sub(#name+2);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue