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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
#!/usr/bin/env bash
# This script attempts to build all GAP packages contained in the current
# directory. Normally, you should run this script from the 'pkg'
# subdirectory of your GAP installation.
# You can also run it from other locations, but then you need to tell the
# script where your GAP root directory is, by passing it as an argument
# to the script with '--with-gaproot='. By default, the script assumes that
# the parent of the current working directory is the GAP root directory.
# If arguments are added, then they are considered packages. In that case
# only these packages will be built, and all others are ignored.
# You need at least 'gzip', GNU 'tar', a C compiler, sed, pdftex to run this.
# Some packages also need a C++ compiler.
# Contact support@gap-system.org for questions and complaints.
# Note, that this isn't and is not intended to be a sophisticated script.
# Even if it doesn't work completely automatically for you, you may get
# an idea what to do for a complete installation of GAP.
set -e
CURDIR="$(pwd)"
GAPROOT="$(cd .. && pwd)"
COLORS=yes
STRICT=no # exit with non-zero exit code when encountering any failures
PARALLEL=no
PACKAGES=()
# If output does not go into a terminal (but rather into a log file),
# turn off colors.
[[ -t 1 ]] || COLORS=no
while [[ "$#" -ge 1 ]]; do
option="$1" ; shift
case "$option" in
--with-gaproot) GAPROOT="$1"; shift ;;
--with-gaproot=*) GAPROOT=${option#--with-gaproot=}; ;;
--parallel) PARALLEL=yes; ;;
--with-gap) GAP_EXE="$1"; shift ;;
--with-gap=*) GAP_EXE=${option#--with-gap=}; ;;
--no-color) COLORS=no ;;
--color) COLORS=yes ;;
--no-strict) STRICT=no ;;
--strict) STRICT=yes ;;
--add-package-config-*) typeset PACKAGE_CONFIG_ARGS_${option:21}="$1"; shift ;;
-*) echo "ERROR: unsupported argument $option" ; exit 1;;
*) PACKAGES+=("$option") ;;
esac
done
# Some helper functions for printing user messages
if [[ "x$COLORS" = xyes ]]
then
# print notices in green, warnings in yellow, errors in read
notice() { printf "\033[32m%s\033[0m\n" "$@" ; }
warning() { printf "\033[33mWARNING: %s\033[0m\n" "$@" ; }
error() { printf "\033[31mERROR: %s\033[0m\n" "$@" ; exit 1 ; }
std_error() { printf "\033[31m%s\033[0m\n" "$@" ; }
else
notice() { printf "%s\n" "$@" ; }
warning() { printf "WARNING: %s\n" "$@" ; }
error() { printf "ERROR: %s\n" "$@" ; exit 1 ; }
std_error() { printf "%s\n" "$@" ; }
fi
# Is someone trying to run us from inside the 'bin' directory?
if [[ -f BuildPackages.sh ]]
then
error "This script must be run from inside the pkg directory" \
"Type: cd ../pkg; ../bin/BuildPackages.sh"
fi
if [ "x$PARALLEL" = "xyes" ] && [ "x$STRICT" = "xyes" ]; then
error "The options --strict and --parallel cannot be used simultaneously"
fi
if [ "x$PARALLEL" = "xyes" ]; then
export MAKEFLAGS="${MAKEFLAGS:--j3}"
fi;
# If user specified no packages to build, build all packages in subdirectories.
if [[ ${#PACKAGES[@]} == 0 ]]
then
# Put package directory names into a bash array to avoid issues with
# spaces in filenames. This code will still break if there are newlines
# in the name.
old_IFS=$IFS
IFS=$'\n' PACKAGES=($(find . -maxdepth 2 -type f -name PackageInfo.g | sort -f))
IFS=$old_IFS
PACKAGES=( "${PACKAGES[@]%/PackageInfo.g}" )
fi
notice "Using GAP root $GAPROOT"
# Check whether $GAPROOT is valid
if [[ ! -f "$GAPROOT/sysinfo.gap" ]]
then
error "$GAPROOT is not the root of a gap installation (no sysinfo.gap)" \
"Please provide the absolute path of your GAP root directory as" \
"first argument with '--with-gaproot=' to this script."
fi
# read in sysinfo
source "$GAPROOT/sysinfo.gap"
# determine the GAP executable to call:
# - if the user specified one explicitly via the `--gap` option, then
# GAP_EXE is set and we should use that
# - otherwise if sysinfo.gap set the GAP variable, use that
# - otherwise fall back to $GAPROOT/bin/gap.sh
if [[ -n $GAP_EXE ]]
then
GAP="$GAP_EXE"
else
GAP="${GAP:-$GAPROOT/bin/gap.sh}"
fi
# detect whether GAP was built in 32bit mode
# TODO: once all packages have adapted to the new build system,
# this should no longer be necessary, as package build systems should
# automatically adjust to 32bit mode.
case "$GAP_ABI" in
32)
notice "Building with 32-bit ABI"
CONFIGFLAGS="CFLAGS=-m32 LDFLAGS=-m32 LOPTS=-m32 CXXFLAGS=-m32"
;;
64)
notice "Building with 64-bit ABI"
CONFIGFLAGS=""
;;
*)
error "Unsupported GAP ABI '$GAParch_abi'."
;;
esac
LOGDIR=log
mkdir -p "$LOGDIR"
# Many package require GNU make. So use gmake if available,
# for improved compatibility with *BSD systems where "make"
# is BSD make, not GNU make.
if hash gmake 2> /dev/null
then
MAKE=gmake
else
MAKE=make
fi
notice \
"Attempting to build GAP packages." \
"Note that many GAP packages require extra programs to be installed," \
"and some are quite difficult to build. Please read the documentation for" \
"packages which fail to build correctly, and only worry about packages" \
"you require!"
# print the given command plus arguments, single quoted, then run it
echo_run() {
# when printf is given a format string with only one format specification,
# it applies that format string to each argument in sequence
notice "Running $(printf "'%s' " "$@")"
"$@"
}
build_fail() {
echo ""
warning "Failed to build $PKG"
echo "$PKG" >> "$LOGDIR/fail.log"
if [[ $STRICT = yes ]]
then
exit 1
fi
}
run_configure_and_make() {
# We want to know if this is an autoconf configure script
# or not, without actually executing it!
if [[ -x autogen.sh && ! -x configure ]]
then
./autogen.sh
fi
if [[ -x configure ]]
then
if grep Autoconf ./configure > /dev/null
then
local PKG_NAME=$($GAP -q -T -A -r -M --bare <<GAPInput
Read("PackageInfo.g");
Print(GAPInfo.PackageInfoCurrent.PackageName);
GAPInput
)
local CONFIG_ARGS_FLAG_NAME="PACKAGE_CONFIG_ARGS_${PKG_NAME}"
echo_run ./configure --with-gaproot="$GAPROOT" $CONFIGFLAGS ${!CONFIG_ARGS_FLAG_NAME}
# hack: run `make clean` in case the package was built before with different settings
echo_run "$MAKE" clean
else
echo_run ./configure "$GAPROOT"
# hack: run `make clean` in case the package was built before with different settings
echo_run "$MAKE" clean
# hack: in browse and edim, `make clean` removes `Makefile` so run configure
# again to ensure we can actually build them (we could restrict this hack to
# the two offending packages, but since non-autoconf configure is super cheap,
# there seems little reason to bother)
echo_run ./configure "$GAPROOT"
fi
echo_run "$MAKE"
else
notice "No building required for $PKG"
fi
}
build_one_package() {
# requires one argument which is the package directory
PKG="$1"
[[ $GITHUB_ACTIONS = true ]] && echo "::group::$PKG"
echo ""
date
echo ""
notice "==== Checking $PKG"
( # start subshell
set -e
cd "$CURDIR/$PKG"
if [[ -x prerequisites.sh ]]
then
./prerequisites.sh "$GAPROOT"
fi
run_configure_and_make
) &&
( # start subshell
if [[ $GITHUB_ACTIONS = true ]]
then
echo "::endgroup::"
fi
) || build_fail
}
date >> "$LOGDIR/fail.log"
for PKG in "${PACKAGES[@]}"
do
( # start a background process
# cut off the ending slash (if exists)
PKG="${PKG%/}"
# cut off everything before the first slash to only keep the package name
# (these two commands are mainly to accommodate the logs better,
# as they make no difference with changing directories)
PKG="${PKG##*/}"
if [[ -e "$CURDIR/$PKG/PackageInfo.g" ]]
then
(build_one_package "$PKG" \
> >(tee "$LOGDIR/$PKG.out") \
2> >(while read line
do \
std_error "$line"
done \
> >(tee "$LOGDIR/$PKG.err" >&2) \
) \
)> >(tee "$LOGDIR/$PKG.log" ) 2>&1
# remove superfluous log files if there was no error message
if [[ ! -s "$LOGDIR/$PKG.err" ]]
then
rm -f "$LOGDIR/$PKG.err"
rm -f "$LOGDIR/$PKG.out"
fi
# remove log files if package needed no compilation
if [[ "$(grep -c 'No building required for' $LOGDIR/$PKG.log)" -ge 1 ]]
then
rm -f "$LOGDIR/$PKG.err"
rm -f "$LOGDIR/$PKG.out"
rm -f "$LOGDIR/$PKG.log"
fi
else
echo
warning "$PKG does not seem to be a package directory, skipping"
fi
) &
BUILD_PID=$!
if [ "x$PARALLEL" = "xyes" ]; then
# If more than 4 background jobs are running, wait for one to finish (if
# <wait -n> is available) or for all to finish (if only <wait> is available)
if [[ $(jobs -r -p | wc -l) -gt 4 ]]; then
wait -n 2>&1 >/dev/null || wait
fi
else
# wait for this package to finish building
if ! wait $BUILD_PID && [[ $STRICT = yes ]]
then
exit 1
fi
fi;
done
# Wait until all packages are built, if in parallel
wait
echo "" >> "$LOGDIR/fail.log"
echo ""
notice "Packages which failed to build are in ./$LOGDIR/fail.log"
|