aboutsummaryrefslogtreecommitdiffstats
path: root/utils.lua
diff options
context:
space:
mode:
Diffstat (limited to 'utils.lua')
-rw-r--r--utils.lua22
1 files changed, 14 insertions, 8 deletions
diff --git a/utils.lua b/utils.lua
index d53100a..45af153 100644
--- a/utils.lua
+++ b/utils.lua
@@ -1,10 +1,6 @@
-local M = {}
-
+local conf = require("config")
-M.allowed = {
- archs = { x86=1, x86_64=2, armhf=3, aarch64=4, ppc64le=5, s390x=6 },
- repos = { main=1, community=2, testing=3, backports=4 }
-}
+local M = {}
function M.in_array(t, value)
for k,v in ipairs(t) do
@@ -28,6 +24,16 @@ function M.write_file(file, string)
end
----
+-- convert array to list
+function M.to_list(t)
+ local res = {}
+ for k,v in ipairs(t) do
+ res[v] = k
+ end
+ return res
+end
+
+----
-- table iterator which sorts on keys
function M.kpairs(t, f)
local keys = {}
@@ -51,7 +57,7 @@ end
----
-- repo sort function for kpairs
function M.sort_repo(a,b)
- local repos = M.allowed.repos
+ local repos = M.to_list(conf.repos)
if type(repos[a]) == "number" and type(repos[b]) == "number" then
if repos[a] < repos[b] then return true end
end
@@ -60,7 +66,7 @@ end
----
-- arch sort function for kpairs
function M.sort_arch(a,b)
- local archs = M.allowed.archs
+ local archs = M.to_list(conf.archs)
if type(archs[a]) == "number" and type(archs[b]) == "number" then
if archs[a] < archs[b] then return true end
end