summaryrefslogtreecommitdiff
path: root/bin/build-master-status
blob: 11f3957a9e754dcc7c11e4a19a6bb6cd65e5c34b (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
#!/bin/bash

# report about status of build master

. "${0%/*}/../conf/default.conf"

stable="$(
  find "${master_mirror_directory}/i686/" \( -name '*testing' -o -name '*staging' \) -prune -o -name '*.pkg.tar.xz' -print | \
    wc -l
  )"
tasks="$(
  wc -l < \
    "${work_dir}/build-list"
  )"
staging="$(
  find "${master_mirror_directory}/i686/"*{testing,staging} -name '*.pkg.tar.xz' | \
    wc -l
  )"
broken="$(
  ls "${work_dir}/package-states/" | \
    grep -c '\.broken$'
  )"

printf 'The mirror master contains %d stable packages (vs. ca. %d planned).\n' "${stable}" "$[${staging}+${tasks}]"
printf 'The build list contains %d tasks (incl. broken: %d).\n' "$[${tasks}-${broken}]" "${tasks}"
printf 'There are %d testing/staging packages.\n' "${staging}"
printf 'There are %d broken packages.\n' "${broken}"
if [ $[${broken}+${staging}] -ne 0 ]; then
  LANG=C printf '%.1f%% of all packages are broken.\n' "$(bc <<< "scale=10; 100*${broken}/(${broken}+${staging})")"
fi