texlive[64987] trunk: l3build (10nov22)

commits+karl at tug.org commits+karl at tug.org
Thu Nov 10 21:22:54 CET 2022


Revision: 64987
          http://tug.org/svn/texlive?view=revision&revision=64987
Author:   karl
Date:     2022-11-10 21:22:53 +0100 (Thu, 10 Nov 2022)
Log Message:
-----------
l3build (10nov22)

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-upload.lua
    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
    trunk/Master/texmf-dist/tex/latex/l3build/regression-test.tex

Modified: trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2022-11-10 20:22:53 UTC (rev 64987)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2022-09-15"
+release_date = "2022-11-10"
 
 -- 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	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2022-11-10 20:22:53 UTC (rev 64987)
@@ -7,6 +7,14 @@
 
 ## [Unreleased]
 
+## [2022-11-10]
+
+### Changed
+- Suppress (new) LaTeX version data at end of `.log`
+
+### Fixed
+- Allow for local override of `ctanupload` variable
+
 ## [2022-09-15]
 
 ### Fixed
@@ -603,7 +611,8 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2022-09-15...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2022-11-10...HEAD
+[2022-11-10]: https://github.com/latex3/l3build/compare/2022-09-15...2022-11-10
 [2022-09-15]: https://github.com/latex3/l3build/compare/2022-04-19...2022-09-15
 [2022-04-19]: https://github.com/latex3/l3build/compare/2022-04-12...2022-04-19
 [2022-04-12]: https://github.com/latex3/l3build/compare/2022-03-15...2022-04-12

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2022-11-10 20:22:53 UTC (rev 64987)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX
 =================================================
 
-Release 2022-09-15
+Release 2022-11-10
 
 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	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2022-11-10 20:22:53 UTC (rev 64987)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2022-09-15"
+.TH l3build 1 "2022-11-10"
 .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-upload.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-upload.lua	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-upload.lua	2022-11-10 20:22:53 UTC (rev 64987)
@@ -69,7 +69,7 @@
 local curl_debug = curl_debug or false -- to disable posting
 -- For now, this is undocumented.
 
-local ctanupload = ctanupload or "ask"
+
 if options["dry-run"] then
   ctanupload = false
 end

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2022-11-10 20:22:53 UTC (rev 64987)
@@ -238,3 +238,4 @@
 -- Upload settings
 curlexe  = curlexe  or "curl"
 uploadconfig = uploadconfig or {}
+ctanupload   = ctanupload   or "ask"

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2022-11-10 20:22:53 UTC (rev 64987)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2022-09-15"
+release_date = "2022-11-10"
 
 -- 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	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2022-11-10 20:22:53 UTC (rev 64987)
@@ -236,7 +236,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2022-09-15}
+% \date{Released 2022-11-10}
 %
 % \maketitle
 % \tableofcontents
@@ -2555,6 +2555,13 @@
   \fi
 \fi
 %    \end{macrocode}
+%  Suppress version data in \LaTeX{} runs.
+%    \begin{macrocode}
+\ifdefined\AddToHook
+  \AddToHook{enddocument/info}[kernel/testmode]{}
+  \DeclareHookRule{enddocument/info}{kernel/testmode}{voids}{kernel/release}
+\fi
+%    \end{macrocode}
 %
 % Finish up.
 %    \begin{macrocode}

Modified: trunk/Master/texmf-dist/tex/latex/l3build/regression-test.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/l3build/regression-test.tex	2022-11-10 20:22:21 UTC (rev 64986)
+++ trunk/Master/texmf-dist/tex/latex/l3build/regression-test.tex	2022-11-10 20:22:53 UTC (rev 64987)
@@ -292,6 +292,10 @@
     \fi
   \fi
 \fi
+\ifdefined\AddToHook
+  \AddToHook{enddocument/info}[kernel/testmode]{}
+  \DeclareHookRule{enddocument/info}{kernel/testmode}{voids}{kernel/release}
+\fi
 \reset at catcodes
 %% 
 %%



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