Skip to content
Snippets Groups Projects
Commit 85b54b35 authored by Natanael Copa's avatar Natanael Copa
Browse files

aports.lua: implement get_maintainer()

So we can fish out the maintainer from given aport
parent fda6873c
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,26 @@ function foreach_remote_source(p, func)
end
end
function get_maintainer(pkg)
if pkg == nil or pkg.dir == nil then
return nil
end
local f = io.open(pkg.dir.."/APKBUILD")
if f == nil then
return nil
end
local line
for line in f:lines() do
local maintainer = line:match("^%s*#%s*Maintainer:%s*(.*)")
if maintainer then
f:close()
return maintainer
end
end
f:close()
return nil
end
local function init_apkdb(repodirs)
local pkgdb = {}
local revdeps = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment