-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
47 lines (37 loc) · 1.28 KB
/
build.lua
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
#!/usr/bin/env texlua
module = "hypcap"
textfiles = {"README.md"}
unpackfiles = {'hypcap.dtx'}
packtdszip = false
maxprintline=10000
checkruns = 2
tagfiles = {"*.dtx", "*.md"}
function update_tag(file,content,tagname,tagdate)
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