summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/l3build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-02-04 22:19:11 +0000
committerKarl Berry <karl@freefriends.org>2020-02-04 22:19:11 +0000
commitc4f9025af51074274f379c8470324c4e7839780a (patch)
tree103414c2372bc6eec1de2306f3c248f45d394ef6 /Master/texmf-dist/scripts/l3build
parentae7de6a5194241c4f284dcb79422e325b2f3e8ca (diff)
l3 (4feb20)
git-svn-id: svn://tug.org/texlive/trunk@53673 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/l3build')
-rw-r--r--Master/texmf-dist/scripts/l3build/l3build-check.lua4
-rw-r--r--Master/texmf-dist/scripts/l3build/l3build-upload.lua6
-rwxr-xr-xMaster/texmf-dist/scripts/l3build/l3build.lua2
3 files changed, 10 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-check.lua b/Master/texmf-dist/scripts/l3build/l3build-check.lua
index ea550327eb1..8bafe0591c0 100644
--- a/Master/texmf-dist/scripts/l3build/l3build-check.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build-check.lua
@@ -228,6 +228,10 @@ local function normalize_log(content,engine,errlevels)
if match(line, "^%.*\\special%{pdf: docinfo << /Creator") then
return ""
end
+ -- Remove \special lines for DVI .pro files
+ if match(line, "^%.*\\special%{header=") then
+ return ""
+ end
if match(line, "^%.*\\special%{dvipdfmx:config") then
return ""
end
diff --git a/Master/texmf-dist/scripts/l3build/l3build-upload.lua b/Master/texmf-dist/scripts/l3build/l3build-upload.lua
index de1899ad2cb..257cce61a37 100644
--- a/Master/texmf-dist/scripts/l3build/l3build-upload.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build-upload.lua
@@ -276,7 +276,11 @@ function ctan_single_field(fname,fvalue,max,desc,mandatory)
if (fvalue==nil or type(fvalue)~="table") then
local vs=trim_space(tostring(fvalue))
if (mandatory==true and (fvalue == nil or vs=="")) then
- error("The field " .. fname .. " must contain " .. desc)
+ if (fname=="announcement") then
+ print("Empty announcement: No ctan announcement will be made")
+ else
+ error("The field " .. fname .. " must contain " .. desc)
+ end
end
if (fvalue ~=nil and len(vs) > 0) then
if (max > 0 and len(vs) > max) then
diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua
index 95436dd2e9b..2c244c1ea57 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 = "2020-01-14"
+release_date = "2020-02-03"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")