diff options
author | Karl Berry <karl@freefriends.org> | 2019-09-14 21:44:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-09-14 21:44:12 +0000 |
commit | ff8ac3dcb69c2fde4e40e9490a77e42a82b463b0 (patch) | |
tree | a4ff420ae7680b7266ea7e04c8aba4895a581a4b /Master | |
parent | 15d2ad7743679973e09fec56844fa9810ff4e737 (diff) |
l3build (14sep19)
git-svn-id: svn://tug.org/texlive/trunk@52094 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/l3build/CHANGELOG.md | 10 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/l3build/README.md | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/l3build/l3build.pdf | bin | 703605 -> 704553 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/l3build.1 | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/l3build.man1.pdf | bin | 15307 -> 15169 bytes | |||
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-variables.lua | 4 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 2 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/l3build/l3build.dtx | 4 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 1 |
9 files changed, 17 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md b/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md index b7d20890a63..51aceb3797f 100644 --- a/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md +++ b/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md @@ -7,6 +7,13 @@ this project uses date-based 'snapshot' version identifiers. ## [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 @@ this project uses date-based 'snapshot' version identifiers. - 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 diff --git a/Master/texmf-dist/doc/latex/l3build/README.md b/Master/texmf-dist/doc/latex/l3build/README.md index 16abce04d9e..143cae0fdf8 100644 --- a/Master/texmf-dist/doc/latex/l3build/README.md +++ b/Master/texmf-dist/doc/latex/l3build/README.md @@ -1,7 +1,7 @@ l3build: a testing and building system for LaTeX3 ================================================= -Release 2019-08-24 +Release 2019-09-14 Overview -------- diff --git a/Master/texmf-dist/doc/latex/l3build/l3build.pdf b/Master/texmf-dist/doc/latex/l3build/l3build.pdf Binary files differindex 41ff401a007..de378d10b34 100644 --- a/Master/texmf-dist/doc/latex/l3build/l3build.pdf +++ b/Master/texmf-dist/doc/latex/l3build/l3build.pdf diff --git a/Master/texmf-dist/doc/man/man1/l3build.1 b/Master/texmf-dist/doc/man/man1/l3build.1 index 4addb91317d..51c6f3f72d3 100644 --- a/Master/texmf-dist/doc/man/man1/l3build.1 +++ b/Master/texmf-dist/doc/man/man1/l3build.1 @@ -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 diff --git a/Master/texmf-dist/doc/man/man1/l3build.man1.pdf b/Master/texmf-dist/doc/man/man1/l3build.man1.pdf Binary files differindex 0fcb5a0677c..45712549f16 100644 --- a/Master/texmf-dist/doc/man/man1/l3build.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/l3build.man1.pdf diff --git a/Master/texmf-dist/scripts/l3build/l3build-variables.lua b/Master/texmf-dist/scripts/l3build/l3build-variables.lua index 0b3c9a2e431..6eb0f378589 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-variables.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-variables.lua @@ -104,7 +104,7 @@ unpackdeps = unpackdeps or { } -- 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 @@ end 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 diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index 627778ef228..fb7b727f804 100755 --- a/Master/texmf-dist/scripts/l3build/l3build.lua +++ b/Master/texmf-dist/scripts/l3build/l3build.lua @@ -25,7 +25,7 @@ for those people who are interested. --]] -- Version information -release_date = "2019-08-24" +release_date = "2019-09-14" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") diff --git a/Master/texmf-dist/source/latex/l3build/l3build.dtx b/Master/texmf-dist/source/latex/l3build/l3build.dtx index e4dbf51fb66..81e3be423eb 100644 --- a/Master/texmf-dist/source/latex/l3build/l3build.dtx +++ b/Master/texmf-dist/source/latex/l3build/l3build.dtx @@ -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 diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 4b60c5e4ffc..5c8d4edb0e2 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -652,6 +652,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); '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'", |