52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
|
#!/bin/bash
|
||
|
# -*- mode: sh; fill-column: 75; tab-width: 8; coding: utf-8-unix -*-
|
||
|
|
||
|
prog=$( basename $0 .bash )
|
||
|
ROLE=base
|
||
|
LOG_DIR=/usr/local/var/logs/portage
|
||
|
[ -d $LOG_DIR ] || mkdir -p $LOG_DIR
|
||
|
|
||
|
declare -a ARGS
|
||
|
if [ "$#" -eq 1 ] ; then
|
||
|
ARGS=( "$1" )
|
||
|
LOG=$( basename $1 ).log
|
||
|
elif [ "$#" -eq 0 ] ; then
|
||
|
ARGS="@world"
|
||
|
LOG=world.log
|
||
|
elif false && [ -f world.lib ] ; then # ?
|
||
|
ARGS="$( grep -v '^#' world.lib )"
|
||
|
LOG=world.log
|
||
|
else
|
||
|
ARGS=("$@")
|
||
|
LOG=world.log
|
||
|
fi
|
||
|
|
||
|
if mount | grep -q ' on /mnt/tmp' ; then
|
||
|
export TMPDIR=/mnt/tmp
|
||
|
# else
|
||
|
# echo "WARN: /mnt/tmp not mounted"
|
||
|
fi
|
||
|
|
||
|
# --changed-deps --deep --update
|
||
|
LARGS="-vb --changed-use --with-bdeps=y --changed-deps-report"
|
||
|
LARGS="$LARGS --backtrack=30 --ignore-built-slot-operator-deps=y --keep-going"
|
||
|
|
||
|
# Skips the packages specified on the command-line that have already been installed.
|
||
|
LARGS="$LARGS --noreplace"
|
||
|
|
||
|
# LARGS="$LARGS --exclude "
|
||
|
LOG=$LOG_DIR/$LOG
|
||
|
export PYTHONPATH=
|
||
|
echo INFO: $LARGS $ARGS >> $LOG 2>&1
|
||
|
nice python$BASE_PYTHON3_MINOR $( which emerge ) $LARGS $ARGS >> $LOG 2>&1
|
||
|
[ $? -ne 0 ] && exit $?
|
||
|
if grep ImportError $LOG ; then
|
||
|
echo ERROR: ImportError $ARGS && exit 10
|
||
|
elif grep ParseError $LOG ; then
|
||
|
echo ERROR: ParseError $ARGS && exit 11
|
||
|
elif grep 'Your current profile is invalid' $LOG ; then
|
||
|
echo ERROR: Your current profile is invalid $ARGS && exit 12
|
||
|
fi
|
||
|
|
||
|
exit 0
|