blob: f97691ae73b005e03630ff3a4bbc8f07084ddca1 (
plain)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#!/bin/bash
this=$(basename $0)
max ()
{
local a
a=$1
local b
b=$2
if [ "$a" = "" ]; then
echo "$b"
return
elif [ "$b" = "" ]; then
echo "$a"
return
fi
if [ $a -gt $b ]; then
echo "$a"
else
echo "$b"
fi
}
min ()
{
local a
a="$1"
local b
b="$2"
if [ "$a" = "" ]; then
echo "$b"
return
elif [ "$b" = "" ]; then
echo "$a"
return
fi
if [ $a -lt $b ]; then
echo "$a"
else
echo "$b"
fi
}
print_range () {
local a
a="$1"
local b
b="$2"
if [ "$a" = "$b" ]; then
echo "$a"
return
fi
echo "$a-$b"
}
process_line ()
{
local line
line="$1"
fsf=false
rh=false
suse=false;
if echo "$line" \
| grep -q "Free Software Foundation, Inc\."; then
fsf=true
who=fsf
line=$(echo "$line" \
| sed 's/Free Software Foundation, Inc\.//')
elif echo "$line" \
| grep -q "Red Hat, Inc\."; then
rh=true
who=rh
line=$(echo "$line" \
| sed 's/Red Hat, Inc\.//')
elif echo "$line" \
| grep -q "SUSE LLC\."; then
suse=true
who=suse
line=$(echo "$line" \
| sed 's/SUSE LLC\.//')
else
echo "error: unknown copyright: $line"
exit 1
fi
line=$(echo "$line" \
| sed 's/[,-]/ /g')
max_year=$(echo "$line" \
| sed 's/ /\n/g' \
| grep -v '^$' \
| sort -n -r \
| head -n 1)
min_year=$(echo "$line" \
| sed 's/ /\n/g' \
| grep -v '^$' \
| sort -n \
| head -n 1)
if $fsf; then
fsf_max=$(max "$fsf_max" "$max_year")
fsf_min=$(min "$fsf_min" "$min_year")
elif $rh; then
rh_max=$(max "$rh_max" "$max_year")
rh_min=$(min "$rh_min" "$min_year")
elif $suse; then
suse_max=$(max "$suse_max" "$max_year")
suse_min=$(min "$suse_min" "$min_year")
fi
}
main ()
{
if ! git status --ignored 2>&1 \
| grep -q "nothing to commit, working tree clean"; then
echo "Git tree not clean"
exit 1
fi
local tmp
tmp=$(mktemp)
for f in *.c *.h *.def; do
if test "$f" = "native.c"; then continue; fi
if ! grep -q "Copyright (C)" $f; then
echo "error: found file without copyright marker: $f"
exit 1
fi
echo processing file: $f
grep -v '"' $f \
| awk -f contrib/release/copyright-lines.awk \
> $tmp
while read line; do
line=$(echo "$line" \
| sed 's/ */ /g')
line=$(echo "$line" \
| sed 's/.*Copyright (C) *//')
echo "Processing line: $line"
process_line "$line"
done < $tmp
done
rm -f $tmp
echo "-DFSF_YEARS='\"$(print_range $fsf_min $fsf_max)\"'" \
> COPYRIGHT_YEARS
echo "-DRH_YEARS='\"$(print_range $rh_min $rh_max)\"'" \
>> COPYRIGHT_YEARS
echo "-DSUSE_YEARS='\"$(print_range $suse_min $suse_max)\"'" \
>> COPYRIGHT_YEARS
}
main "$@"
|