summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xaports.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/aports.lua b/aports.lua
index 3f7e9ae..e513a61 100755
--- a/aports.lua
+++ b/aports.lua
@@ -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 = {}