texlive[52094] trunk: l3build (14sep19)

commits+karl at tug.org commits+karl at tug.org
Sat Sep 14 23:44:13 CEST 2019


Revision: 52094
          http://tug.org/svn/texlive?view=revision&revision=52094
Author:   karl
Date:     2019-09-14 23:44:12 +0200 (Sat, 14 Sep 2019)
Log Message:
-----------
l3build (14sep19)

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-variables.lua
    trunk/Master/texmf-dist/scripts/l3build/l3build.lua
    trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx
    trunk/Master/tlpkg/libexec/ctan2tds

Modified: trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-09-14 21:37:22 UTC (rev 52093)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-09-14 21:44:12 UTC (rev 52094)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-08-24"
+release_date = "2019-09-14"
 
 -- 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-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2019-09-14 21:44:12 UTC (rev 52094)
@@ -7,6 +7,13 @@
 
 ## [Unreleased]
 
+## [2019-09-14]
+
+### Changed
+
+- Use three typesetting runs as-standard
+- Use `pdftex` not `tex` for unpacking
+
 ## [2019-08-24]
 
 ### Changed
@@ -314,7 +321,8 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX3 kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2019-08-24...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2019-09-14...HEAD
+[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
 [2019-07-30]: https://github.com/latex3/l3build/compare/2019-06-27...2019-07-30

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-09-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-09-14 21:44:12 UTC (rev 52094)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX3
 =================================================
 
-Release 2019-08-24
+Release 2019-09-14
 
 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-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2019-09-14 21:44:12 UTC (rev 52094)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2019-08-24"
+.TH l3build 1 "2019-09-14"
 .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-variables.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2019-09-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-variables.lua	2019-09-14 21:44:12 UTC (rev 52094)
@@ -104,7 +104,7 @@
 
 -- Executable names plus following options
 typesetexe = typesetexe or "pdflatex"
-unpackexe  = unpackexe  or "tex"
+unpackexe  = unpackexe  or "pdftex"
 zipexe     = zipexe     or "zip"
 
 checkopts   = checkopts   or "-interaction=nonstopmode"
@@ -179,7 +179,7 @@
 maxprintline = maxprintline or 79
 packtdszip   = packtdszip   or false
 typesetcmds  = typesetcmds  or ""
-typesetruns  = typesetruns  or 2
+typesetruns  = typesetruns  or 3
 recordstatus = recordstatus or false
 
 -- Extensions for various file types: used to abstract out stuff a bit

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-09-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-09-14 21:44:12 UTC (rev 52094)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-08-24"
+release_date = "2019-09-14"
 
 -- 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-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2019-09-14 21:44:12 UTC (rev 52094)
@@ -115,7 +115,7 @@
 \luavarset{checkconfigs}{\{\}}{Configurations to use for tests}
 \luavarseparator
 \luavarset{typesetexe}   {"pdflatex"} {Executable for compiling \texttt{doc(s)}}
-\luavarset{unpackexe}    {"tex"}      {Executable for running \texttt{unpack}}
+\luavarset{unpackexe}    {"pdftex"}   {Executable for running \texttt{unpack}}
 \luavarset{zipexe}       {"zip"}      {Executable for creating archive with \texttt{ctan}}
 \luavarset{biberexe}     {"biber"}    {Biber executable}
 \luavarset{bibtexexe}    {"bibtex8"}  {\BibTeX{} executable}
@@ -229,7 +229,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2019-08-24}
+% \date{Released 2019-09-14}
 %
 % \maketitle
 % \tableofcontents

Modified: trunk/Master/tlpkg/libexec/ctan2tds
===================================================================
--- trunk/Master/tlpkg/libexec/ctan2tds	2019-09-14 21:37:22 UTC (rev 52093)
+++ trunk/Master/tlpkg/libexec/ctan2tds	2019-09-14 21:44:12 UTC (rev 52094)
@@ -652,6 +652,7 @@
  'lamstex-index',       "die 'skipping, old'",
  'lastbib',             "die 'skipping, nonfree'",
  'latex-base',  	"die 'skipping, use latex'",
+ 'latex-dev',		"die 'skipping, use latex-base-dev'",
  'latex-doc',	  	"die 'skipping, use latex'",
  'latex-doc-dev',	"die 'skipping, use latex-base-dev'",
  'latex-essential',     "die 'skipping, nonfree'",



More information about the tex-live-commits mailing list