texlive[52119] trunk: l3build (18sep19)
commits+karl at tug.org
commits+karl at tug.org
Wed Sep 18 23:57:55 CEST 2019
Revision: 52119
http://tug.org/svn/texlive?view=revision&revision=52119
Author: karl
Date: 2019-09-18 23:57:54 +0200 (Wed, 18 Sep 2019)
Log Message:
-----------
l3build (18sep19)
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 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua 2019-09-18 21:57:54 UTC (rev 52119)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2019-09-14"
+release_date = "2019-09-18"
-- 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 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md 2019-09-18 21:57:54 UTC (rev 52119)
@@ -7,6 +7,12 @@
## [Unreleased]
+## [2019-09-18]
+
+### Added
+
+- `checkinit_hook()`
+
## [2019-09-14]
### Changed
@@ -321,7 +327,8 @@
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX3 kernel work
-[Unreleased]: https://github.com/latex3/l3build/compare/2019-09-14...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2019-09-18...HEAD
+[2019-09-18]: https://github.com/latex3/l3build/compare/2019-09-14...2019-09-18
[2019-09-14]: https://github.com/latex3/l3build/compare/2019-08-24...2019-09-14
[2019-08-24]: https://github.com/latex3/l3build/compare/2019-07-31...2019-08-24
[2019-07-31]: https://github.com/latex3/l3build/compare/2019-07-30...2019-07-31
Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md 2019-09-18 21:57:54 UTC (rev 52119)
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX3
=================================================
-Release 2019-09-14
+Release 2019-09-18
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 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1 2019-09-18 21:57:54 UTC (rev 52119)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2019-09-14"
+.TH l3build 1 "2019-09-18"
.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 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua 2019-09-18 21:57:54 UTC (rev 52119)
@@ -81,8 +81,11 @@
cp(i, supportdir, testdir)
end
execute(os_ascii .. ">" .. testdir .. "/ascii.tcx")
+ return checkinit_hook()
end
+checkinit_hook = checkinit_hook or function() return 0 end
+
local function rewrite(source,result,processor,...)
local file = assert(open(source,"rb"))
local content = gsub(file:read("*all") .. "\n","\r\n","\n")
Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua 2019-09-18 21:57:54 UTC (rev 52119)
@@ -25,7 +25,7 @@
--]]
-- Version information
-release_date = "2019-09-14"
+release_date = "2019-09-18"
-- 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 2019-09-18 21:57:32 UTC (rev 52118)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx 2019-09-18 21:57:54 UTC (rev 52119)
@@ -229,7 +229,7 @@
% }^^A
% }
%
-% \date{Released 2019-09-14}
+% \date{Released 2019-09-18}
%
% \maketitle
% \tableofcontents
@@ -1082,6 +1082,12 @@
% \END
% \end{Verbatim}
%
+% \subsection{Pre-check hook}
+%
+% To allow complex set up for tests, a hook |checkinit_hook()| is available
+% to be executed once all standard set up is complete but before any tests
+% are run.
+%
% \subsection{Additional test tasks}
%
% A standard test will run the file \texttt{\meta{name}.lvt} using one
@@ -1292,7 +1298,7 @@
% '\nrelease_date = "%d%d%d%d/%d%d/%d%d"\n',
% '\nrelease_date = "' .. tagname .. '"\n')
% end
-% return contents
+% return content
% end
% \end{lstlisting}
% \caption{Example \texttt{update_tag} function.}
More information about the tex-live-commits
mailing list