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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
|
--[[
File l3build.lua (C) Copyright 2014-2015 The LaTeX3 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 released version of this bundle is available from CTAN.
--]]
-- Version information: should be identical to that in l3build.dtx
release_date = "2015/10/05"
release_ver = "6172"
-- "module" is a deprecated function in Lua 5.2: as we want the name
-- for other purposes, and it should eventually be 'free', simply
-- remove the built-in
if type(module) == "function" then
module = nil
end
-- Ensure the module and bundle exist
module = module or ""
bundle = bundle or ""
-- Sanity check
if module == "" and bundle == "" then
if string.match(arg[0], ".*l3build%.lua$") then
print(
"\n"
.. "Error: Call l3build using a configuration file, not directly.\n"
)
else
print(
"\n"
.. "Error: Specify either bundle or module in configuration script.\n"
)
end
os.exit(1)
end
-- Directory structure for the build system
-- Use Unix-style path separators
maindir = maindir or "."
-- Substructure for tests and support files
testfiledir = testfiledir or "testfiles" -- Set to "" to cancel any tests
testsuppdir = testsuppdir or testfiledir .. "/support"
supportdir = supportdir or maindir .. "/support"
-- Structure within a development area
distribdir = distribdir or maindir .. "/build/distrib"
localdir = localdir or maindir .. "/build/local"
testdir = testdir or maindir .. "/build/test"
typesetdir = typesetdir or maindir .. "/build/doc"
unpackdir = unpackdir or maindir .. "/build/unpacked"
-- Substructure for CTAN release material
ctandir = ctandir or distribdir .. "/ctan"
tdsdir = tdsdir or distribdir .. "/tds"
tdsroot = tdsroot or "latex"
-- Location for installation on CTAN or in TEXMFHOME
if bundle == "" then
moduledir = tdsroot .. "/" .. module
ctanpkg = ctanpkg or module
else
moduledir = tdsroot .. "/" .. bundle .. "/" .. module
ctanpkg = ctanpkg or bundle
end
-- File types for various operations
-- Use Unix-style globs
-- All of these may be set earlier, so a initialised conditionally
bibfiles = bibfiles or {"*.bib"}
binaryfiles = binaryfiles or {"*.pdf", "*.zip"}
bstfiles = bstfiles or {"*.bst"}
checkfiles = checkfiles or { }
checksuppfiles = checksuppfiles or { }
cmdchkfiles = cmdchkfiles or { }
cleanfiles = cleanfiles or {"*.log", "*.pdf", "*.zip"}
demofiles = demofiles or { }
docfiles = docfiles or { }
excludefiles = excludefiles or {"*~"}
installfiles = installfiles or {"*.sty"}
makeindexfiles = makeindexfiles or {"*.ist"}
sourcefiles = sourcefiles or {"*.dtx", "*.ins"}
textfiles = textfiles or {"*.md", "*.txt"}
typesetfiles = typesetfiles or {"*.dtx"}
typesetsuppfiles = typesetsuppfiles or { }
unpackfiles = unpackfiles or {"*.ins"}
unpacksuppfiles = unpacksuppfiles or { }
versionfiles = versionfiles or {"*.dtx"}
-- Roots which should be unpacked to support unpacking/testing/typesetting
checkdeps = checkdeps or { }
typesetdeps = typesetdeps or { }
unpackdeps = unpackdeps or { }
-- Executable names plus following options
typesetexe = typesetexe or "pdflatex"
unpackexe = unpackexe or "tex"
zipexe = "zip"
checkopts = checkopts or "-interaction=batchmode"
cmdchkopts = cmdchkopts or "-interaction=batchmode"
typesetopts = typesetopts or "-interaction=nonstopmode"
unpackopts = unpackopts or ""
zipopts = zipopts or "-v -r -X"
-- Engines for testing
checkengines = checkengines or {"pdftex", "xetex", "luatex"}
checkformat = checkformat or "latex"
stdengine = stdengine or "pdftex"
-- Enable access to trees outside of the repo
-- As these may be set false, a more elaborate test than normal is needed
-- here
if checksearch == nil then
checksearch = true
end
if typesetsearch == nil then
typesetsearch = true
end
if unpacksearch == nil then
unpacksearch = true
end
-- Additional settings to fine-tune typesetting
glossarystyle = glossarystyle or "gglo.ist"
indexstyle = indexstyle or "gind.ist"
-- Supporting binaries and options
biberexe = biberexe or "biber"
biberopts = biberopts or ""
bibtexexe = bibtexexe or "bibtex8"
bibtexopts = bibtexopts or "-W"
makeindexexe = makeindexexe or "makeindex"
makeindexopts = makeindexopts or ""
-- Other required settings
asciiengines = asciiengines or {"pdftex"}
checkruns = checkruns or 1
packtdszip = packtdszip or false -- Not actually needed but clearer
scriptname = scriptname or "build.lua" -- Script used in each directory
typesetcmds = typesetcmds or ""
versionform = versionform or ""
-- Extensions for various file types: used to abstract out stuff a bit
bakext = bakext or ".bak"
logext = logext or ".log"
lveext = lveext or ".lve"
lvtext = lvtext or ".lvt"
tlgext = tlgext or ".tlg"
-- Run time options
-- These are parsed into a global table, and all optional args
-- are made available as a related global var
function argparse()
local result = { }
local files = { }
local long_options =
{
date = "date" ,
engine = "engine" ,
["halt-on-error"] = "halt" ,
["halt-on-failure"] = "halt" ,
help = "help" ,
quiet = "quiet" ,
version = "version"
}
local short_options =
{
d = "date" ,
e = "engine" ,
h = "help" ,
H = "halt" ,
q = "quiet" ,
v = "version"
}
local option_args =
{
date = true ,
engine = true ,
halt = false,
help = false,
quiet = false,
version = true
}
-- arg[1] is a special case: must be a command or "-h"/"--help"
-- Deal with this by assuming help and storing only apparently-valid
-- input
local a = arg[1]
result["target"] = "help"
if a then
-- No options are allowed in position 1, so filter those out
if not string.match(a, "^%-") then
result["target"] = a
end
end
-- Stop here if help is required
if result["target"] == "help" then
return result
end
-- An auxiliary to grab all file names into a table
local function remainder(num)
local i
local files = { }
for i = num, #arg do
table.insert(files, arg[i])
end
return files
end
-- Examine all other arguments
-- Use a while loop rather than for as this makes it easier
-- to grab arg for optionals where appropriate
local i = 2
while i <= #arg do
local a = arg[i]
-- Terminate search for options
if a == "--" then
files = remainder(i + 1)
break
end
-- Look for optionals
local opt, optarg
local opts
-- Look for and option and get it into a variable
if string.match(a, "^%-") then
if string.match(a, "^%-%-") then
opts = long_options
local pos = string.find(a, "=", 1, true)
if pos then
opt = string.sub(a, 3, pos - 1)
optarg = string.sub(a, pos + 1)
else
opt = string.sub(a,3)
end
else
opts = short_options
opt = string.sub(a, 2, 2)
-- Only set optarg if it is there
if #a > 2 then
optarg = string.sub(a, 3)
end
end
-- Now check that the option is valid and sort out the argument
-- if required
local optname = opts[opt]
if optname then
local reqarg = option_args[optname]
-- Tidy up arguments
if reqarg and not optarg then
optarg = arg[i + 1]
if not optarg then
io.stderr:write("Missing value for option " .. a .."\n")
return {"help"}
end
i = i + 1
end
if not reqarg and optarg then
io.stderr:write("Value not allowed for option " .. a .."\n")
return {"help"}
end
else
io.stderr:write("Unknown option " .. a .."\n")
return {"help"}
end
-- Store the result
if optarg then
local opts = result[optname] or { }
local match
for match in string.gmatch(optarg, "([^,%s]+)") do
table.insert(opts, match)
end
result[optname] = opts
else
result[optname] = true
end
i = i + 1
end
if not opt then
files = remainder(i)
break
end
end
result["files"] = files
return result
end
userargs = argparse()
optdate = userargs["date"]
optengines = userargs["engine"]
opthalt = userargs["halt"]
opthelp = userargs["help"]
optquiet = userargs["quiet"]
optversion = userargs["version"]
-- Convert a file glob into a pattern for use by e.g. string.gub
-- Based on https://github.com/davidm/lua-glob-pattern
-- Simplified substantially: "[...]" syntax not supported as is not
-- required by the file patterns used by the team. Also note style
-- changes to match coding approach in rest of this file.
--
-- License for original globtopattern
--[[
(c) 2008-2011 David Manura. Licensed under the same terms as Lua (MIT).
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
(end license)
--]]
function glob_to_pattern(glob)
local pattern = "^" -- pattern being built
local i = 0 -- index in glob
local char -- char at index i in glob
-- escape pattern char
local function escape(char)
return string.match(char, "^%w$") and char or "%" .. char
end
-- Convert tokens.
while true do
i = i + 1
char = string.sub(glob, i, i)
if char == "" then
pattern = pattern .. "$"
break
elseif char == "?" then
pattern = pattern .. "."
elseif char == "*" then
pattern = pattern .. ".*"
elseif char == "[" then
-- Ignored
print("[...] syntax not supported in globs!")
elseif char == "\\" then
i = i + 1
char = string.sub(glob, i, i)
if char == "" then
pattern = pattern .. "\\$"
break
end
pattern = pattern .. escape(char)
else
pattern = pattern .. escape(char)
end
end
return pattern
end
-- File operation support
-- Much of this is OS-dependent as Lua offers a very limited range of file
-- operations 'natively'.
-- Detect the operating system in use
-- See http://www.lua.org/manual/5.2/manual.html#pdf-package.config for details
-- of the string used here to pick up the operating system (Windows or
-- 'not-Windows'
-- Support items are defined here for cases where a single string can cover
-- both Windows and Unix cases: more complex situations are handled inside
-- the support functions
if os.type == "windows" then
os_ascii = "@echo."
os_concat = "&"
os_diffext = os.getenv("diffext") or ".fc"
os_diffexe = os.getenv("diffexe") or "fc /n"
os_grepexe = "findstr /r"
os_newline = "\r\n"
os_null = "nul"
os_pathsep = ";"
os_setenv = "set"
os_windows = true
os_yes = "for /l %I in (1,1,200) do @echo y"
else
os_ascii = "echo \"\""
os_concat = ";"
os_diffext = os.getenv("diffext") or ".diff"
os_diffexe = os.getenv("diffexe") or "diff -c --strip-trailing-cr"
os_grepexe = "grep"
os_newline = "\n"
os_null = "/dev/null"
os_pathsep = ":"
os_setenv = "export"
os_windows = false
os_yes = "printf 'y\\n%.0s' {1..200}"
end
-- File operations are aided by the LuaFileSystem module, which is available
-- within texlua
lfs = require("lfs")
-- For cleaning out a directory, which also ensures that it exists
function cleandir(dir)
local errorlevel = mkdir(dir)
if errorlevel ~= 0 then
return errorlevel
end
return rm(dir, "*")
end
-- Copy files 'quietly'
function cp(glob, source, dest)
local errorlevel
for _,i in ipairs(filelist(source, glob)) do
local source = source .. "/" .. i
if os_windows then
errorlevel = os.execute(
"copy /y " .. unix_to_win(source) .. " "
.. unix_to_win(dest) .. " > nul"
)
else
errorlevel = os.execute("cp -f " .. source .. " " .. dest)
end
if errorlevel ~=0 then
return errorlevel
end
end
return 0
end
-- OS-dependent test for a directory
function direxists(dir)
local errorlevel
if os_windows then
errorlevel =
os.execute("if not exist \"" .. unix_to_win(dir) .. "\" exit 1")
else
errorlevel = os.execute("[ -d " .. dir .. " ]")
end
if errorlevel ~= 0 then
return false
end
return true
end
function fileexists(file)
local f = io.open(file, "r")
if f ~= nil then
io.close(f)
return true
else
return false
end
end
-- Generate a table containing all file names of the given glob or all files
-- if absent
-- Not actually OS-dependent but in the same area
function filelist(path, glob)
local files = { }
local pattern
if glob then
pattern = glob_to_pattern(glob)
end
if direxists(path) then
for entry in lfs.dir(path) do
if pattern then
if string.match(entry, pattern) then
table.insert(files, entry)
end
else
if entry ~= "." and entry ~= ".." then
table.insert(files, entry)
end
end
end
end
return files
end
function mkdir(dir)
if os_windows then
-- Windows (with the extensions) will automatically make directory trees
-- but issues a warning if the dir already exists: avoid by including a test
local dir = unix_to_win(dir)
return os.execute(
"if not exist " .. dir .. "\\nul " .. "mkdir " .. dir
)
else
return os.execute("mkdir -p " .. dir)
end
end
-- Find the relationship between two directories
function relpath(target, source)
-- A shortcut for the case where the two are the same
if target == source then
return ""
end
local resultdir = ""
local trimpattern = "^[^/]*/"
-- Trim off identical leading directories
while
(string.match(target, trimpattern) or "X") ==
(string.match(target, trimpattern) or "Y") do
target = string.gsub(target, trimpattern, "")
source = string.gsub(source, trimpattern, "")
end
-- Go up from the source
for i = 0, select(2, string.gsub(target, "/", "")) do
resultdir = resultdir .. "../"
end
-- Return the relative part plus the unique part of the target
return resultdir .. target
end
-- Rename
function ren(dir, source, dest)
local dir = dir .. "/"
if os_windows then
return os.execute("ren " .. unix_to_win(dir) .. source .. " " .. dest)
else
return os.execute("mv " .. dir .. source .. " " .. dir .. dest)
end
end
-- Remove file(s) based on a glob
function rm(source, glob)
for _,i in ipairs(filelist(source, glob)) do
os.remove(source .. "/" .. i)
end
-- os.remove doesn't give a sensible errorlevel
return 0
end
-- Remove a directory tree
function rmdir(dir)
-- First, make sure it exists to avoid any errors
mkdir(dir)
if os_windows then
return os.execute("rmdir /s /q " .. unix_to_win(dir) )
else
return os.execute("rm -r " .. dir)
end
end
-- Run a command in a given directory
function run(dir, cmd)
return os.execute("cd " .. dir .. os_concat .. cmd)
end
-- Deal with the fact that Windows and Unix use different path separators
function unix_to_win(path)
local path = string.gsub(path, "/", "\\")
return path
end
--
-- Auxiliary functions which are used by more than one main function
--
-- Do some subtarget for all modules in a bundle
function allmodules(target)
for _,i in ipairs(modules) do
print(
"Running script " .. scriptname .. " with target \"" .. target
.. "\" for module "
.. i
)
local date = ""
if optdate then
date = " --date=" .. optdate[1]
end
local engines = ""
if optengines then
engines = " --engine=" .. table.concat(optengines, ",")
end
local version = ""
if optversion then
version = " --version=" .. optversion[1]
end
local errorlevel = run(
i,
"texlua " .. scriptname .. " " .. target
.. (opthalt and " -H" or "")
.. date
.. engines
.. version
)
if errorlevel ~= 0 then
return errorlevel
end
end
return 0
end
-- Set up the check system files: needed for checking one or more tests and
-- for saving the test files
function checkinit()
cleandir(testdir)
depinstall(checkdeps)
-- Copy dependencies to the test directory itself: this makes the paths
-- a lot easier to manage, and is important for dealing with the log and
-- with file input/output tests
for _,i in ipairs(filelist(localdir)) do
cp(i, localdir, testdir)
end
bundleunpack({".", testfiledir})
for _,i in ipairs(installfiles) do
cp(i, unpackdir, testdir)
end
for _,i in ipairs(checkfiles) do
cp(i, unpackdir, testdir)
end
if direxists(testsuppdir) then
for _,i in ipairs(filelist(testsuppdir)) do
cp(i, testsuppdir, testdir)
end
end
for _,i in ipairs(checksuppfiles) do
cp(i, supportdir, testdir)
end
os.execute(os_ascii .. ">" .. testdir .. "/ascii.tcx")
end
-- Copy files to the main CTAN release directory
function copyctan()
-- Do all of the copying in one go
for _,i in ipairs(
{
bibfiles,
demofiles,
docfiles,
pdffiles,
sourcefiles,
textfiles,
typesetlist
}
) do
for _,j in ipairs(i) do
cp(j, ".", ctandir .. "/" .. ctanpkg)
end
end
end
-- Copy files to the correct places in the TDS tree
function copytds()
local function install(source, dest, files, tool)
local moduledir = moduledir
-- For material associated with secondary tools (BibTeX, MakeIndex)
-- the structure needed is slightly different from those items going
-- into the tex/doc/source trees
if tool then
-- "base" is reserved for the tools themselves: make the assumption
-- in this case that the tdsroot name is the right place for stuff to
-- go (really just for the team)
if module == "base" then
moduledir = tdsroot
else
moduledir = module
end
end
local installdir = tdsdir .. "/" .. dest .. "/" .. moduledir
-- Convert the file table(s) to a list of individual files
local filenames = { }
for _,i in ipairs(files) do
for _,j in ipairs(i) do
for _,k in ipairs(filelist(source, j)) do
table.insert(filenames, k)
end
end
end
-- The target is only created if there are actual files to install
if next(filenames) ~= nil then
mkdir(installdir)
for _,i in ipairs(filenames) do
cp(i, source, installdir)
end
end
end
install(
".",
"doc",
{bibfiles, demofiles, docfiles, pdffiles, textfiles, typesetlist}
)
install(unpackdir, "makeindex", {makeindexfiles}, true)
install(unpackdir, "bibtex/bst", {bstfiles}, true)
install(".", "source", {sourcelist})
install(unpackdir, "tex", {installfiles})
end
-- Unpack files needed to support testing/typesetting/unpacking
function depinstall(deps)
local errorlevel
for _,i in ipairs(deps) do
print("Installing dependency: " .. i)
errorlevel = run(i, "texlua " .. scriptname .. " unpack -q")
if errorlevel ~= 0 then
return errorlevel
end
end
return 0
end
-- Convert the raw log file into one for comparison/storage: keeps only
-- the 'business' part from the tests and removes system-dependent stuff
function formatlog(logfile, newfile, engine)
local function killcheck(line)
-- Skip lines containing file dates
if string.match(line, "[^<]%d%d%d%d/%d%d/%d%d") then
return true
elseif
-- Skip \openin/\openout lines in web2c 7.x
-- As Lua doesn't allow "(in|out)", a slightly complex approach:
-- do a substitution to check the line is exactly what is required!
string.match(
string.gsub(line, "^\\openin", "\\openout"), "^\\openout%d%d? = "
) then
return true
end
return false
end
-- Substitutions to remove some non-useful changes
local function normalize(line, maxprintline)
-- Allow for wrapped lines: preserve the content and wrap
if (string.len(line) == maxprintline) then
lastline = (lastline or "") .. line
return ""
end
local line = (lastline or "") .. line
lastline = ""
-- Remove test file name from lines
-- This needs to extract the base name from the log name,
-- and one to allow for the case that there might be "-" chars
-- in the name (other cases are ignored)
line = string.gsub(
line,
string.gsub(
string.match("/" .. logfile, ".*/(.*)%" .. logext .. "$"),
"-",
"%%-"
),
""
)
-- Zap ./ at begin of filename
line = string.gsub(line, "%(%.%/", "(")
-- Zap paths if places other than 'here' are accessible
if checksearch then
line = string.gsub(line, "%(.*/([%w-]+%.[%w-]+)%)?%s*$", "(../%1")
end
-- Zap map loading of map
line = string.gsub(line, "%{%w?:?[%w/%-]*/pdftex%.map%}", "")
-- Merge all of .fd data into one line so will be removed later
if string.match(line, "^ *%([%.%/%w]+%.fd[^%)]*$") then
lastline = (lastline or "") .. line
return ""
end
-- TeX90/XeTeX knows only the smaller set of dimension units
line = string.gsub(
line,
"cm, mm, dd, cc, bp, or sp", "cm, mm, dd, cc, nd, nc, bp, or sp"
)
-- Normalise a case where fixing a TeX bug changes the message text
line = string.gsub(line, "\\csname\\endcsname ", "\\csname\\endcsname")
-- Zap "on line <num>" and replace with "on line ..."
-- Two similar cases, Lua patterns mean we need to do them separately
line = string.gsub(line, "on line %d*", "on line ...")
line = string.gsub(line, "on input line %d*", "on input line ...")
-- Tidy up to ^^ notation
for i = 0, 31 do
line = string.gsub(line, string.char(i), "^^" .. string.char(64 + i))
end
-- Zap line numbers from \show, \showbox, \box_show and the like
-- Two stages as line wrapping alters some of them and restore the break
line = string.gsub(line, "^l%.%d+ ", "l. ...")
line = string.gsub(
line,
"%.%.%.l%.%d+ ( *)%}$",
"..." .. os_newline .. "l. ...%1}"
)
-- Remove spaces at the start of lines: deals with the fact that LuaTeX
-- uses a different number to the other engines
line = string.gsub(line, "^%s+", "")
-- Remove 'normal' direction information on boxes with (u)pTeX
line = string.gsub(line, ",? yoko direction,?", "")
-- A tidy-up to keep LuaTeX and other engines in sync
local utf8_char = unicode.utf8.char
line = string.gsub(line, utf8_char(127), "^^?")
-- Unicode engines display chars in the upper half of the 8-bit range:
-- tidy up to match pdfTeX if an ASCII engine is in use
if next(asciiengines) then
for i = 128, 255 do
line = string.gsub(line, utf8_char(i), "^^" .. string.format("%02x", i))
end
end
return line
end
local kpse = require("kpse")
kpse.set_program_name(engine)
local maxprintline = tonumber(kpse.expand_var("$max_print_line"))
if engine == "luatex" or engine == "luajittex" then
maxprintline = maxprintline + 1 -- Deal with an out-by-one error
end
local lastline = ""
local newlog = ""
local prestart = true
local skipping = false
for line in io.lines(logfile) do
if line == "START-TEST-LOG" then
prestart = false
elseif line == "END-TEST-LOG" then
break
elseif line == "OMIT" then
skipping = true
elseif line == "TIMO" then
skipping = false
elseif not prestart and not skipping then
line = normalize(line, maxprintline)
if not string.match(line, "^ *$") and not killcheck(line) then
newlog = newlog .. line .. os_newline
end
end
end
local newfile = io.open(newfile, "w")
io.output(newfile)
io.write(newlog)
io.close(newfile)
end
-- Additional normalization for LuaTeX
function formatlualog(logfile, newfile)
local function normalize(line, lastline, dropping)
-- Find \discretionary or \whatsit lines:
-- These may come back later
if string.match(line, "^%.+\\discretionary$") or
string.match(line, "^%.+\\whatsit$") then
return "", line
end
-- For \mathon, we always need this line but the next
-- may be affected
if string.match(line, "^%.+\\mathon$") then
return line, line
end
-- Remove 'display' at end of display math boxes:
-- LuaTeX omits this as it includes direction in all cases
line = string.gsub(line, "(\\hbox%(.*), display$", "%1")
-- Remove 'normal' direction information on boxes:
-- any bidi/vertical stuff will still show
line = string.gsub(line, ", direction TLT", "")
-- Find glue setting and round out the last place
local function round_digits(l, m)
return string.gsub(
l,
m .. " (%-?)%d+%.%d+",
m .. " %1"
.. string.format(
"%.3f",
string.match(line, m .. " %-?(%d+%.%d+)") or 0
)
)
end
if string.match(line, "glue set %-?%d+%.%d+") then
line = round_digits(line, "glue set")
end
if string.match(
line, "glue %-?%d+%.%d+ plus %-?%d+%.%d+ minus %-?%d+%.%d+$"
)
then
line = round_digits(line, "glue")
line = round_digits(line, "plus")
line = round_digits(line, "minus")
end
-- LuaTeX writes ^^M as a new line, which we lose
line = string.gsub(line, "%^%^M", "")
-- Remove U+ notation in the "Missing character" message
line = string.gsub(
line,
"Missing character: There is no (%^%^..) %(U%+(....)%)",
"Missing character: There is no %1"
)
-- A function to handle the box prefix part
local function boxprefix(s)
return string.gsub(string.match(s, "^(%.+)"), "%.", "%%.")
end
-- Where the last line was a discretionary, looks for the
-- info one level in about what it represents
if string.match(lastline, "^%.+\\discretionary$") then
local prefix = boxprefix(lastline)
if string.match(line, prefix .. "%.") or
string.match(line, prefix .. "%|") then
return "", lastline, true
else
if dropping then
-- End of a \discretionary block
return line, ""
else
-- A normal (TeX90) discretionary:
-- add with the line break reintroduced
return lastline .. os_newline .. line, ""
end
end
end
-- Look for another form of \discretionary, replacing a "-"
pattern = "^%.+\\discretionary replacing *$"
if string.match(line, pattern) then
return "", line
else
if string.match(lastline, pattern) then
local prefix = boxprefix(lastline)
if string.match(line, prefix .. "%.\\kern") then
return string.gsub(line, "^%.", ""), lastline, true
elseif dropping then
return "", ""
else
return lastline .. os_newline .. line, ""
end
end
end
-- For \mathon, if the current line is an empty \hbox then
-- drop it
if string.match(lastline, "^%.+\\mathon$") then
local prefix = boxprefix(lastline)
if string.match(line, prefix .. "\\hbox%(0%.0%+0%.0%)x0%.0$") then
return "", ""
end
end
-- Much the same idea when the last line was a whatsit,
-- but things are simpler in this case
if string.match(lastline, "^%.+\\whatsit$") then
local prefix = boxprefix(lastline)
if string.match(line, prefix .. "%.") then
return "", lastline, true
else
-- End of a \whatsit block
return line, ""
end
end
-- Wrap some cases that can be picked out
-- In some places LuaTeX does use max_print_line, then we
-- get into issues with different wrapping approaches
local kpse = require("kpse")
kpse.set_program_name("luatex")
local maxprintline = tonumber(kpse.expand_var("$max_print_line"))
if (string.len(line) == maxprintline) then
return "", line
elseif (string.len(lastline) == maxprintline) then
if string.match(line, "\\ETC%.%}$") then
-- If the line wrapped at \ETC we might have lost a space
return lastline
.. ((string.match(line, "^\\ETC%.%}$") and " ") or "")
.. line, ""
elseif string.match(line, "^%}%}%}$") then
return lastline .. line, ""
else
return lastline .. os_newline .. line, ""
end
end
return line, ""
end
local newlog = ""
local lastline = ""
local dropping = false
for line in io.lines(logfile) do
line, lastline, dropping = normalize(line, lastline, dropping)
if not string.match(line, "^ *$") then
newlog = newlog .. line .. os_newline
end
end
local newfile = io.open(newfile, "w")
io.output(newfile)
io.write(newlog)
io.close(newfile)
end
-- Look for files, directory by directory, and return the first existing
function locate(dirs, names)
for _,i in ipairs(dirs) do
for _,j in ipairs(names) do
local path = i .. "/" .. j
if fileexists(path) then
return path
end
end
end
end
-- 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
table.insert(modules, entry)
end
end
end
end
return modules
end
-- Runs a single test: needs the name of the test rather than the .lvt file
-- One 'test' here may apply to multiple engines
function runcheck(name, hide)
local checkengines = checkengines
if optengines then
checkengines = optengines
end
local errorlevel = 0
for _,i in ipairs(checkengines) do
-- Allow for luatex == luajittex for .tlg purposes
local enginename = i
if i == "luajittex" then
enginename = "luatex"
newfile = testdir .. "/" .. name .. "." .. i .. logext
end
local testname = name .. "." .. enginename
local difffile = testdir .. "/" .. testname .. os_diffext
local newfile = newfile or testdir .. "/" .. testname .. logext
-- Use engine-specific file if available
local tlgfile = locate(
{testfiledir, unpackdir},
{testname .. tlgext, name .. tlgext}
)
if tlgfile then
cp(name .. tlgext, testfiledir, testdir)
else
-- Attempt to generate missing test goal from expectation
tlgfile = testdir .. "/" .. testname .. tlgext
if not locate({unpackdir, testfiledir}, {name .. lveext}) then
print(
"Error: failed to find " .. tlgext .. " or "
.. lveext .. " file for " .. name .. "!"
)
os.exit(1)
end
runtest(name, i, hide, lveext)
ren(testdir, testname .. logext, testname .. tlgext)
end
runtest(name, i, hide, lvtext)
if os_windows then
tlgfile = unix_to_win(tlgfile)
end
local errlevel
-- Do additional log formatting if the engine is LuaTeX, there is no
-- LuaTeX-specific .tlg file and the default engine is not LuaTeX
if enginename == "luatex"
and tlgfile ~= name .. ".luatex" .. tlgext
and stdengine ~= "luatex"
and stdengine ~= "luajittex" then
local luatlgfile = testdir .. "/" .. name .. ".luatex" .. tlgext
if os_windows then
luatlgfile = unix_to_win(luatlgfile)
end
formatlualog(tlgfile, luatlgfile)
formatlualog(newfile, newfile)
errlevel = os.execute(
os_diffexe .. " " .. luatlgfile .. " " .. newfile
.. " > " .. difffile
)
else
errlevel = os.execute(
os_diffexe .. " " .. tlgfile .. " " .. newfile .. " > " .. difffile
)
end
if errlevel == 0 then
os.remove(difffile)
else
if opthalt then
checkdiff()
return errlevel
end
errorlevel = errlevel
end
end
return errorlevel
end
-- Run one of the test files: doesn't check the result so suitable for
-- both creating and verifying .tlg files
function runtest(name, engine, hide, ext)
local lvtfile = name .. (ext or lvtext)
cp(lvtfile, fileexists(testfiledir .. "/" .. lvtfile)
and testfiledir or unpackdir, testdir)
local engine = engine or stdengine
-- Set up the format file name if it's one ending "...tex"
local realengine = engine
local format
if
string.match(checkformat, "tex$") and
not string.match(engine, checkformat) then
format = " -fmt=" .. string.gsub(engine, "(.*)tex$", "%1") .. checkformat
else
format = ""
end
-- Special casing for e-LaTeX format
if
string.match(checkformat, "^latex$") and
string.match(engine, "^etex$") then
format = " -fmt=latex"
end
-- Special casing for (u)pTeX LaTeX formats
if
string.match(checkformat, "^latex$") and
string.match(engine, "^u?ptex$") then
realengine = "e" .. engine
end
-- Special casing for XeTeX engine
local checkopts = checkopts
if string.match(engine, "xetex") then
checkopts = checkopts .. " -no-pdf"
end
local logfile = testdir .. "/" .. name .. logext
local newfile = testdir .. "/" .. name .. "." .. engine .. logext
local asciiopt = ""
for _,i in ipairs(asciiengines) do
if realengine == i then
asciiopt = "-translate-file ./ascii.tcx "
break
end
end
for i = 1, checkruns do
run(
testdir,
-- No use of localdir here as the files get copied to testdir:
-- avoids any paths in the logs
os_setenv .. " TEXINPUTS=." .. (checksearch and os_pathsep or "")
.. os_concat ..
-- Avoid spurious output from (u)pTeX
os_setenv .. " GUESS_INPUT_KANJI_ENCODING=0"
.. os_concat ..
realengine .. format .. " "
.. checkopts .. " " .. asciiopt .. lvtfile
.. (hide and (" > " .. os_null) or "")
)
end
formatlog(logfile, newfile, engine)
-- Store secondary files for this engine
for _,i in ipairs(filelist(testdir, name .. ".???")) do
local ext = string.match(i, "%....")
if ext ~= lvtext and ext ~= tlgext and ext ~= lveext and ext ~= logext then
if not fileexists(testsuppdir .. "/" .. i) then
ren(
testdir, i, string.gsub(
i, string.gsub(name, "%-", "%%-"), name .. "." .. engine
)
)
end
end
end
end
-- Strip the extension from a file name (if present)
function stripext(file)
local name = string.match(file, "^(.*)%.")
return name or file
end
-- Look for a test: could be in the testfiledir or the unpackdir
function testexists(test)
return(locate({testfiledir, unpackdir}, {test .. lvtext}))
end
--
-- Auxiliary functions for typesetting: need to be generally available
--
-- An auxiliary used to set up the environmental variables
function runtool(envvar, command)
return(
run(
typesetdir,
os_setenv .. " " .. envvar .. "=." .. os_pathsep
.. relpath(localdir, typesetdir)
.. (typesetsearch and os_pathsep or "") ..
os_concat ..
command
)
)
end
function biber(name)
if fileexists(typesetdir .. "/" .. name .. ".bcf") then
return(
runtool("BIBINPUTS", biberexe .. " " .. biberopts .. " " .. name)
)
end
return 0
end
function bibtex(name)
if fileexists(typesetdir .. "/" .. name .. ".aux") then
-- LaTeX always generates an .aux file, so there is a need to
-- look inside it for a \citation line
local grep
if os_windows then
grep = "\\\\"
else
grep = "\\\\\\\\"
end
if run(
typesetdir,
os_grepexe .. " \"^" .. grep .. "citation{\" " .. name .. ".aux > "
.. os_null
) + run(
typesetdir,
os_grepexe .. " \"^" .. grep .. "bibdata{\" " .. name .. ".aux > "
.. os_null
) == 0 then
return(
-- Cheat slightly as we need to set two variables
runtool(
"BIBINPUTS",
os_setenv .. " BSTINPUTS=." .. os_pathsep
.. relpath(localdir, typesetdir)
.. (typesetsearch and os_pathsep or "") ..
os_concat ..
bibtexexe .. " " .. bibtexopts .. " " .. name
)
)
end
end
return 0
end
function makeindex(name, inext, outext, logext, style)
if fileexists(typesetdir .. "/" .. name .. inext) then
return(
runtool(
"INDEXSTYLE",
makeindexexe .. " " .. makeindexopts .. " "
.. " -s " .. style .. " -o " .. name .. outext
.. " -t " .. name .. logext .. " " .. name .. inext
)
)
end
return 0
end
function tex(file)
return(
runtool(
"TEXINPUTS",
typesetexe .. " " .. typesetopts .. " \"" .. typesetcmds
.. "\\input " .. file .. "\""
)
)
end
function typesetpdf(file)
local name = stripext(file)
print("Typesetting " .. name)
local errorlevel = typeset(file)
if errorlevel == 0 then
os.remove(name .. ".pdf")
cp(name .. ".pdf", typesetdir, ".")
else
print(" ! Compilation failed")
end
return errorlevel
end
typeset = typeset or function(file)
local errorlevel = tex(file)
if errorlevel ~= 0 then
return errorlevel
else
local name = stripext(file)
errorlevel = biber(name) + bibtex(name)
if errorlevel == 0 then
local function cycle(name)
return(
makeindex(name, ".glo", ".gls", ".glg", glossarystyle) +
makeindex(name, ".idx", ".ind", ".ilg", indexstyle) +
tex(file)
)
end
errorlevel = cycle(name)
if errorlevel ~= 0 then
errorlevel = cycle(name)
end
end
return errorlevel
end
end
-- Standard versions of the main targets for building modules
-- Simply print out how to use the build system
help = help or function()
print("usage: " .. arg[0] .. " <command> [<options>] [<names>]")
print("")
print("The most commonly used l3build commands are:")
if testfiledir ~= "" then
print(" check Run all automated tests")
end
print(" clean Clean out directory tree")
if next(cmdchkfiles) ~= nil then
print(" cmdcheck Check commands documented are defined")
end
if module == "" or bundle == "" then
print(" ctan Create CTAN-ready archive")
end
print(" doc Typesets all documentation files")
print(" install Installs files into the local texmf tree")
if module ~= "" and testfiledir ~= "" then
print(" save Saves test validation log")
end
print(" setversion Update version information in sources")
print("")
print("Valid options are:")
print(" --date|-d Sets the date to insert into sources")
print(" --engine|-e Sets the engine to use for running test")
print(" --halt-on-error|-H Stops running tests after the first failure")
print(" --version|-v Sets the version to insert into sources")
print("")
end
function check(names)
local errorlevel = 0
if testfiledir ~= "" and direxists(testfiledir) then
checkinit()
local hide = true
if names and next(names) then
hide = false
end
local i
names = names or { }
-- No names passed: find all test files
if not next(names) then
for _,i in pairs(filelist(testfiledir, "*" .. lvtext)) do
table.insert(names, stripext(i))
end
for _,i in ipairs(filelist(unpackdir, "*" .. lvtext)) do
if fileexists(testfiledir .. "/" .. i) then
print("Duplicate test file: " .. i)
return 1
else
table.insert(names, stripext(i))
end
end
end
-- Actually run the tests
print("Running checks on")
local name
for _,name in ipairs(names) do
print(" " .. name)
local errlevel = runcheck(name, hide)
-- Return value must be 1 not errlevel
if errlevel ~= 0 then
if opthalt then
return 1
else
errorlevel = 1
end
end
end
if errorlevel ~= 0 then
checkdiff()
else
print("\n All checks passed\n")
end
end
return errorlevel
end
-- A short auxiliary to print the list of differences for check
function checkdiff()
print("\n Check failed with difference files")
for _,i in ipairs(filelist(testdir, "*" .. os_diffext)) do
print(" - " .. testdir .. "/" .. i)
end
print("")
end
-- Remove all generated files
function clean()
-- To make sure that distribdir never contains any stray subdirs,
-- it is entirely removed then recreated rather than simply deleting
-- all of the files
local errorlevel =
rmdir(distribdir) +
mkdir(distribdir) +
cleandir(localdir) +
cleandir(testdir) +
cleandir(typesetdir) +
cleandir(unpackdir)
for _,i in ipairs(cleanfiles) do
errorlevel = rm(".", i) + errorlevel
end
return errorlevel
end
function bundleclean()
local errorlevel = allmodules("clean")
for _,i in ipairs(cleanfiles) do
errorlevel = rm(".", i) + errorlevel
end
return (
errorlevel +
rmdir(ctandir) +
rmdir(tdsdir)
)
end
-- Check commands are defined
function cmdcheck()
mkdir(localdir)
cleandir(testdir)
depinstall(checkdeps)
local engine = string.gsub(stdengine, "tex$", "latex")
local localdir = relpath(localdir, testdir)
print("Checking source files")
for _,i in ipairs(cmdchkfiles) do
for _,j in ipairs(filelist(".", i)) do
print(" " .. stripext(j))
cp(j, ".", testdir)
run(
testdir,
os_setenv .. " TEXINPUTS=." .. os_pathsep .. localdir
.. os_pathsep ..
os_concat ..
engine .. " " .. cmdchkopts ..
" \"\\PassOptionsToClass{check}{l3doc} \\input " .. j .. "\""
.. " > " .. os_null
)
for line in io.lines(testdir .. "/" .. stripext(j) .. ".cmds") do
if string.match(line, "^%!") then
print(" - " .. string.match(line, "^%! (.*)"))
end
end
end
end
end
function ctan(standalone)
-- Always run tests for all engines
optengines = nil
local function dirzip(dir, name)
local zipname = name .. ".zip"
local function tab_to_str(table)
local string = ""
for _,i in ipairs(table) do
string = string .. " " .. "\"" .. i .. "\""
end
return string
end
-- Convert the tables of files to quoted strings
local binfiles = tab_to_str(binaryfiles)
local exclude = tab_to_str(excludefiles)
-- First, zip up all of the text files
run(
dir,
zipexe .. " " .. zipopts .. " -ll ".. zipname .. " " .. "."
.. (
(binfiles or exclude) and (" -x" .. binfiles .. " " .. exclude)
or ""
)
)
-- Then add the binary ones
run(
dir,
zipexe .. " " .. zipopts .. " -g ".. zipname .. " " .. ". -i" ..
binfiles .. (exclude and (" -x" .. exclude) or "")
)
end
local errorlevel
if standalone then
errorlevel = check()
bundle = module
else
errorlevel = allmodules("bundlecheck")
end
if errorlevel == 0 then
rmdir(ctandir)
mkdir(ctandir .. "/" .. ctanpkg)
rmdir(tdsdir)
mkdir(tdsdir)
if standalone then
errorlevel = bundlectan()
else
errorlevel = allmodules("bundlectan")
end
else
print("\n====================")
print("Tests failed, zip stage skipped!")
print("====================\n")
return errorlevel
end
if errorlevel == 0 then
for _,i in ipairs(textfiles) do
cp(i, ".", ctandir .. "/" .. ctanpkg)
cp(i, ".", tdsdir .. "/doc/" .. tdsroot .. "/" .. bundle)
end
dirzip(tdsdir, ctanpkg .. ".tds")
if packtdszip then
cp(ctanpkg .. ".tds.zip", tdsdir, ctandir)
end
dirzip(ctandir, ctanpkg)
cp(ctanpkg .. ".zip", ctandir, ".")
else
print("\n====================")
print("Typesetting failed, zip stage skipped!")
print("====================\n")
end
return errorlevel
end
function bundlectan()
-- Generate a list of individual file names excluding those in the second
-- argument: the latter is a table
local function excludelist(include, exclude)
local includelist = { }
local excludelist = { }
for _,i in ipairs(exclude) do
for _,j in ipairs(i) do
for _,k in ipairs(filelist(".", j)) do
excludelist[k] = true
end
end
end
for _,i in ipairs(include) do
for _,j in ipairs(filelist(".", i)) do
if not excludelist[j] then
table.insert(includelist, j)
end
end
end
return includelist
end
unpack()
local errorlevel = doc()
if errorlevel == 0 then
-- Work out what PDF files are available
pdffiles = { }
for _,i in ipairs(typesetfiles) do
table.insert(pdffiles, (string.gsub(i, "%.%w+$", ".pdf")))
end
typesetlist = excludelist(typesetfiles, {sourcefiles})
sourcelist = excludelist(
sourcefiles, {bstfiles, installfiles, makeindexfiles}
)
copyctan()
copytds()
end
return errorlevel
end
-- Typeset all required documents
-- Uses a set of dedicated auxiliaries that need to be available to others
function doc(files)
-- Set up
cleandir(typesetdir)
for _,i in ipairs({bibfiles, docfiles, sourcefiles, typesetfiles}) do
for _,j in ipairs(i) do
cp(j, ".", typesetdir)
end
end
for _,i in ipairs(typesetsuppfiles) do
cp(i, supportdir, typesetdir)
end
depinstall(typesetdeps)
unpack()
-- Main loop for doc creation
for _,i in ipairs(typesetfiles) do
for _,j in ipairs(filelist(".", i)) do
-- Allow for command line selection of files
local typeset = true
if files and next(files) then
local k
typeset = false
for _,k in ipairs(files) do
if k == stripext(j) then
typeset = true
break
end
end
end
if typeset then
local errorlevel = typesetpdf(j)
if errorlevel ~= 0 then
return errorlevel
end
end
end
end
return 0
end
-- Locally install files: only deals with those extracted, not docs etc.
function install()
local errorlevel = unpack()
if errorlevel ~= 0 then
return errorlevel
end
kpse.set_program_name("latex")
local texmfhome = kpse.var_value("TEXMFHOME")
local installdir = texmfhome .. "/tex/" .. moduledir
errorlevel = cleandir(installdir)
if errorlevel ~= 0 then
return errorlevel
end
for _,i in ipairs(installfiles) do
errorlevel = cp(i, unpackdir, installdir)
if errorlevel ~= 0 then
return errorlevel
end
end
return 0
end
function save(names)
checkinit()
local engines = optengines or {stdengine}
local name
for _,name in pairs(names) do
local engine
for _,engine in pairs(engines) do
local tlgengine = ((engine == stdengine and "") or "." .. engine)
local tlgfile = name .. tlgengine .. tlgext
local newfile = name .. "." .. engine .. logext
if testexists(name) then
print("Creating and copying " .. tlgfile)
runtest(name, engine, false, lvtext)
ren(testdir, newfile, tlgfile)
cp(tlgfile, testdir, testfiledir)
if fileexists(unpackdir .. "/" .. tlgfile) then
print(
"Saved " .. tlgext
.. " file overrides unpacked version of the same name"
)
end
elseif locate({unpackdir, testfiledir}, {name .. lveext}) then
print(
"Saved " .. tlgext .. " file overrides a "
.. lveext .. " file of the same name"
)
else
print(
"Test input \"" .. testfiledir .. "/" .. name .. lvtext
.. "\" not found"
)
end
end
end
end
-- Provide some standard search-and-replace functions
if versionform ~= "" and not setversion_update_line then
if versionform == "ProvidesPackage" then
function setversion_update_line(line, date, version)
local i
-- No real regex so do it one type at a time
for _,i in pairs({"Class", "File", "Package"}) do
if string.match(
line,
"^\\Provides" .. i .. "{[a-zA-Z0-9%-]+}%[[^%]]*%]$"
) then
line = string.gsub(line, "%[%d%d%d%d/%d%d/%d%d", "["
.. string.gsub(date, "%-", "/"))
line = string.gsub(
line, "(%[%d%d%d%d/%d%d/%d%d) [^ ]*", "%1 " .. version
)
break
end
end
return line
end
elseif versionform == "ProvidesExplPackage" then
function setversion_update_line(line, date, version)
local i
-- No real regex so do it one type at a time
for _,i in pairs({"Class", "File", "Package"}) do
if string.match(
line,
"^\\ProvidesExpl" .. i .. " *{[a-zA-Z0-9%-]+}"
) then
line = string.gsub(
line,
"{%d%d%d%d/%d%d/%d%d}( *){[^}]*}",
"{" .. string.gsub(date, "%-", "/") .. "}%1{" .. version .. "}"
)
break
end
end
return line
end
elseif versionform == "filename" then
function setversion_update_line(line, date, version)
if string.match(line, "^\\def\\filedate{%d%d%d%d/%d%d/%d%d}$") then
line = "\\def\\filedate{" .. string.gsub(date, "%-", "/") .. "}"
end
if string.match(line, "^\\def\\fileversion{[^}]+}$") then
line = "\\def\\fileversion{" .. version .. "}"
end
return line
end
elseif versionform == "ExplFileName" then
function setversion_update_line(line, date, version)
if string.match(line, "^\\def\\ExplFileDate{%d%d%d%d/%d%d/%d%d}$") then
line = "\\def\\ExplFileDate{" .. string.gsub(date, "%-", "/") .. "}"
end
if string.match(line, "^\\def\\ExplFileVersion{[^}]+}$") then
line = "\\def\\ExplFileVersion{" .. version .. "}"
end
return line
end
end
end
-- Used to actually carry out search-and-replace
setversion_update_line = setversion_update_line or function(line, date, version)
return line
end
function setversion()
local function rewrite(file, date, version)
local changed = false
local lines = ""
for line in io.lines(file) do
local newline = setversion_update_line(line, date, version)
if newline ~= line then
line = newline
changed = true
end
lines = lines .. line .. os_newline
end
if changed then
-- Avoid adding/removing end-of-file newline
local f = io.open(file, "rb")
local content = f:read("*all")
io.close(f)
if not string.match(content, os_newline .. "$") then
string.gsub(lines, os_newline .. "$", "")
end
-- Write the new file
ren(".", file, file .. bakext)
local f = io.open(file, "w")
io.output(f)
io.write(lines)
io.close(f)
rm(".", file .. bakext)
end
end
local date = os.date("%Y-%m-%d")
if optdate then
date = optdate[1] or date
end
local version = -1
if optversion then
version = optversion[1] or version
end
local i, j
for _,i in pairs(versionfiles) do
for _,j in pairs(filelist(".", i)) do
rewrite(j, date, version)
end
end
return 0
end
-- Unpack the package files using an 'isolated' system: this requires
-- a copy of the 'basic' DocStrip program, which is used then removed
function unpack()
local errorlevel = depinstall(unpackdeps)
if errorlevel ~= 0 then
return errorlevel
end
errorlevel = bundleunpack()
if errorlevel ~= 0 then
return errorlevel
end
for _,i in ipairs(installfiles) do
errorlevel = cp(i, unpackdir, localdir)
if errorlevel ~= 0 then
return errorlevel
end
end
return 0
end
-- Split off from the main unpack so it can be used on a bundle and not
-- leave only one modules files
bundleunpack = bundleunpack or function(sourcedir)
local errorlevel = mkdir(localdir)
if errorlevel ~=0 then
return errorlevel
end
errorlevel = cleandir(unpackdir)
if errorlevel ~=0 then
return errorlevel
end
for _,i in ipairs(sourcedir or {"."}) do
for _,j in ipairs(sourcefiles) do
errorlevel = cp(j, i, unpackdir)
if errorlevel ~=0 then
return errorlevel
end
end
end
for _,i in ipairs(unpacksuppfiles) do
errorlevel = cp(i, supportdir, localdir)
if errorlevel ~=0 then
return errorlevel
end
end
for _,i in ipairs(unpackfiles) do
for _,j in ipairs(filelist(unpackdir, i)) do
-- This 'yes' business is needed to pass a series of "y\n" to
-- TeX if \askforoverwrite is true
-- That is all done using a file as it's the only way on Windows and
-- on Unix the "yes" command can't be used inside os.execute (it never
-- stops, which confuses Lua)
os.execute(os_yes .. ">>" .. localdir .. "/yes")
local localdir = relpath(localdir, unpackdir)
errorlevel = run(
unpackdir,
os_setenv .. " TEXINPUTS=." .. os_pathsep
.. localdir .. (unpacksearch and os_pathsep or "") ..
os_concat ..
unpackexe .. " " .. unpackopts .. " " .. j .. " < "
.. localdir .. "/yes"
.. (optquiet and (" > " .. os_null) or "")
)
if errorlevel ~=0 then
return errorlevel
end
end
end
return 0
end
function version()
print(
"\n"
.. "l3build Release " .. string.gsub(release_date, "/", "-")
.. " (SVN r" .. release_ver .. ")\n"
)
end
--
-- The overall main function
--
function stdmain(target, files)
local errorlevel
-- If the module name is empty, the script is running in a bundle:
-- apart from ctan all of the targets are then just mappings
if module == "" then
-- Detect all of the modules
modules = modules or listmodules()
if target == "doc" then
errorlevel = allmodules("doc")
elseif target == "check" then
errorlevel = allmodules("bundlecheck")
if errorlevel ~=0 then
print("There were errors: checks halted!\n")
end
elseif target == "clean" then
errorlevel = bundleclean()
elseif target == "cmdcheck" and next(cmdchkfiles) ~= nil then
errorlevel = allmodules("cmdcheck")
elseif target == "ctan" then
errorlevel = ctan()
elseif target == "install" then
errorlevel = allmodules("install")
elseif target == "setversion" then
errorlevel = allmodules("setversion")
-- Deal with any files in the bundle dir itself
if errorlevel == 0 then
errorlevel = setversion()
end
elseif target == "unpack" then
errorlevel = allmodules("bundleunpack")
elseif target == "version" then
version()
else
help()
end
else
if target == "bundleunpack" then -- 'Hidden' as only needed 'higher up'
depinstall(unpackdeps)
errorlevel = bundleunpack()
elseif target == "bundlecheck" then
errorlevel = check()
elseif target == "bundlectan" then
errorlevel = bundlectan()
elseif target == "doc" then
errorlevel = doc(files)
elseif target == "check" and testfiledir ~= "" then
errorlevel = check(files)
elseif target == "clean" then
errorlevel = clean()
elseif target == "cmdcheck" and next(cmdchkfiles) ~= nil then
errorlevel = cmdcheck()
elseif target == "ctan" and bundle == "" then -- Stand-alone module
errorlevel = ctan(true)
elseif target == "install" then
errorlevel = install()
elseif target == "save" and testfiledir ~= "" then
if next(files) then
errorlevel = save(files)
else
help()
end
elseif target == "setversion" then
errorlevel = setversion()
elseif target == "unpack" then
errorlevel = unpack()
elseif target == "version" then
version()
else
help()
end
end
if errorlevel ~= 0 then
os.exit(1)
else
os.exit(0)
end
end
-- Allow main function to be disabled 'higher up'
main = main or stdmain
-- Call the main function
main(userargs["target"], userargs["files"])
|