diff options
author | Karl Berry <karl@freefriends.org> | 2017-11-25 20:58:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-11-25 20:58:47 +0000 |
commit | 2f6ef1426efcea1eafdd9ca9d5cbd08e0e9726d5 (patch) | |
tree | 063769eed870f93683e85dbe3fe04a852f36e43d /Master/texmf-dist/tex | |
parent | 68725e4c00f7540a73778ba91bdbe68dd135f01c (diff) |
l3build (25nov17)
git-svn-id: svn://tug.org/texlive/trunk@45905 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r-- | Master/texmf-dist/tex/latex/l3build/l3build.lua | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/latex/l3build/l3build.lua b/Master/texmf-dist/tex/latex/l3build/l3build.lua index bb4bf12df5f..9fd1faa3f40 100644 --- a/Master/texmf-dist/tex/latex/l3build/l3build.lua +++ b/Master/texmf-dist/tex/latex/l3build/l3build.lua @@ -23,7 +23,7 @@ for those people who are interested. --]] -- Version information -release_date = "2017/09/12" +release_date = "2017/11/25" -- "module" is a deprecated function in Lua 5.2: as we want the name -- for other purposes, and it should eventually be 'free', simply @@ -102,7 +102,7 @@ cleanfiles = cleanfiles or {"*.log", "*.pdf", "*.zip"} demofiles = demofiles or { } docfiles = docfiles or { } excludefiles = excludefiles or {"*~"} -installfiles = installfiles or {"*.sty"} +installfiles = installfiles or {"*.sty","*.cls"} makeindexfiles = makeindexfiles or {"*.ist"} sourcefiles = sourcefiles or {"*.dtx", "*.ins"} textfiles = textfiles or {"*.md", "*.txt"} @@ -286,7 +286,7 @@ local option_list = }, rerun = { - desc = "Suppresses TeX output when unpacking", + desc = "Skip setup: simply rerun tests", short = "r", type = "boolean" }, @@ -984,6 +984,10 @@ local function formatlog(logfile, newfile, engine, errlevels) -- luaotfload files start with keywords line = gsub(line, "from " .. pattern .. "%(", "from. ./%1(") line = gsub(line, ": " .. pattern .. "%)", ": ../%1)") + -- Deal with XeTeX specials + if match(line, "^%.+\\XeTeX.?.?.?file") then + line = gsub(line, pattern, "../%1") + end end -- Deal with the fact that "(.aux)" may have still a leading space line = gsub(line, "^ %(%.aux%)", "(.aux)") @@ -1051,7 +1055,8 @@ local function formatlog(logfile, newfile, engine, errlevels) for line in gmatch(contents, "([^\n]*)\n") do if line == "START-TEST-LOG" then prestart = false - elseif line == "END-TEST-LOG" then + elseif line == "END-TEST-LOG" or + match(line, "^Here is how much of .?.?.?TeX\'s memory you used:") then break elseif line == "OMIT" then skipping = true @@ -1070,7 +1075,7 @@ local function formatlog(logfile, newfile, engine, errlevels) if recordstatus then write('***************\n') for i = 1, checkruns do - write('Compilation ' .. i .. ' of test file completed with exit status ' .. errlevels[i] ) + write('Compilation ' .. i .. ' of test file completed with exit status ' .. errlevels[i] '\n') end end close(newfile) @@ -1134,6 +1139,9 @@ local function formatlualog(logfile, newfile) "Missing character: There is no (%^%^..) %(U%+(....)%)", "Missing character: There is no %1" ) + -- The first time a new font is used, it shows up + -- as being cached + line = gsub(line, "(save cache:", "(load cache:") -- A function to handle the box prefix part local function boxprefix(s) return gsub(match(s, "^(%.+)"), "%.", "%%.") @@ -1825,6 +1833,8 @@ function check(names) return 1 else errorlevel = 1 + -- visually show that something has failed + print(" --> failed\n") end end end |