/usr/bin/getbuildlog is in devscripts 2.17.6+deb9u2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/bin/sh
#
# getbuildlog: download package build logs from Debian auto-builders
#
# Copyright © 2008 Frank S. Thomas <fst@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
set -e
PROGNAME=`basename $0`
usage() {
cat <<EOT
Usage: $PROGNAME <package> [<version-pattern>] [<architecture-pattern>]
Downloads build logs of <package> from Debian auto-builders.
If <version-pattern> or <architecture-pattern> are given, only build logs
whose versions and architectures, respectively, matches the given patterns
are downloaded.
If <version-pattern> is "last" then only the logs for the most recent
version of <package> found on buildd.debian.org will be downloaded.
If <version-pattern> is "last-all" then the logs for the most recent
version found on each build log index will be downloaded.
Options:
-h, --help Show this help message.
-V, --version Show version and copyright information.
Examples:
# Download amd64 build log for hello version 2.2-1:
$PROGNAME hello 2\.2-1 amd64
# Download mips(el) build logs of all glibc versions:
$PROGNAME glibc "" mips.*
# Download all build logs of backported wesnoth versions:
$PROGNAME wesnoth .*bpo.*
EOT
}
version() {
cat <<EOT
This is $PROGNAME, from the Debian devscripts package, version 2.17.6+deb9u2
This code is copyright 2008 by Frank S. Thomas, all rights reserved.
This program comes with ABSOLUTELY NO WARRANTY.
You are free to redistribute this code under the terms of the
GNU General Public License, version 2 or later.
EOT
}
[ "$1" = "-h" ] || [ "$1" = "--help" ] && usage && exit 0
[ "$1" = "-V" ] || [ "$1" = "--version" ] && version && exit 0
[ $# -ge 1 ] && [ $# -le 3 ] || { usage && exit 1; }
if ! which wget >/dev/null 2>&1; then
echo "$PROGNAME: this program requires the wget package to be installed";
exit 1
fi
PACKAGE=$1
VERSION=${2:-[:~+.[:alnum:]-]+}
ARCH=${3:-[[:alnum:]-]+}
ESCAPED_PACKAGE=`echo "$PACKAGE" | sed -e 's/\+/\\\+/g'`
GET_LAST_VERSION=no
if [ "$VERSION" = "last" ]; then
GET_LAST_VERSION=yes
VERSION=[:~+.[:alnum:]-]+
elif [ "$VERSION" = "last-all" ]; then
GET_LAST_VERSION=all
VERSION=[:~+.[:alnum:]-]+
fi
PATTERN="fetch\.(cgi|php)\?pkg=$ESCAPED_PACKAGE&arch=$ARCH&ver=$VERSION&\
stamp=[[:digit:]]+"
getbuildlog() {
BASE=$1
ALL_LOGS=`mktemp`
trap "rm -f $ALL_LOGS" EXIT INT QUIT TERM
wget -q -O $ALL_LOGS "$BASE/status/logs.php?pkg=$PACKAGE"
# Put each href in $ALL_LOGS on a separate line so that $PATTERN
# matches only one href. This is required because grep is greedy.
sed -i -e "s/href=\"/\nhref=\"/g" $ALL_LOGS
# Quick-and-dirty unescaping
sed -i -e "s/&/\&/g" -e "s/%2B/\+/g" -e "s/%3A/:/g" -e "s/%7E/~/g" $ALL_LOGS
# If only the last version was requested, extract and sort
# the listed versions and determine the highest
if [ "$GET_LAST_VERSION" != "no" ]; then
LASTVERSION=$( \
for match in `grep -E -o "$PATTERN" $ALL_LOGS`; do
ver=${match##*ver=}
echo ${ver%%&*}
done | perl -e '
use Devscripts::Versort;
while (<>) { push @versions, [$_]; }
@versions = Devscripts::Versort::versort(@versions);
print $versions[0][0]; ' | sed -e "s/\+/\\\+/g"
)
NEWPATTERN="fetch\.(cgi|php)\?pkg=$ESCAPED_PACKAGE&\
arch=$ARCH&ver=$LASTVERSION&stamp=[[:digit:]]+"
else
NEWPATTERN=$PATTERN
fi
for match in `grep -E -o "$NEWPATTERN" $ALL_LOGS`; do
ver=${match##*ver=}
ver=${ver%%&*}
arch=${match##*arch=}
arch=${arch%%&*}
match=`echo $match | sed -e 's/\+/%2B/g'`
# Mimick wget's behaviour, using a numerical suffix if needed,
# to support downloading several logs for a given tuple
# (unfortunately, -nc and -O means only the first file gets
# downloaded):
filename="${PACKAGE}_${ver}_${arch}.log"
if [ -f "$filename" ]; then
suffix=1
while [ -f "$filename.$suffix" ]; do suffix=$((suffix+1)); done
filename="$filename.$suffix"
fi
wget -O "$filename" "$BASE/status/$match&raw=1"
done
rm -f $ALL_LOGS
if [ "$GET_LAST_VERSION" = "yes" ]; then
PATTERN=$NEWPATTERN
GET_LAST_VERSION=no
fi
}
getbuildlog https://buildd.debian.org
|