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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
|
if not modules then modules = { } end modules ['mtx-update'] = {
version = 1.001,
comment = "companion to mtxrun.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- This script is dedicated to Mojca Miklavec, who is the driving force behind
-- moving minimal generation from our internal machines to the context garden.
-- Together with Arthur Reutenauer she made sure that it worked well on all
-- platforms that matter.
texmf.instance = instance -- we need to get rid of this / maybe current instance in global table
scripts = scripts or { }
scripts.update = scripts.update or { }
minimals = minimals or { }
minimals.config = minimals.config or { }
os.setenv("CYGWIN","nontsec")
scripts.update.formats = {
"cont-en",
"cont-nl",
"cont-cz",
"cont-de",
"cont-fa",
"cont-it",
"cont-ro",
"cont-uk",
"metafun",
"mptopdf",
"plain"
}
scripts.update.repositories = {
"current",
"experimental"
}
scripts.update.versions = {
"current",
"latest"
}
scripts.update.engines = {
["luatex"] = {
{ "base/tex/", "texmf" },
{ "base/metapost/", "texmf" },
{ "fonts/new/", "texmf" },
{ "fonts/common/", "texmf" },
{ "fonts/other/", "texmf" },
{ "context/<version>/", "texmf-context" },
{ "context/img/", "texmf-context" },
{ "context/config/", "texmf-context" },
{ "misc/setuptex/", "." },
{ "misc/web2c", "texmf" },
{ "bin/common/<platform>/", "texmf-<platform>" },
{ "bin/context/<platform>/", "texmf-<platform>" },
{ "bin/metapost/<platform>/", "texmf-<platform>" },
{ "bin/luatex/<platform>/", "texmf-<platform>" },
{ "bin/man/", "texmf-<platform>" }
},
["xetex"] = {
{ "base/tex/", "texmf" },
{ "base/metapost/", "texmf" },
{ "base/xetex/", "texmf" },
{ "fonts/new/", "texmf" },
{ "fonts/common/", "texmf" },
{ "fonts/other/", "texmf" },
{ "context/<version>/", "texmf-context" },
{ "context/img/", "texmf-context" },
{ "context/config/", "texmf-context" },
{ "misc/setuptex/", "." },
{ "misc/web2c", "texmf" },
{ "bin/common/<platform>/", "texmf-<platform>" },
{ "bin/context/<platform>/", "texmf-<platform>" },
{ "bin/metapost/<platform>/", "texmf-<platform>" },
{ "bin/xetex/<platform>/", "texmf-<platform>" },
{ "bin/man/", "texmf-<platform>" }
},
["pdftex"] = {
{ "base/tex/", "texmf" },
{ "base/metapost/", "texmf" },
{ "fonts/old/", "texmf" },
{ "fonts/common/", "texmf" },
{ "fonts/other/", "texmf" },
{ "context/<version>/", "texmf-context" },
{ "context/img/", "texmf-context" },
{ "context/config/", "texmf-context" },
{ "misc/setuptex/", "." },
{ "misc/web2c", "texmf" },
{ "bin/common/<platform>/", "texmf-<platform>" },
{ "bin/context/<platform>/", "texmf-<platform>" },
{ "bin/metapost/<platform>/", "texmf-<platform>" },
{ "bin/pdftex/<platform>/", "texmf-<platform>" },
{ "bin/man/", "texmf-<platform>" }
},
["all"] = {
{ "base/tex/", "texmf" },
{ "base/metapost/", "texmf" },
{ "base/xetex/", "texmf" },
{ "fonts/old/", "texmf" },
{ "fonts/new/", "texmf" },
{ "fonts/common/", "texmf" },
{ "fonts/other/", "texmf" },
{ "context/<version>/", "texmf-context" },
{ "context/img/", "texmf-context" },
{ "context/config/", "texmf-context" },
{ "misc/setuptex/", "." },
{ "misc/web2c", "texmf" },
{ "bin/common/<platform>/", "texmf-<platform>" },
{ "bin/context/<platform>/", "texmf-<platform>" },
{ "bin/metapost/<platform>/", "texmf-<platform>" },
{ "bin/luatex/<platform>/", "texmf-<platform>" },
{ "bin/xetex/<platform>/", "texmf-<platform>" },
{ "bin/pdftex/<platform>/", "texmf-<platform>" },
{ "bin/man/", "texmf-<platform>" }
},
}
scripts.update.platforms = {
["mswin"] = "mswin",
["windows"] = "mswin",
["win32"] = "mswin",
["win"] = "mswin",
["linux"] = "linux",
["freebsd"] = "freebsd",
["linux-32"] = "linux",
["linux-64"] = "linux-64",
["osx"] = "osx-intel",
["osx-intel"] = "osx-intel",
["osx-ppc"] = "osx-ppc",
}
function scripts.update.run(str)
logs.report("run", str)
if environment.argument("force") then
-- important, otherwise formats fly to a weird place
-- (texlua sets luatex as the engine, we need to reset that or to fix texexec :)
os.setenv("engine",nil)
os.execute(str)
end
end
function scripts.update.fullpath(path)
if input.aux.rootbased_path(path) then
return path
else
return lfs.currentdir() .. "/" .. path
end
end
function scripts.update.synchronize()
logs.report("update","start")
local texroot = scripts.update.fullpath(states.get("paths.root"))
local engines = states.get('engines')
local platforms = states.get('platforms')
local repositories = states.get('repositories')
local bin = states.get("rsync.program")
local url = states.get("rsync.server")
local version = states.get("context.version")
local force = environment.argument("force")
if not url:find("::$") then url = url .. "::" end
local ok = lfs.attributes(texroot,"mode") == "directory"
if not ok and force then
dir.mkdirs(texroot)
ok = lfs.attributes(texroot,"mode") == "directory"
end
if ok or not force then
if force then
dir.mkdirs(string.format("%s/%s", texroot, "texmf-cache"))
end
local fetched, individual = { }, { }
for engine, _ in pairs(engines) do
local collections = scripts.update.engines[engine]
if collections then
for _, collection in ipairs(collections) do
for platform, _ in pairs(platforms) do
platform = scripts.update.platforms[platform]
if platform then
local archive = collection[1]:gsub("<platform>", platform)
local destination = string.format("%s/%s", texroot, collection[2]:gsub("<platform>", platform))
destination = destination:gsub("\\","/")
archive = archive:gsub("<version>",version)
if platform == "windows" or platform == "mswin" then
destination = destination:gsub("([a-zA-Z]):/", "/cygdrive/%1/")
end
individual[#individual+1] = { archive, destination }
end
end
end
end
end
local combined = { }
for _, repository in ipairs(scripts.update.repositories) do
if repositories[repository] then
for _, v in pairs(individual) do
local archive, destination = v[1], v[2]
local cd = combined[destination]
if not cd then
cd = { }
combined[destination] = cd
end
cd[#cd+1] = string.format("%s/%s/%s",states.get('rsync.module'),repository,archive)
end
end
end
if input.verbose then
for k, v in pairs(combined) do
logs.report("update", k)
for k,v in ipairs(v) do
logs.report("update", " <= " .. v)
end
end
end
for destination, archive in pairs(combined) do
local archives, command = table.concat(archive," "), ""
local normalflags, deleteflags = states.get("rsync.flags.normal"), states.get("rsync.flags.delete")
if true then -- environment.argument("keep") or destination:find("%.$") then
command = string.format("%s %s %s'%s' '%s'", bin, normalflags, url, archives, destination)
else
command = string.format("%s %s %s %s'%s' '%s'", bin, normalflags, deleteflags, url, archives, destination)
end
logs.report("mtx update", string.format("running command: %s",command))
if not fetched[command] then
scripts.update.run(command)
fetched[command] = command
end
end
else
logs.report("mtx update", string.format("no valid texroot: %s",texroot))
end
if not force then
logs.report("update", "use --force to really update")
end
logs.report("update","done")
end
function table.fromhash(t)
local h = { }
for k, v in pairs(t) do -- no ipairs here
if v then h[#h+1] = k end
end
return h
end
function scripts.update.make()
logs.report("make","start")
local force = environment.argument("force")
local texroot = scripts.update.fullpath(states.get("paths.root"))
local engines = states.get('engines')
local platforms = states.get('platforms')
local formats = states.get('formats')
input.load_tree(texroot)
scripts.update.run("mktexlsr")
scripts.update.run("luatools --generate")
local formatlist = table.concat(table.fromhash(formats), " ")
if formatlist ~= "" then
for engine in pairs(engines) do
-- todo: just handle make here or in mtxrun --script context --make
--~ os.execute("set")
scripts.update.run(string.format("texexec --make --all --fast --%s %s",engine,formatlist))
end
end
if not force then
logs.report("make", "use --force to really make")
end
logs.report("make","done")
end
banner = banner .. " | download tools "
messages.help = [[
--platform=string platform (windows, linux, linux-64, osx-intel, osx-ppc)
--server=string repository url (rsync://contextgarden.net)
--module=string repository url (minimals)
--repository=string specify version (current, experimental)
--context=string specify version (current, latest, yyyy.mm.dd)
--rsync=string rsync binary (rsync)
--texroot installation directory (not guessed for the moment)
--engine tex engine (luatex, pdftex, xetex)
--force instead of a dryrun, do the real thing
--update update minimal tree
--make also make formats and generate file databases
--keep don't delete unused or obsolete files
--state update tree using saved state
]]
input.verbose = true
scripts.savestate = true
if scripts.savestate then
states.load("status-of-update.lua")
-- tag, value, default, persistent
input.starttiming(states)
states.set("info.version",0.1) -- ok
states.set("info.count",(states.get("info.count") or 0) + 1,1,false) -- ok
states.set("info.comment","this file contains the settings of the last 'mtxrun --script update ' run",false) -- ok
states.set("info.date",os.date("!%Y-%m-%d %H:%M:%S")) -- ok
states.set("rsync.program", environment.argument("rsync"), "rsync", true) -- ok
states.set("rsync.server", environment.argument("server"), "contextgarden.net::", true) -- ok
states.set("rsync.module", environment.argument("module"), "minimals", true) -- ok
states.set("rsync.flags.normal", environment.argument("flags"), "-rpztlv --stats", true) -- ok
states.set("rsync.flags.delete", nil, "--delete", true) -- ok
states.set("paths.root", environment.argument("texroot"), "tex", true) -- ok
states.set("context.version", environment.argument("context"), "current", true) -- ok
local valid = table.tohash(scripts.update.repositories)
for r in string.gmatch(environment.argument("repository") or "current","([^, ]+)") do
if valid[r] then states.set("repositories." .. r, true) end
end
local valid = scripts.update.engines
for r in string.gmatch(environment.argument("engine") or "all","([^, ]+)") do
if r == "all" then
for k, v in pairs(valid) do
if k ~= "all" then
states.set("engines." .. k, true)
end
end
elseif valid[r] then
states.set("engines." .. r, true)
end
end
local valid = scripts.update.platforms
for r in string.gmatch(environment.argument("platform") or os.currentplatform(),"([^, ]+)") do
if valid[r] then states.set("platforms." .. r, true) end
end
local valid = table.tohash(scripts.update.formats)
for r in string.gmatch(environment.argument("formats") or "","([^, ]+)") do
if valid[r] then states.set("formats." .. r, true) end
end
states.set("formats.cont-en", true)
states.set("formats.cont-nl", true)
states.set("formats.metafun", true)
-- modules
logs.report("state","loaded")
end
if environment.argument("state") then
environment.setargument("update",true)
environment.setargument("force",true)
environment.setargument("make",true)
end
if environment.argument("update") then
scripts.update.synchronize()
if environment.argument("make") then
scripts.update.make()
end
elseif environment.argument("make") then
scripts.update.make()
else
input.help(banner,messages.help)
end
if scripts.savestate then
input.stoptiming(states)
states.set("info.runtime",tonumber(input.elapsedtime(states)))
if environment.argument("force") then
states.save()
logs.report("state","saved")
end
end
|