texlive[51492] trunk: l3build (27jun19)

commits+karl at tug.org commits+karl at tug.org
Thu Jun 27 22:59:52 CEST 2019


Revision: 51492
          http://tug.org/svn/texlive?view=revision&revision=51492
Author:   karl
Date:     2019-06-27 22:59:52 +0200 (Thu, 27 Jun 2019)
Log Message:
-----------
l3build (27jun19)

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
    trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
    trunk/Master/texmf-dist/doc/latex/l3build/README.md
    trunk/Master/texmf-dist/doc/latex/l3build/l3build.pdf
    trunk/Master/texmf-dist/doc/man/man1/l3build.1
    trunk/Master/texmf-dist/doc/man/man1/l3build.man1.pdf
    trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua
    trunk/Master/texmf-dist/scripts/l3build/l3build.lua
    trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx

Modified: trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-06-27 20:59:52 UTC (rev 51492)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-06-26"
+release_date = "2019-06-27"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")

Modified: trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2019-06-27 20:59:52 UTC (rev 51492)
@@ -7,6 +7,17 @@
 
 ## [Unreleased]
 
+## [2019-06-27]
+
+### Changed
+
+- Back out change for normalisation of LuaTeX v1.10 stack information
+  (timing issue: will reintroduce later)
+
+### Fixed
+
+- Correct test for LuaTeX (see #93)
+
 ## [2019-06-26]
 
 ### Added
@@ -277,7 +288,8 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX3 kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2019-06-26...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2019-06-27...HEAD
+[2019-06-27]: https://github.com/latex3/l3build/compare/2019-06-26...2019-06-27
 [2019-06-26]: https://github.com/latex3/l3build/compare/2019-06-18...2019-06-26
 [2019-06-18]: https://github.com/latex3/l3build/compare/2019-02-10...2019-06-18
 [2019-02-10]: https://github.com/latex3/l3build/compare/2019-02-06...2019-02-10

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-06-27 20:59:52 UTC (rev 51492)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX3
 =================================================
 
-Release 2019-06-26
+Release 2019-06-27
 
 Overview
 --------

Modified: trunk/Master/texmf-dist/doc/latex/l3build/l3build.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/man/man1/l3build.1
===================================================================
--- trunk/Master/texmf-dist/doc/man/man1/l3build.1	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2019-06-27 20:59:52 UTC (rev 51492)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2019-06-26"
+.TH l3build 1 "2019-06-27"
 .SH NAME
 l3build \- Checking and building packages
 .SH SYNOPSIS

Modified: trunk/Master/texmf-dist/doc/man/man1/l3build.man1.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua	2019-06-27 20:59:52 UTC (rev 51492)
@@ -123,9 +123,7 @@
     -- do this before wrapping lines
     line = gsub(line, "^l%.%d+ ", "l. ...")
     -- Also from lua stack traces.
-    for str,_ in pairs({"field","function","upvalue"}) do
-      line = gsub(line, "lua:%d+: in " .. str, "lua:...: in " .. str)
-    end
+    line = gsub(line, "lua:%d+: in function", "lua:...: in function")
     -- Allow for wrapped lines: preserve the content and wrap
     -- Skip lines that have an explicit marker for truncation
     if len(line) == maxprintline  and
@@ -639,7 +637,7 @@
   end
   -- Do additional log formatting if the engine is LuaTeX, there is no
   -- LuaTeX-specific .tlg file and the default engine is not LuaTeX
-  if match(engine,"^lua") or match(engine,"harf")
+  if (match(engine,"^lua") or match(engine,"^harf"))
     and not match(tlgfile, "%.luatex" .. "%" .. tlgext)
     and not match(stdengine,"^lua")
     then

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-06-27 20:59:52 UTC (rev 51492)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-06-26"
+release_date = "2019-06-27"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")

Modified: trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2019-06-27 20:59:33 UTC (rev 51491)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2019-06-27 20:59:52 UTC (rev 51492)
@@ -227,7 +227,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2019-06-26}
+% \date{Released 2019-06-27}
 %
 % \maketitle
 % \tableofcontents



More information about the tex-live-commits mailing list