texlive[68181] trunk: l3build (5sep23)
commits+karl at tug.org
commits+karl at tug.org
Tue Sep 5 22:05:25 CEST 2023
Revision: 68181
http://tug.org/svn/texlive?view=revision&revision=68181
Author: karl
Date: 2023-09-05 22:05:25 +0200 (Tue, 05 Sep 2023)
Log Message:
-----------
l3build (5sep23)
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-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua 2023-09-05 20:05:25 UTC (rev 68181)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2023-07-20"
+release_date = "2023-09-05"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
@@ -117,6 +117,17 @@
forcedocepoch = true
end
epoch = normalise_epoch(epoch)
+-- LuaTeX needs the `-utc` option
+if next(specialformats) and next(specialformats.latex)
+ and next (specialformats.latex.luatex) then
+ local options = specialformats.latex.luatex.options
+ specialformats.latex.luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
+if next(specialformats) and next(specialformats["latex-dev"])
+ and next (specialformats["latex-dev"].luatex) then
+ local options = specialformats["latex-dev"].luatex.options
+ specialformats["latex-dev"].luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
--
-- Deal with multiple configs for tests
Modified: trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md 2023-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md 2023-09-05 20:05:25 UTC (rev 68181)
@@ -7,6 +7,13 @@
## [Unreleased]
+## [2023-09-05]
+
+### Changed
+- Initialise the random seed with the current time so `--shuffle` produces different orders each run.
+- Normalise more `luaotfload` cache lines
+- Apply `-utc` switch for LuaTeX when using a fixed epoch value
+
## [2023-07-20]
- Set `-kanji-internal=euc` when building pLaTeX
@@ -58,7 +65,7 @@
### Fixed
- Restore epoch settings for `dvitopdf()`
-- Use plural form of variable `ps2pdfopts` consistently in code and doc, and
+- Use plural form of variable `ps2pdfopts` consistently in code and doc, and
retain compatibility with singular form `ps2pdfopt` (issue \#275)
- Remove the last trace of dropped variable `stdconfig`
@@ -684,7 +691,8 @@
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX kernel work
-[Unreleased]: https://github.com/latex3/l3build/compare/2023-07-20...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2023-09-05...HEAD
+[2023-09-05]: https://github.com/latex3/l3build/compare/2023-07-20...2023-09-05
[2023-07-20]: https://github.com/latex3/l3build/compare/2023-07-17...2023-07-20
[2023-07-17]: https://github.com/latex3/l3build/compare/2023-03-27...2023-07-17
[2023-03-27]: https://github.com/latex3/l3build/compare/2023-03-22...2023-03-27
Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md 2023-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md 2023-09-05 20:05:25 UTC (rev 68181)
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX
=================================================
-Release 2023-07-20
+Release 2023-09-05
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-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1 2023-09-05 20:05:25 UTC (rev 68181)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2023-07-20"
+.TH l3build 1 "2023-09-05"
.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-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua 2023-09-05 20:05:25 UTC (rev 68181)
@@ -48,6 +48,9 @@
local execute = os.execute
local remove = os.remove
+-- randomise the random numbers
+math.randomseed( os.time() )
+
--
-- Auxiliary functions which are used by more than one main function
--
@@ -155,6 +158,8 @@
-- More luaotfload
line = gsub(line, "database loaded from " .. pattern .. "%)",
"database loaded from ../%1)")
+ line = gsub(line, 'Root cache directory is "' .. pattern .. '"',
+ 'Root cache directory is ".../%1"')
-- Deal with XeTeX specials
if match(line, "^%.+\\XeTeX.?.?.?file") then
line = gsub(line, pattern, "../%1")
Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2023-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2023-09-05 20:05:25 UTC (rev 68181)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2023-07-20"
+release_date = "2023-09-05"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
@@ -117,6 +117,17 @@
forcedocepoch = true
end
epoch = normalise_epoch(epoch)
+-- LuaTeX needs the `-utc` option
+if next(specialformats) and next(specialformats.latex)
+ and next (specialformats.latex.luatex) then
+ local options = specialformats.latex.luatex.options
+ specialformats.latex.luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
+if next(specialformats) and next(specialformats["latex-dev"])
+ and next (specialformats["latex-dev"].luatex) then
+ local options = specialformats["latex-dev"].luatex.options
+ specialformats["latex-dev"].luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
--
-- Deal with multiple configs for tests
Modified: trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx 2023-09-05 20:05:12 UTC (rev 68180)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx 2023-09-05 20:05:25 UTC (rev 68181)
@@ -251,7 +251,7 @@
% }^^A
% }
%
-% \date{Released 2023-07-20}
+% \date{Released 2023-09-05}
%
% \maketitle
% \tableofcontents
More information about the tex-live-commits
mailing list.