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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# pbjparse.awk
##
# Parse a PBJ data file and print a PBDATA datafile to STDOUT.
# Justin Davis <jrcd83@gmail.com>
BEGIN {
templcount = 0 # number of templates that will be in the templates array
PROG = "pbjparse"
}
{ parsepbj() }
END {
if (templcount > 0) {
tcmd = templates[1]
for (i=2; i<=templcount; i++) tcmd = tcmd "|" templates[i]
}
else tcmd = "cat"
for (name in pbcount) {
len = pbcount[name]
if (len == 0) continue
print name | tcmd
for (i=1; i<=len; i++) print pbvars[name, i] | tcmd
print "" | tcmd
}
if (optdepcount > 0) {
print "optdepends" | tcmd
for (name in optdeps) print optdeps[name] | tcmd
print "" | tcmd
}
if (!seenpkgr) {
pkger = ENVIRON["PACKAGER"]
if (pkger == "") pkger = "Anonymous"
print "packager\n" pkger | tcmd
}
}
function parsepbj ( cmd) # cmd is a "local" var
{
# Ignore comments.
sub(/#.*/, "")
# Optdeps are special. In an annoying way.
if ($1 == "+") {
if ($2 == "optdepends") {
msg = joinfields(3)
++optdepcount
name = optdepname($3)
optdeps[name] = msg
remdep("depends", name)
remdep("makedepends", name)
remdep("checkdepends", name)
}
else {
# We print the default packager if none was seen.
pushval($2, joinfields(3))
}
}
else if ($1 == "-") {
if ($2 == "optdepends")
die("cannot delete an optdep once it is created.")
if (! remval($2, $3))
die("could not find " $3 " in " $2 "'s values")
}
else if ($1 == "=") {
if ($2 == "optdepends") die("cannot use '=' with optdepends.")
remall($2)
for (i=3; i<=NF; i++) pushval($2, $i)
}
else if ($1 == "!") {
cmd = joinfields(2)
while ((ret = cmd | getline) > 0) parsepbj()
if (ret == -1) die("failed to run " cmd)
close(cmd)
}
else if ($1 == "|") {
templates[++templcount] = joinfields(2)
}
else if ($1 ~ /^[ \t]*$/) ; # ignore lines of whitespace
else die("invalid input: " $0)
}
function die (msg)
{
printf "%s: error: %s:%d %s\n", PROG, FILENAME, FNR, msg | "cat 1>&2"
exit 1
}
function joinfields (start, msg)
{
msg = $(start++)
while (start <= NF) msg = msg " " $(start++)
return msg
}
function remall (field)
{
pbcount[field] = 0
}
function pushval (field, val)
{
if (field == "packager") seenpkgr = 1
pbvars[field, ++pbcount[field]] = val
}
function remval (field, prefix, i, len)
{
len = pbcount[field]
if (len == 0) return 0
for (i=1; i<=len; i++)
if (pbvars[field, i] ~ "^" prefix) break
if (i > len) return 0
for ( ; i < len; i++) pbvars[field, i] = pbvars[field, i+1]
delete pbvars[field, i]
pbcount[field]--
return 1
}
function optdepname (msgbeg)
{
if (! match(msgbeg, "^[a-z_-]+:$"))
die("bad optdepends name: " msgbeg)
return substr(msgbeg, 1, RLENGTH-1)
}
|