texlive[63014] trunk: l3build (12apr22)
commits+karl at tug.org
commits+karl at tug.org
Tue Apr 12 22:41:57 CEST 2022
Revision: 63014
http://tug.org/svn/texlive?view=revision&revision=63014
Author: karl
Date: 2022-04-12 22:41:57 +0200 (Tue, 12 Apr 2022)
Log Message:
-----------
l3build (12apr22)
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-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 2022-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua 2022-04-12 20:41:57 UTC (rev 63014)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2022-03-15"
+release_date = "2022-04-12"
-- 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-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md 2022-04-12 20:41:57 UTC (rev 63014)
@@ -7,6 +7,14 @@
## [Unreleased]
+## [2022-04-12]
+
+### Added
+- Basic support for `make4ht`
+
+### Changed
+- Support `bidi` version string in `\special` lines (closes \#226)
+
## [2022-03-15]
### Changed
@@ -584,7 +592,8 @@
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX kernel work
-[Unreleased]: https://github.com/latex3/l3build/compare/2022-03-15...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2022-04-12...HEAD
+[2022-04-12]: https://github.com/latex3/l3build/compare/2022-03-15...2022-04-12
[2022-03-15]: https://github.com/latex3/l3build/compare/2022-02-24...2022-03-15
[2022-02-24]: https://github.com/latex3/l3build/compare/2021-12-14...2022-02-24
[2021-12-14]: https://github.com/latex3/l3build/compare/2021-12-09...2021-12-14
Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md 2022-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md 2022-04-12 20:41:57 UTC (rev 63014)
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX
=================================================
-Release 2022-03-15
+Release 2022-04-12
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-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1 2022-04-12 20:41:57 UTC (rev 63014)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2022-03-15"
+.TH l3build 1 "2022-04-12"
.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 2022-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua 2022-04-12 20:41:57 UTC (rev 63014)
@@ -1,6 +1,6 @@
--[[
-File l3build-check.lua Copyright (C) 2018-2021 The LaTeX Project
+File l3build-check.lua Copyright (C) 2018-2022 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -246,6 +246,10 @@
if match(line, "^%.*\\special%{papersize") then
return ""
end
+ -- Remove bidi version in \special lines line
+ if match(line, "BIDI.Fullbanner") then
+ line = gsub(line,"Version %d*%.%d*", "Version ...")
+ end
-- Remove ConTeXt stuff
if match(line, "^backend >") or
match(line, "^close source >") or
@@ -750,6 +754,11 @@
if match(checkformat,"^context$") then
function setup(file) return tokens .. ' "' .. file .. '" ' end
end
+ if match(binary,"make4ht") then
+ function setup(file) return tokens .. ' "' .. file .. '" ' end
+ format = ""
+ checkopts = ""
+ end
local basename = testdir .. "/" .. name
local gen_file = basename .. test_type.generated
local new_file = basename .. "." .. engine .. test_type.generated
Modified: trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua 2022-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua 2022-04-12 20:41:57 UTC (rev 63014)
@@ -1,6 +1,6 @@
--[[
-File l3build-variables.lua Copyright (C) 2018-2021 The LaTeX Project
+File l3build-variables.lua Copyright (C) 2018-2022 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -134,6 +134,8 @@
specialformats["latex-dev"] = specialformats["latex-dev"] or
{luatex = {binary="luahbtex",format = "lualatex-dev"}}
end
+specialformats.latex["make4ht"] = specialformats.latex["make4ht"] or
+ {binary = "make4ht"}
stdengine = stdengine or checkengines[1] or "pdftex"
Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2022-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2022-04-12 20:41:57 UTC (rev 63014)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2022-03-15"
+release_date = "2022-04-12"
-- 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-04-12 20:40:29 UTC (rev 63013)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx 2022-04-12 20:41:57 UTC (rev 63014)
@@ -237,7 +237,7 @@
% }^^A
% }
%
-% \date{Released 2022-03-15}
+% \date{Released 2022-04-12}
%
% \maketitle
% \tableofcontents
More information about the tex-live-commits
mailing list.