abuild/ap.in

119 lines
2.1 KiB
Lua
Executable File

#!/usr/bin/lua
require("aports")
-- subcommands -----------------------
subcmd = {}
subcmd.revdep = {
desc = "Print reverse dependencies",
usage = "PKG...",
run = function(opts)
local i
local apkdb, rev = aports.init_apkdb(repodirs)
for i = 2, #opts do
local pkg = opts[i]
local _,p
for _,p in pairs(rev[pkg] or {}) do
print(p.pkgname)
end
end
end
}
subcmd.list = {
desc = "Print all packages built from aports tree",
usage = "",
run = function()
local apkdb = aports.init_apkdb(repodirs)
local k,v
for k,v in pairs(apkdb) do
print(k)
end
end
}
subcmd.recursdeps = {
desc = "Recursively print all make dependencies for given packages",
usage = "PKG...",
run = function (opts)
local db, rev = aports.init_apkdb(repodirs)
for i = 2, #opts do
aports.recurs_until(db, opts[i], function(pn)
print(pn)
end)
end
end
}
subcmd.builddirs = {
desc = "Print the build dirs for given packages in build order",
usage = "PKG...",
run = function(opts)
local i, p, _
local visited = {}
local db, rev = aports.init_apkdb(repodirs)
local to_print = {}
for i = 2, #opts do
for _,p in pairs(db[opts[i]]) do
to_print[p.dir] = true
end
end
for i = 2, #opts do
aports.recurs_until(db, opts[i], function(pn)
local j,p
for j, p in pairs(db[pn]) do
if to_print[p.dir] then
print(p.dir)
to_print[p.dir] = nil
end
end
end)
end
end
}
function print_usage()
io.write("usage: ap -d <DIR> SUBCOMMAND [options]\n\nSubcommands are:\n")
local k,v
for k in pairs(subcmd) do
print(" "..k)
end
end
-- those should be read from some config file
repodirs = {}
-- parse args
i = 1
opts = {}
help = false
while i <= #arg do
if arg[i] == "-d" then
i = i + 1
repodirs[#repodirs + 1] = arg[i]
elseif arg[i] == "-h" then
help = true
else
opts[#opts + 1] = arg[i]
end
i = i + 1
end
cmd = opts[1]
if cmd == nil then
print_usage()
-- usage
return
end
if subcmd[cmd] and type(subcmd[cmd].run) == "function" then
subcmd[cmd].run(opts)
else
io.stderr:write(cmd..": invalid subcommand\n")
end