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
|
--[[
File l3build-stdmain.lua Copyright (C) 2018-2021 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
license or (at your option) any later version. The latest version
of this license is in the file
http://www.latex-project.org/lppl.txt
This file is part of the "l3build bundle" (The Work in LPPL)
and all files in that bundle must be distributed together.
-----------------------------------------------------------------------
The development version of the bundle can be found at
https://github.com/latex3/l3build
for those people who are interested.
--]]
local lfs = require("lfs")
local exit = os.exit
local insert = table.insert
-- List all modules
function listmodules()
local modules = { }
local exclmodules = exclmodules or { }
for entry in lfs.dir(".") do
if entry ~= "." and entry ~= ".." then
local attr = lfs.attributes(entry)
assert(type(attr) == "table")
if attr.mode == "directory" then
if not exclmodules[entry] then
insert(modules, entry)
end
end
end
end
return modules
end
target_list =
{
-- Some hidden targets
bundlecheck =
{
func = check,
pre = function(names)
if names then
print("Bundle checks should not list test names")
help()
exit(1)
end
return 0
end
},
bundlectan =
{
func = bundlectan
},
bundleunpack =
{
func = bundleunpack,
pre = function() return(dep_install(unpackdeps)) end
},
-- Public targets
check =
{
bundle_target = true,
desc = "Run all automated tests",
func = check,
},
clean =
{
bundle_func = bundleclean,
desc = "Clean out directory tree",
func = clean
},
ctan =
{
bundle_func = ctan,
desc = "Create CTAN-ready archive",
func = ctan
},
doc =
{
desc = "Typesets all documentation files",
func = doc
},
install =
{
desc = "Installs files into the local texmf tree",
func = install
},
manifest =
{
desc = "Creates a manifest file",
func = manifest
},
save =
{
desc = "Saves test validation log",
func = save
},
tag =
{
bundle_func = function(names)
local modules = modules or listmodules()
local errorlevel = call(modules,"tag")
-- Deal with any files in the bundle dir itself
if errorlevel == 0 then
errorlevel = tag(names)
end
return errorlevel
end,
desc = "Updates release tags in files",
func = tag,
pre = function(names)
if names and #names > 1 then
print("Too many tags specified; exactly one required")
exit(1)
end
return 0
end
},
uninstall =
{
desc = "Uninstalls files from the local texmf tree",
func = uninstall
},
unpack=
{
bundle_target = true,
desc = "Unpacks the source files into the build tree",
func = unpack
},
upload =
{
desc = "Send archive to CTAN for public release",
func = upload
},
}
--
-- The overall main function
--
function main(target,names)
-- Deal with unknown targets up-front
if not target_list[target] then
help()
exit(1)
end
local errorlevel = 0
if module == "" then
modules = modules or listmodules()
if target_list[target].bundle_func then
errorlevel = target_list[target].bundle_func(names)
else
-- Detect all of the modules
if target_list[target].bundle_target then
target = "bundle" .. target
end
errorlevel = call(modules,target)
end
else
if target_list[target].pre then
errorlevel = target_list[target].pre(names)
if errorlevel ~= 0 then
exit(1)
end
end
errorlevel = target_list[target].func(names)
end
-- All done, finish up
if errorlevel ~= 0 then
exit(1)
else
exit(0)
end
end
|