aports.lua: warn if data for a package is missing

This might happen if package name appears as a dependency but there
are no apkbuild for it.
This commit is contained in:
Natanael Copa 2011-07-06 06:29:12 +00:00
parent 77eb895cc7
commit 66501a24b4

View File

@ -164,6 +164,9 @@ end
function Aports:foreach_pkg(pkg, f)
local k,v
if self.apks[pkg] == nil then
io.stderr:write("WARNING: "..pkg.." has no data\n")
end
for k,v in pairs(self.apks[pkg]) do
f(k,v)
end