blob: 5395466c45920c183680c5051488efcf40c34984 (
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
#!/bin/sh
# do some basic sanity checks
. "${0%/*}/../conf/default.conf"
usage() {
>&2 echo ''
>&2 echo 'sanity-check [options] [checks]: check sanity of build master'
>&2 echo ''
>&2 echo 'possible options:'
>&2 echo ' -h|--help: Show this help and exit.'
>&2 echo ' -q|--quiet: Only print errors found.'
>&2 echo ' -r|--really-quiet: Do not print anything.'
[ -z "$1" ] && exit 1 || exit $1
}
eval set -- "$(
getopt -o hqr \
--long help \
--long quiet \
--long really-quiet \
-n "$(basename "$0")" -- "$@" || \
echo usage
)"
silence=0
while true
do
case "$1" in
-h|--help)
usage 0
;;
-q|--quiet)
silence=1
;;
-r|--really-quiet)
silence=2
;;
--)
shift
break
;;
*)
>&2 echo 'Whoops, forgot to implement option "'"$1"'" internally.'
exit 42
;;
esac
shift
done
tmp_dir="$(mktemp -d)"
trap 'rm -rf --one-file-system "${tmp_dir}"' EXIT
if [ $# -eq 0 ]; then
set -- repos package-database state-files
fi
while [ $# -gt 0 ]; do
case "$1" in
repos)
[ ${silence} -gt 0 ] || \
>&2 printf 'sanity-check: checking repos on master mirror ...'
repos='community-staging community-testing community core extra gnome-unstable kde-unstable staging testing'
errors="$(
(
printf '%s\n' ${repos}
ls_master_mirror 'i686'
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
if [ ${silence} -le 1 ]; then
echo
echo "The following repos are missing or obsolete on the mirror:"
echo "${errors}"
fi
exit 1
fi
[ ${silence} -gt 0 ] || \
>&2 echo ' passed.'
;;
package-database)
for repo in ${repos}; do
[ ${silence} -gt 0 ] || \
>&2 printf 'checking consistency of repository "%s" on the master mirror ...' "${repo}"
packages="$(
ls_master_mirror "i686/${repo}" | \
grep '\.pkg\.tar\.xz\(\.sig\)\?$'
)" || true
errors="$(
echo "${packages}" | \
sed 's|\.sig$||' | \
uniq -c | \
grep -v '^\s*2\s' | \
awk '{print $2}'
)"
if [ -n "${errors}" ]; then
if [ ${silence} -le 1 ]; then
echo
echo "The following packages in ${repo} are missing a signature or vice versa:"
echo "${errors}"
fi
exit 1
fi
${master_mirror_command} \
"${master_mirror_directory}/i686/${repo}/${repo}.db.tar.gz" \
"${master_mirror_directory}/i686/${repo}/${repo}.files.tar.gz" \
"${tmp_dir}/"
errors="$(
(
tar -tzf "${tmp_dir}/${repo}.db.tar.gz" | \
grep '/$' | \
sed 's|/$||'
echo "${packages}" | \
sed 's|-[^-]\+$||' | \
sort -u
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
if [ ${silence} -le 1 ]; then
echo
echo "The following packages in ${repo} are missing from the database or vice versa:"
echo "${errors}"
fi
exit 1
fi
errors="$(
(
tar -tzf "${tmp_dir}/${repo}.files.tar.gz" | \
grep '/$' | \
sed 's|/$||'
echo "${packages}" | \
sed 's|-[^-]\+$||' | \
sort -u
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
if [ ${silence} -le 1 ]; then
echo
echo "The following packages in ${repo} are missing from the file-database or vice versa:"
echo "${errors}"
fi
exit 1
fi
rm -rf --one-file-system "${tmp_dir}/"*
[ ${silence} -gt 0 ] || \
>&2 echo ' passed.'
done
;;
state-files)
for status in 'staging:done' 'testing:testing'; do
[ ${silence} -gt 0 ] || \
>&2 printf 'checking state-files of "%s" ...' "${status%:*}"
errors="$(
(
ls "${work_dir}/package-states" | \
grep "\.${status#*:}\$" | \
sed "s|^|${work_dir}/package-states/|" | \
xargs -r cat
ls_master_mirror 'i686' | \
grep "${status%:*}\$" | \
while read -r repo; do
ls_master_mirror "i686/${repo}"
done | \
grep '\.pkg\.tar\.xz$'
) | \
sort | \
uniq -c | \
grep -v '^\s*2\s' | \
awk '{print $2}'
)"
if [ -n "${errors}" ]; then
if [ ${silence} -le 1 ]; then
echo
echo "The following ${status%:*} packages do not have state files or vice versa:"
echo "${errors}"
fi
exit 1
fi
[ ${silence} -gt 0 ] || \
>&2 echo ' passed.'
done
;;
*)
[ ${silence} -gt 1 ] || \
>&2 printf 'sanity-check: unknown check "%s".' "$1"
exit 2
;;
esac
shift
done
|