texlive[69114] trunk: l3build (13dec23)

commits+karl at tug.org commits+karl at tug.org
Wed Dec 13 22:23:15 CET 2023


Revision: 69114
          https://tug.org/svn/texlive?view=revision&revision=69114
Author:   karl
Date:     2023-12-13 22:23:15 +0100 (Wed, 13 Dec 2023)
Log Message:
-----------
l3build (13dec23)

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	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2023-12-13 21:23:15 UTC (rev 69114)
@@ -1,3 +1,5 @@
+#!/usr/bin/env texlua
+
 --[[
 
 File l3build.lua Copyright (C) 2014-2022 The LaTeX Project
@@ -23,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2023-12-12"
+release_date = "2023-12-13-2"
 
 -- 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	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2023-12-13 21:23:15 UTC (rev 69114)
@@ -7,6 +7,13 @@
 
 ## [Unreleased]
 
+## [2023-12-13-2]
+
+## [2023-12-13]
+
+### Fixed
+- Syntax warning on Windows with some test setups
+
 ## [2023-12-12]
 
 ### Changed
@@ -732,7 +739,9 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2023-12-12...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2023-12-13-2...HEAD
+[2023-12-13-2]: https://github.com/latex3/l3build/compare/2023-12-13...2023-12-13-2
+[2023-12-13]: https://github.com/latex3/l3build/compare/2023-12-12...2023-12-13
 [2023-12-12]: https://github.com/latex3/l3build/compare/2023-11-01...2023-12-12
 [2023-11-01]: https://github.com/latex3/l3build/compare/2023-09-13...2023-11-01
 [2023-09-13]: https://github.com/latex3/l3build/compare/2023-09-07...2023-09-13

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2023-12-13 21:23:15 UTC (rev 69114)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX
 =================================================
 
-Release 2023-12-12
+Release 2023-12-13-2
 
 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	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2023-12-13 21:23:15 UTC (rev 69114)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2023-12-12"
+.TH l3build 1 "2023-12-13-2"
 .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	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua	2023-12-13 21:23:15 UTC (rev 69114)
@@ -822,12 +822,11 @@
         .. (hide and (" > " .. os_null) or ""),
       testdir
     )
-    -- On Windows, concatenting here will suppress any non-zero errorlevel
+    -- On Windows, concatenating here will suppress any non-zero errorlevel
     -- from the main run, so we split into two parts.
-    if errlevels[i] == 0 then
+    if errlevels[i] == 0 and runtest_tasks("X",0) ~= "" then
       local errorlevel =
-        runcmd(preamble .. runtest_tasks(jobname(lvtfile),i)
-        .. (hide and (" > " .. os_null) or ""),testdir)
+        runcmd(preamble .. runtest_tasks(jobname(lvtfile),i),testdir)
       if errorlevel ~= 0 then errlevels[i] = errorlevel end
     end
     -- Break the loop if the result is stable

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2023-12-13 21:23:15 UTC (rev 69114)
@@ -1,3 +1,5 @@
+#!/usr/bin/env texlua
+
 --[[
 
 File l3build.lua Copyright (C) 2014-2022 The LaTeX Project
@@ -23,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2023-12-12"
+release_date = "2023-12-13-2"
 
 -- 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	2023-12-13 21:23:02 UTC (rev 69113)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2023-12-13 21:23:15 UTC (rev 69114)
@@ -251,7 +251,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2023-12-12}
+% \date{Released 2023-12-13-2}
 %
 % \maketitle
 % \tableofcontents



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