texlive[66686] trunk: l3build (27mar23)
commits+karl at tug.org
commits+karl at tug.org
Mon Mar 27 22:10:44 CEST 2023
Revision: 66686
http://tug.org/svn/texlive?view=revision&revision=66686
Author: karl
Date: 2023-03-27 22:10:44 +0200 (Mon, 27 Mar 2023)
Log Message:
-----------
l3build (27mar23)
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-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua 2023-03-27 20:10:44 UTC (rev 66686)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2023-03-22"
+release_date = "2023-03-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 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md 2023-03-27 20:10:44 UTC (rev 66686)
@@ -7,6 +7,12 @@
## [Unreleased]
+## [2023-03-27]
+
+### Fixed
+- All LuaTeX `.tlg` files were wrongly considered not engine-specific.
+ Introduced in #292 which tried to fix #291.
+
## [2023-03-22]
### Changed
@@ -657,7 +663,8 @@
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX kernel work
-[Unreleased]: https://github.com/latex3/l3build/compare/2023-03-22...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2023-03-27...HEAD
+[2023-03-27]: https://github.com/latex3/l3build/compare/2023-03-22...2023-03-27
[2023-03-22]: https://github.com/latex3/l3build/compare/2023-03-08...2023-03-22
[2023-03-08]: https://github.com/latex3/l3build/compare/2023-02-26...2023-03-08
[2023-02-26]: https://github.com/latex3/l3build/compare/2023-02-20...2023-02-26
Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md 2023-03-27 20:10:44 UTC (rev 66686)
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX
=================================================
-Release 2023-03-22
+Release 2023-03-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 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1 2023-03-27 20:10:44 UTC (rev 66686)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2023-03-22"
+.TH l3build 1 "2023-03-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 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua 2023-03-27 20:10:44 UTC (rev 66686)
@@ -699,7 +699,7 @@
-- engine-specific .tlg file and the default engine is not LuaTeX
local has_engine_specific_tlg =
match(tlgfile, "%." .. engine .. "%" .. tlgext)
- and locate({ testfiledir, unpackdir }, { tlgfile })
+ and locate({ testfiledir, unpackdir }, { basename(tlgfile) })
if (match(engine,"^lua") or match(engine,"^harf"))
and not has_engine_specific_tlg
and not match(stdengine,"^lua")
Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2023-03-27 20:10:44 UTC (rev 66686)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2023-03-22"
+release_date = "2023-03-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 2023-03-27 20:10:18 UTC (rev 66685)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx 2023-03-27 20:10:44 UTC (rev 66686)
@@ -236,7 +236,7 @@
% }^^A
% }
%
-% \date{Released 2023-03-22}
+% \date{Released 2023-03-27}
%
% \maketitle
% \tableofcontents
More information about the tex-live-commits
mailing list.