include all source not just GPL

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2016-03-22 11:23:55 +00:00
parent e734661558
commit dfd70a1d1d
4 changed files with 22 additions and 24 deletions

16
licensing/packages.lua Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/lua
p = {}
f = io.open("/lib/apk/db/installed")
for line in f:lines() do
if line == "" then
print(p.P, p.L, p.c)
p = {}
else
k, v = line:match("(%a):(.*)")
if k then
p[k] = v
end
end
end