1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
--- Package building.
-- @module bliss.build
local utils = require "bliss.utils"
local archive = require "bliss.archive"
local pkg = require "bliss.pkg"
local download = require "bliss.download"
local checksum = require "bliss.checksum"
local glob = require "posix.glob"
local libgen = require "posix.libgen"
local sys_stat = require "posix.sys.stat"
local unistd = require "posix.unistd"
--- @table ppkg
-- Many functions use a table containing these cached package variables:
-- @field pkg package name
-- @field repo_dir package directory
-- @field sources list of sources
-- @field caches list of caches
-- @field ver package version
-- @field rel package release
local function new_ppkg(p, repo_dir, sources, caches, ver, rel)
return {
pkg = p,
repo_dir = repo_dir,
sources = sources,
caches = caches,
ver = ver,
rel = rel
}
end
local function build_extract(env, p)
if #p.caches == 0 then return end
utils.log(p.pkg, "Extracting sources")
for k,v in ipairs(p.caches) do
utils.mkcd(env.mak_dir.."/"..p.pkg.."/"..(p.sources[k][2] or ""))
local r = p.sources[k][1]
if r:match("^git%+") then
if not utils.run("cp", {"-PRf", v.."/.", "."}) then os.exit(false) end
elseif r:match("%.tar$")
or r:match("%.tar%...$")
or r:match("%.tar%....$")
or r:match("%.tar%.....$")
or r:match("%.t.z") then
archive.tar_extract(v)
else
if not utils.run("cp", {"-PRf", v, "."}) then os.exit(false) end
end
end
end
local function build_build(env, p)
local destdir = env.pkg_dir .. "/" .. p.pkg
utils.mkcd(env.mak_dir.."/"..p.pkg, destdir.."/"..env.pkg_db)
utils.log(p.pkg, "Starting build")
local logfile = env.log_dir .. "/" .. p.pkg .. "-" .. env.time .. "-" .. env.PID
local build_env = {
AR = os.getenv("AR") or "ar",
CC = os.getenv("CC") or "cc",
CXX = os.getenv("CXX") or "c++",
NM = os.getenv("NM") or "nm",
RANLIB = os.getenv("RANLIB") or "ranlib",
RUSTFLAGS = "--remap-path-prefix="..unistd.getcwd().."=. "..(os.getenv("RUSTFLAGS") or ""),
GOFLAGS = "-trimpath -modcacherw " .. (os.getenv("GOFLAGS") or ""),
GOPATH = unistd.getcwd() .. "/go",
}
local buildfile = p.repo_dir .. "/build"
if not utils.run(buildfile, {destdir, p.ver}, build_env, logfile) then
utils.log(p.pkg, "Build failed")
utils.log(p.pkg, "Log stored to " .. logfile)
os.exit(false)
end
if env.KEEPLOG ~= 1 then
unistd.unlink(logfile)
end
-- copy repository files to the package directory.
if not utils.run("cp", {"-LRf", p.repo_dir, destdir .. "/" .. env.pkg_db .. "/"}) then os.exit(false) end
utils.log(p.pkg, "Successfully built package")
end
local function gen_manifest(env, p)
utils.log(p.pkg, "Generating manifest")
-- Instead of running find, walk through the directories ourselves.
local function recurse_find(dir)
local mani = {}
-- Make use of GLOB_MARK to append a slash to directories for us.
local t = glob.glob(dir, glob.GLOB_MARK) or {}
for _,v in ipairs(t) do
if libgen.basename(v) ~= "charset.alias" and v:sub(-3) ~= ".la" then
table.insert(mani, v)
if v:sub(-1) == "/" then
local m = recurse_find(v .. "*")
-- join this result to mani.
for i=1,#m do
mani[#mani + 1] = m[i]
end
end
end
end
return mani
end
local destdir = env.pkg_dir .. "/" .. p.pkg
local manifest_file = destdir .. "/" .. env.pkg_db .. "/" .. p.pkg .. "/manifest"
local mani = recurse_find(destdir .. "/*")
table.insert(mani, manifest_file)
if sys_stat.stat(destdir .. "/etc") then
table.insert(mani, destdir .. "/" .. env.pkg_db .. "/" .. p.pkg .. "/etcsums")
end
-- Sort in reverse.
table.sort(mani, function (a,b) return b < a end)
-- Remove the prefix from each line and write to the manifest file.
local f = io.open(manifest_file, "w")
local prefix_len = string.len(destdir)
for _,v in ipairs(mani) do
f:write(v:sub(prefix_len + 1) .. "\n")
end
f:close()
end
local function gen_etcsums(env, p)
local destdir = env.pkg_dir .. "/" .. p.pkg
if not sys_stat.stat(destdir .. "/etc") then return end
utils.log(p.pkg, "Generating etcsums")
local db = destdir .. "/" .. env.pkg_db .. "/" .. p.pkg
local etcsums = assert(io.open(db .. "/etcsums", "w"))
local lines = pkg.read_lines(db .. "/manifest")
for _, line in ipairs(lines) do
-- beware that read_lines splits lines by spaces
line = line[1]
if string.sub(line, 1, 5) == "/etc/" and string.sub(line, -1) ~= "/" then
local f = destdir .. line
local sb = sys_stat.lstat(f)
if sys_stat.S_ISLNK(sb.st_mode) ~= 0 then
f = "/dev/null"
end
local hash = checksum.checksum_file(f)
etcsums:write(hash .. "\n")
end
end
etcsums:close()
end
--- The build action.
-- @tparam env env
-- @tparam table arg list of explicit packages to build
local function build(env, arg)
if #arg == 0 then end -- TODO
local explicit = {}
for _,p in ipairs(arg) do explicit[p] = true end
local db = {}
local deps = pkg.order(env, arg)
local deps_filtered = {}
-- Filter out implicit deps if they are already installed
-- TODO: pass a flag to pkg.order to filter out installed deps there?
for _,p in ipairs(deps) do
if explicit[p] or not pkg.isinstalled(env, p) then
table.insert(deps_filtered, p)
end
end
deps = deps_filtered
local msg_explicit = ""
local msg_implicit = ""
for _,p in ipairs(deps) do
if explicit[p] then
msg_explicit = msg_explicit .. " " .. p
else
msg_implicit = msg_implicit .. " " .. p
end
end
utils.log("Building: explicit:" .. msg_explicit .. (#msg_implicit > 0 and (", implicit:" .. msg_implicit) or ""))
if #msg_implicit > 0 then utils.prompt(env) end
-- append sys_db
local path = utils.shallowcopy(env.PATH)
table.insert(path, env.sys_db)
-- Download and verify sources
for _,p in ipairs(deps) do
local repo_dir = pkg.find(p, path)
local version = pkg.find_version(p, repo_dir)
-- Check for pre-built dependencies
if not explicit[p] and pkg.iscached(env, p, version) then
utils.log(p, "Found pre-built binary (TODO)")
-- TODO: force install
end
local sources = pkg.find_sources(p, repo_dir)
local caches = pkg.resolve(p, sources, env, repo_dir)
download.download_sources(env, p, sources, caches)
checksum.verify_checksums(p, repo_dir, caches)
table.insert(db, new_ppkg(p, repo_dir, sources, caches, version[1], version[2]))
end
-- Now build
for index, p in ipairs(db) do
utils.log(p.pkg, "Building package ("..index.."/"..#db..")")
build_extract(env, p)
build_build(env, p)
-- TODO: strip? fix_deps?
gen_manifest(env, p)
gen_etcsums(env, p)
archive.tar_create(env, p)
if not explicit[p.pkg] then
-- TODO: force install
utils.log(p.pkg, "Needed as a dependency or has an update, installing (TODO)")
end
end
end
--- @export
local M = {
build = build,
}
return M
|