-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.lua
More file actions
65 lines (51 loc) · 1.67 KB
/
build.lua
File metadata and controls
65 lines (51 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env texlua
module = "pagesel"
installfiles = {
'*.sty'
}
sourcefiles = {
"*.dtx"
}
specialformats = specialformats or {}
-- latex-dev formats, used in config-dev to test against upcoming latex
-- here 2020-10-01
specialformats["latex-dev"] = specialformats["latex-dev"] or
{
pdftex = {format = "pdflatex-dev"},
luatex = {binary = "luahbtex",format = "lualatex-dev"},
xetex = {format = "xelatex-dev"},
}
textfiles = {"README.md"}
unpackfiles = {'pagesel.dtx'}
checkruns=2
checkconfigs = {"build","config-dev"}
function update_tag(file,content,tagname,tagdate)
tagfiles = {"*.dtx", "*.md"}
local tagpattern="(%d%d%d%d[-/]%d%d[-/]%d%d) v(%d+[.])(%d+)"
local oldv,newv
if tagname == 'auto' then
local i,j,olddate,a,b
i,j,olddate,a,b= string.find(content, tagpattern)
if i == nil then
print('OLD TAG NOT FOUND')
return content
else
print ('FOUND: ' .. olddate .. ' v' .. a .. b )
oldv = olddate .. ' v' .. a .. b
newv = tagdate .. ' v' .. a .. math.floor(b + 1)
print('USING OLD TAG: ' .. oldv)
print('USING NEW TAG: ' .. newv)
local oldpattern = string.gsub(oldv,"[-/]", "[-/]")
content=string.gsub(content,"{Version}{" .. oldpattern,'##OLDV##')
content=string.gsub(content,oldpattern,newv)
content=string.gsub(content,'##OLDV##',"{Version}{" .. oldv)
content=string.gsub(content,'%-%d%d%d%d Oberdiek Package','-' .. os.date("%Y") .. " Oberdiek Package")
content = string.gsub(content,
'%% \\end{History}',
'%% \\begin{Version}{' .. newv .. '}\n%% \\item Updated\n%% \\end{Version}\n%% \\end{History}')
return content
end
else
error("only automatic tagging supported")
end
end