texlive[61312] trunk: l3build (15dec21)

commits+karl at tug.org commits+karl at tug.org
Wed Dec 15 22:31:10 CET 2021


Revision: 61312
          http://tug.org/svn/texlive?view=revision&revision=61312
Author:   karl
Date:     2021-12-15 22:31:10 +0100 (Wed, 15 Dec 2021)
Log Message:
-----------
l3build (15dec21)

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-variables.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	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2021-12-15 21:31:10 UTC (rev 61312)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2021-12-09"
+release_date = "2021-12-14"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")
@@ -136,11 +136,10 @@
 if #checkconfigs > 1 then
   if options["target"] == "check" then
     local errorlevel = 0
-    local opts = options
     local failed = { }
     for i = 1, #checkconfigs do
-      opts["config"] = {checkconfigs[i]}
-      errorlevel = call({"."}, "check", opts)
+      options["config"] = {checkconfigs[i]}
+      errorlevel = call({"."}, "check", options)
       if errorlevel ~= 0 then
         if options["halt-on-error"] then
           exit(1)
@@ -199,8 +198,8 @@
   elseif options["target"] == "clean" then
     local failure
     for i = 1, #checkconfigs do
-      opts["config"] = {checkconfigs[i]}
-      failure = 0 ~= call({"."}, "clean", opts) or failure
+      options["config"] = {checkconfigs[i]}
+      failure = 0 ~= call({"."}, "clean", options) or failure
     end
     exit(failure and 1 or 0)
   end

Modified: trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2021-12-15 21:31:10 UTC (rev 61312)
@@ -7,6 +7,11 @@
 
 ## [Unreleased]
 
+## [2021-12-14]
+
+### Fixed
+- Use correct name for `options` table in multi configuration management code
+
 ## [2021-12-09]
 
 ### Added
@@ -553,7 +558,8 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2021-12-09...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2021-12-14...HEAD
+[2021-12-14]: https://github.com/latex3/l3build/compare/2021-12-09...2021-12-14
 [2021-12-09]: https://github.com/latex3/l3build/compare/2021-12-06...2021-12-09
 [2021-12-06]: https://github.com/latex3/l3build/compare/2021-11-29...2021-12-06
 [2021-11-29]: https://github.com/latex3/l3build/compare/2021-11-24...2021-11-29

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2021-12-15 21:31:10 UTC (rev 61312)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX
 =================================================
 
-Release 2021-12-09
+Release 2021-12-14
 
 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	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2021-12-15 21:31:10 UTC (rev 61312)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2021-12-09"
+.TH l3build 1 "2021-12-14"
 .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-variables.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2021-12-15 21:31:10 UTC (rev 61312)
@@ -121,11 +121,13 @@
     pdftex = {binary = "texexec", format = ""},
     xetex  = {binary = "texexec", format = "", options = "--xetex"}
   }
-specialformats.latex = specialformats.latex or {
-    etex  = {format = "latex"},
-    ptex  = {binary = "eptex"},
-    uptex = {binary = "euptex"}
-  }
+specialformats.latex = specialformats.latex or { }
+specialformats.latex.etex = specialformats.latex.etex or
+  {format = "latex"}
+specialformats.latex.ptex = specialformats.latex.ptex or
+   {binary = "eptex"}
+specialformats.latex.uptex = specialformats.latex.uptex or
+  {binary = "euptex"}
 if not string.find(status.banner,"2019") then
   specialformats.latex.luatex = specialformats.latex.luatex or
     {binary = "luahbtex",format = "lualatex"}

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2021-12-15 21:31:10 UTC (rev 61312)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2021-12-09"
+release_date = "2021-12-14"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")
@@ -136,11 +136,10 @@
 if #checkconfigs > 1 then
   if options["target"] == "check" then
     local errorlevel = 0
-    local opts = options
     local failed = { }
     for i = 1, #checkconfigs do
-      opts["config"] = {checkconfigs[i]}
-      errorlevel = call({"."}, "check", opts)
+      options["config"] = {checkconfigs[i]}
+      errorlevel = call({"."}, "check", options)
       if errorlevel ~= 0 then
         if options["halt-on-error"] then
           exit(1)
@@ -199,8 +198,8 @@
   elseif options["target"] == "clean" then
     local failure
     for i = 1, #checkconfigs do
-      opts["config"] = {checkconfigs[i]}
-      failure = 0 ~= call({"."}, "clean", opts) or failure
+      options["config"] = {checkconfigs[i]}
+      failure = 0 ~= call({"."}, "clean", options) or failure
     end
     exit(failure and 1 or 0)
   end

Modified: trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2021-12-15 21:30:48 UTC (rev 61311)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2021-12-15 21:31:10 UTC (rev 61312)
@@ -237,7 +237,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2021-12-09}
+% \date{Released 2021-12-14}
 %
 % \maketitle
 % \tableofcontents



More information about the tex-live-commits mailing list.