diff options
author | Karl Berry <karl@freefriends.org> | 2018-03-09 22:47:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-03-09 22:47:41 +0000 |
commit | b7a725e9ab8924313f9eaf945f61e6ea7040c1c0 (patch) | |
tree | 1f0bc471f6caad309f9fcb4e39179d5387473fc7 /Master | |
parent | ede48fa402ed1c37b836d56fc860a137fd0d2e11 (diff) |
l3build (9mar18)
git-svn-id: svn://tug.org/texlive/trunk@46905 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/l3build/README.md | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/l3build/l3build.pdf | bin | 668435 -> 668575 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 | 15130 -> 15243 bytes | |||
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-aux.lua | 6 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-help.lua | 6 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 2 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/l3build/l3build.dtx | 2 |
8 files changed, 13 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/l3build/README.md b/Master/texmf-dist/doc/latex/l3build/README.md index 31532ef0744..992dd2034ef 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 2018-03-08 +Release 2018-03-09 Overview -------- diff --git a/Master/texmf-dist/doc/latex/l3build/l3build.pdf b/Master/texmf-dist/doc/latex/l3build/l3build.pdf Binary files differindex 76c34a227dc..dd32968dbac 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 5154cf5e492..d6770b095fa 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 "2018-03-08" +.TH l3build 1 "2018-03-09" .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 c36d4ea2e95..381844304b4 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-aux.lua b/Master/texmf-dist/scripts/l3build/l3build-aux.lua index 773a17a40e1..60193795a9a 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-aux.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-aux.lua @@ -27,6 +27,8 @@ local match = string.match local pairs = pairs local print = print +local lookup = kpse.lookup + -- -- Auxiliary functions which are used by more than one main function -- @@ -57,9 +59,9 @@ end local function getscriptname() if match(arg[0], "l3build(%.lua)$") then - return "l3build.lua" + return lookup("l3build.lua") else - return "build.lua" + return arg[0] end end diff --git a/Master/texmf-dist/scripts/l3build/l3build-help.lua b/Master/texmf-dist/scripts/l3build/l3build-help.lua index 770022f254d..c7050c44210 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-help.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-help.lua @@ -31,7 +31,11 @@ function version() end function help() - print("usage: " .. arg[0] .. " <command> [<options>] [<names>]") + local scriptname = "l3build" + if not string.match(arg[0], "l3build(%.lua)$") then + scriptname = arg[0] + end + print("usage: " .. scriptname .. " <command> [<options>] [<names>]") print("") print("The most commonly used l3build commands are:") if testfiledir ~= "" then diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index cb8a6d674cb..506740f8a41 100755 --- a/Master/texmf-dist/scripts/l3build/l3build.lua +++ b/Master/texmf-dist/scripts/l3build/l3build.lua @@ -23,7 +23,7 @@ for those people who are interested. --]] -- Version information -release_date = "2018-03-08" +release_date = "2018-03-09" -- 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 0dab5b0055e..567dd1fce5d 100644 --- a/Master/texmf-dist/source/latex/l3build/l3build.dtx +++ b/Master/texmf-dist/source/latex/l3build/l3build.dtx @@ -216,7 +216,7 @@ % }^^A % } % -% \date{Released 2018-03-08} +% \date{Released 2018-03-09} % % \maketitle % \tableofcontents |