#!/bin/bash # autoport -- batch cross-build tool based on autodist # Copyright (C) 2011-2014 by Silvan Calarco # # Released under the terms of the GNU GPL release 3 license # VERSION=0.9.19 BASE_ARCH=i586 BASE_REPOSITORY=devel PORT_REPOSITORY=devel . /etc/autodist/config me=(${0##*/} $VERSION "Sat Mar 20 2011") function usage() { echo "\ ${me[0]} ${me[1]} "$"Copyright (C) 2011-2014 Silvan Calarco "" "$"Released under the terms of the GNU GPL v3 license" echo " "$"Batch port and cross-build tool based on autodist."" "$"Usage"": $me [-a][-f][-x arch1[,arch2],..][-r repository][-d release_repository][-s \"script_args\"]{--fix|job ...} -a "$"Automatic mode (use cache) -b "$"Batch port all packages in port repository to sync with base repository -f "$"Force operations -np "$"Don't prepare jobs passed to command line unless specfile is not found -npa "$"Don't prepare any jobs unless specfile is not found -nr "$"Don't recurse build --fix "$"Fix .la files for cross linking and exit -r "$"Work on given repository (default: $PORT_REPOSITORY) -d "$"Release packages to given repository (default: work repository) -h "$"Show this help and exit -s \"script_args\" "$"Send script_args as arguments for autodist update-specfile script -u changelog "$"Rebuild packages with given changelog -ud "$"Rebuild dependent packages that need rebuild -v "$"More verbose output -x "$"Operate in cross build mode --user user "$"Pass calling user name for Webbuild social messages arch "$"Target architecture job "$"Job specification for autodist"" " } function autoport_log() { local pkg=$1 local operation=$2 local result=$3 local loggrep=`grep "?= See" $4 | sed "s|?= See ||"` local logfiles="" for f in $loggrep; do logfiles="$logfiles $f" done [ "$pkg" -a "$operation" -a "$result" -a "$BATCH_MODE" ] || return echo "$pkg $operation $result $logfiles" >> $DATADIR/autoport-$PORT_REPOSITORY-current } # for webbuild message function cgi_encodevar() { local string="${1}" local strlen=${#string} local encoded="" for (( pos=0 ; pos $LASTFILE << _EOF JOB_CANTPREPARE=(${JOB_CANTPREPARE[*]}) JOB_MISSINGREQ=(${JOB_MISSINGREQ[*]}) JOB_SENT=(${JOB_SENT[*]}) JOB_CANTINSTAL=(${JOB_CANTINSTALL[*]}) JOB_COMPLETED=(${JOB_COMPLETED[*]}) JOB_FAILED=(${JOB_FAILED[*]}) _EOF } function find_source_by_provide() { local pkg=`echo $2 | sed "s|(|\\\\\[|g;s|)|\\\\\]|g;s|:|_|g"` grep "^$pkg:" $DATADIR/$1/sources-{$BASE_ARCH,$TARGET_ARCH} | \ awk '{ $1=""; print $0 }' | \ sed "s|[[:space:]]_| |g" } function find_requirements() { [ "$1" ] || return 1 local tf=`mktemp` || { echo "Error: cannot create tempfile" return 1 } local tf1=`mktemp` local OUTFILE=$1 if [ "`grep " is needed by " $OUTFILE`" ]; then grep " is needed by " $OUTFILE | awk '{ print $1 }' | tr -d \' > $tf1 elif [ "`grep " matches no packages" $OUTFILE`" ]; then grep " matches no packages" $OUTFILE | awk '{ print $2 }' | tr -d \' | sed "s|@.*||" > $tf1 elif [ "`grep " no package provides " $OUTFILE`" ]; then grep " no package provides " $OUTFILE | sed "s|.* no package provides ||" > $tf1 fi [ `stat -c %s $tf1` -gt 0 ] && { echo -n " | missing requirements: " > $tf sort -u $tf1 | while read line; do REQ=`find_source_by_provide $PORT_REPOSITORY ${line}` if [ "$REQ" ]; then get_pkg_buildinfo $DATADIR/$PORT_REPOSITORY $TARGET_ARCH $REQ if [ "$pkg_name" ]; then echo -n "$line(notrebuilding) " else echo "${REQ}" >> $tf fi else echo -n "$line(unresolved) " fi done > $tf1 cat $tf | sort -u 2>/dev/null | while read line; do if [ "`echo " ${JOB[*]} ${JOB_MISSINGREQ[*]} ${JOB_CANTINSTALL[*]} " | grep " $line "`" ]; then echo -n "($line) " else echo -n "$line " echo -n "$line " >> $tf1 fi done JOB_MISSINGREQ=(${JOB_MISSINGREQ[*]} `cat $tf1`) echo } rm -f $tf $tf1 return 0 } fetch_repfiles() { local u curl -f -L -s ${REPS_BASE_URL}/$PORT_REPOSITORY/srcpkglist -o $DATADIR/$PORT_REPOSITORY/srcpkglist || echo "Warning: unable to fetch ${REPS_BASE_URL}/$PORT_REPOSITORY/srcpkglist" curl -f -L -s $PORT_REPOSITORY_DISTROMATIC_URL/sources-$BASE_ARCH -o $DATADIR/$PORT_REPOSITORY/sources-$BASE_ARCH || echo "Warning: unable to fetch $PORT_REPOSITORY_DISTROMATIC_URL/sources-$BASE_ARCH" curl -f -L -s $PORT_REPOSITORY_DISTROMATIC_URL/sources-$TARGET_ARCH -o $DATADIR/$PORT_REPOSITORY/sources-$TARGET_ARCH || echo "Warning: unable to fetch $PORT_REPOSITORY_DISTROMATIC_URL/sources-$TARGET_ARCH" curl -f -L -s $PORT_REPOSITORY_DISTROMATIC_URL/builds-$TARGET_ARCH.sh -o $DATADIR/$PORT_REPOSITORY/builds-$TARGET_ARCH.sh || echo "Warning: unable to fetch $PORT_REPOSITORY_DISTROMATIC_URL/builds-$TARGET_ARCH.sh" for u in ${AUTOPORT_UNSTAGE_ARCHS}; do [ "$u" = "$TARGET_ARCH" ] && { rm -f $DATADIR/$PORT_REPOSITORY/unstage.$TARGET_ARCH return } done curl -f -L -s ${REPS_BASE_URL}/${PORT_REPOSITORY/-*}/unstage.$TARGET_ARCH -o $DATADIR/$PORT_REPOSITORY/unstage.$TARGET_ARCH || echo "Warning: unable to fetch ${REPS_BASE_URL}/${PORT_REPOSITORY/-*}/unstage.$TARGET_ARCH" } [ $# -gt 0 ] || { usage ; exit 1; } BUILD_ARCH=`uname -i` case $BUILD_ARCH in i386|i486|i686) BUILD_ARCH=i586; BASE_ARCH=x86_64 ;; arm*) BUILD_ARCH=arm ;; esac TARGET_ARCHS=$BUILD_ARCH JOB_CMDLINE=() CROSS_MODE= for ((i=1; i<=$#; i++)); do case ${!i} in -a) AUTO_MODE=1 ;; -b) BATCH_MODE=1 ;; -f) FORCE_MODE=1 ;; -v) VERBOSE_MODE=1 ;; -u) REBUILD_MODE=1 shift REBUILD_CHANGELOG="${!i}" [ "$REBUILD_CHANGELOG" ] || { echo "ERROR: changelog not given as -u option parameter; aborting." exit 1 } ;; -ud) REBUILD_DEPENDANT_MODE=1 DONT_RECURSE=1 ;; -npa) DONT_PREPARE_ANY=1 DONT_PREPARE=1 ;; -np) DONT_PREPARE=1 ;; -nr) DONT_RECURSE=1 ;; --fix) FIX_MODE=1 ;; -r) shift PORT_REPOSITORY="${!i}" ;; -s) shift SCRIPT_ARGS="${!i}" ;; -d) shift DEST_REPOSITORY="${!i}" ;; -x) shift TARGET_ARCHS="`echo ${!i} | tr , ' '`" CROSS_MODE=1 ;; --user) let i+=1 [ "${!i}" ] || { echo "Error: --user parameter not given, aborting." exit 1 } WEBBUILD_USER_CMDLINE="${!i}" ;; -h|--help) usage exit 0 ;; *) JOB_CMDLINE=(${JOB_CMDLINE[*]} ${!i}) ;; esac done [ "$DEST_REPOSITORY" ] || DEST_REPOSITORY=$PORT_REPOSITORY for TARGET_ARCH in ${TARGET_ARCHS}; do [ "$BASE_ARCH" = "$TARGET_ARCH" -a "$PORT_REPOSITRY" = "$DEST_REPOSITORY" ] && { echo "Error: base and target arch ($BASE_ARCH) are the same as well as port and release repositories ($PORT_REPOSITORY); skipping." continue } archs=($BASE_ARCH $TARGET_ARCH) JOBS_SKIPPED=() JOBS_CANTPREPARE=() JOBS_CANTINSTALL=() JOB_MISSINGREQ=() JOB_COMPLETED=() JOB_FAILED=() DATADIR=$HOME/.autoport DATAARCHDIR=$DATADIR/$TARGET_ARCH DISTROMATIC_BASE_URL=${REPS_BASE_URL}/distromatic/ BASE_REPOSITORY_DISTROMATIC_URL=${DISTROMATIC_BASE_URL}$BASE_REPOSITORY PORT_REPOSITORY_DISTROMATIC_URL=${DISTROMATIC_BASE_URL}$PORT_REPOSITORY [ -d $DATAARCHDIR ] || mkdir -p $DATAARCHDIR [ -d $DATADIR/$BASE_REPOSITORY ] || mkdir -p $DATADIR/$BASE_REPOSITORY [ -d $DATADIR/$PORT_REPOSITORY ] || mkdir -p $DATADIR/$PORT_REPOSITORY logdate=`date +"%F@%T"` logfile=$DATAARCHDIR/$logdate.log [ -e $DATAARCHDIR/$PORT_REPOSITORY-current.log ] && mv $DATAARCHDIR/$PORT_REPOSITORY-current.log $DATAARCHDIR/$PORT_REPOSITORY-last.log > $logfile ln -sf $logdate.log $DATAARCHDIR/$PORT_REPOSITORY-current.log BUILD_PLATFORM=`rpm --target $TARGET_ARCH --eval %{_build}` BUILD_CPU=`echo $BUILD_PLATFORM | cut -d- -f1` TARGET_PLATFORM=`rpm --target $TARGET_ARCH --eval %{_target_platform}` TARGET_CPU=`echo $TARGET_PLATFORM | cut -d- -f1` eval `autospec --eval spec_dir | tail -n1` if [ "$spec_dir" ]; then SPECDIR=$spec_dir else SPECDIR=`rpm --eval %{_specdir}` fi echo "Build platform is $BUILD_PLATFORM" echo "Target platform is $TARGET_PLATFORM" echo "Port repository is $PORT_REPOSITORY" echo "Release repository is $DEST_REPOSITORY" # old files cleanup rm -f $DATADIR/$PORT_REPOSITORY/sources-$TARGET_CPU rm -f $DATADIR/$PORT_REPOSITORY/builds-$BASE_ARCH.sh fetch_repfiles [ "$AUTO_MODE" -a -e $DATAARCHDIR/last ] && . $DATAARCHDIR/last if [ "$REBUILD_DEPENDANT_MODE" ]; then for j in ${JOB_CMDLINE[*]}; do get_pkg_buildinfo $DATADIR/$PORT_REPOSITORY $TARGET_ARCH $j port_pkg_list=${pkg_needrebuild[*]} port_pkg_builds=" ${pkg_builds[*]} " port_pkg_version=$pkg_version port_pkg_release=$pkg_release currrebuild= currjobsscriptargs= JOBNUM=0 for p in ${port_pkg_list}; do if [ "${p/@*}" != "$currrebuild" ]; then [ $JOBNUM -gt 0 ] && JOB_SCRIPTARGS[$JOBNUM-1]="$currjobscriptargs" currjobscriptargs= currrebuild=${p/@*} get_pkg_buildinfo $DATADIR/$PORT_REPOSITORY $TARGET_ARCH $currrebuild JOB=(${JOB[*]} $currrebuild) let JOBNUM+=1 fi currprovider=${p/*@} if [ "$port_pkgbuilds/ $currprovider-devel }" != "$port_pkgbuilds" ]; then currprovider=${currprovider}-devel fi currjobscriptargs="$currjobscriptargs --buildreq ${currprovider} >= $port_pkg_version-$port_pkg_release " done [ "$currjobscriptargs" ] && JOB_SCRIPTARGS[$JOBNUM-1]="$currjobscriptargs" echo "Package dependant from $j to rebuild: ${JOB[*]}" done else JOB=(${JOB_CMDLINE[*]} ${JOB_MISSINGREQ[*]} ${JOB_FAILED[*]}) fi [ "$FIX_MODE" -o "$BATCH_MODE" -o "${JOB[*]}" ] || { echo "Nothing to do."; exit 0; } if [ "$BATCH_MODE" ]; then [ "${JOB[*]}" ] && { echo "Error: no jobs allowed in batch mode; aborting." exit 1 } # old files cleanup rm -f $DATADIR/$BASE_REPOSITORY/builds-$BASE_ARCH.sh rm -f $DATADIR/$BASE_REPOSITORY/builds-$TARGET_ARCH.sh get_pkg_buildinfo $DATADIR/$PORT_REPOSITORY $TARGET_ARCH port_pkg_list=${pkg_list[*]} if [ "$REBUILD_MILESTONE" ]; then for p in ${port_pkg_list}; do get_pkg_buildinfo $DATADIR/$PORT_REPOSITORY $TARGET_ARCH $p target_pkg_name=$pkg_name target_pkg_ver=$pkg_version target_pkg_rel=$pkg_release target_pkg_milestone=`echo $target_pkg_rel | sed "s|[0-9.]*\(.*\)|\1|"` if [ "$target_pkg_milestone" != "$REBUILD_MILESTONE" ]; then JOB=(${JOB[*]} $p) fi done echo "Packages to rebuild: ${JOB[*]}" else echo "Packages to port: ${needport_list[*]}" for p in ${needport_list[*]}; do JOB=(${JOB[*]} $p) done fi [ -e $DATADIR/autoport-$PORT_REPOSITORY-current ] && \ mv $DATADIR/autoport-$PORT_REPOSITORY-current $DATADIR/autoport-$PORT_REPOSITORY-last fi step=0 tmpfile=`mktemp` tmpfile1=`mktemp` [ -e $DATAARCHDIR/sentjobs ] || > $DATAARCHDIR/sentjobs find $DATAARCHDIR/sentjobs -cmin 120 >/dev/null && { > $DATAARCHDIR/sentjobs } [ -e $DATAARCHDIR/preparedjobs ] || > $DATAARCHDIR/preparedjobs find $DATAARCHDIR/preparedjobs -ctime 1 >/dev/null && { > $DATAARCHDIR/preparedjobs } sudo autoport-fix-environment $TARGET_ARCH [ "$FIX_MODE" ] && exit 0 [ "$FORCE_MODE" ] && FORCE_FLAG="--force" while [ "${JOB[*]}" ]; do step=`expr $step + 1` [ $step -gt 1 ] && fetch_repfiles [ "$BATCH_MODE" -a $step -gt $AUTOPORT_MAX_STEPS ] && { echo "Maximum steps count reached for batch mode; exiting. See $logfile for details." break } echo "==========" echo "# Step $step" echo "> Scheduled jobs: ${JOB[*]}" echo JOB_MISSINGREQ_OLD=(${JOB_MISSINGREQ[*]}) JOB_MISSINGREQ=() JOB_MAYBEINSTALLED_NEW=() JOB_FAILED_OLD=(${JOB_FAILED[*]}) JOB_FAILED=() JOB_CANTINSTALL_OLD=(${JOB_CANTINSTALL[*]}) for JOB_NUM in `seq 1 ${#JOB[*]}`; do JOB_CURRENT=${JOB[$JOB_NUM-1]/\#*} if [ "${JOB_CURRENT}" != "${JOB[$JOB_NUM-1]}" ]; then JOB_CURRENT_VERSION=${JOB[$JOB_NUM-1]/*\#} else JOB_CURRENT_VERSION= fi if [ ! -s $DATADIR/$PORT_REPOSITORY/unstage.${TARGET_ARCH} -o \ "`grep "^${JOB_CURRENT}$" /etc/autodist/unstage.${TARGET_ARCH} 2>/dev/null`" -o \ "`grep "^${JOB_CURRENT}$" $DATADIR/$PORT_REPOSITORY/unstage.${TARGET_ARCH} 2>/dev/null`" ]; then echo -n "^ $JOB_CURRENT: " STAGEOPTS= else echo -n "^ $JOB_CURRENT(staging): " STAGEOPTS="$AUTOPORT_STAGEVARS" fi if [ "$CROSS_MODE" -a "${JOB_CURRENT:0:5}" == "perl-" ]; then echo "< (SKIPPED) [unable to cross-build perl modules]" JOB_SKIPPED=(${JOB_SKIPPED[*]} $JOB_CURRENT) continue fi [ "`grep ^$JOB_CURRENT\$ $DATAARCHDIR/sentjobs`" -a ! "$FORCE_MODE" ] && { echo "< (SKIPPED) [already sent]" JOB_SKIPPED=(${JOB_SKIPPED[*]} $JOB_CURRENT) continue } if [ "${JOB_MAYBEINSTALLED_NEW[*]}" = "" -a \ "${JOB_MISSINGREQ_OLD[*]}" != "" -a \ "`echo "( ${JOB_FAILED_OLD[*]} )"| grep " $JOB_CURRENT "`" ]; then echo "< (FAILED) [nothing new since previous attempt]" JOB_FAILED=(${JOB_FAILED[*]} $JOB_CURRENT) continue fi get_pkg_srcinfo $DATADIR/$PORT_REPOSITORY ${JOB_CURRENT} || { echo "< (FAILED) [error $? in get_pkg_srcinfo]" JOB_FAILED=(${JOB_FAILED[*]} $JOB_CURRENT) continue } if [ "$JOB_CURRENT_VERSION" -a \ "$JOB_CURRENT_VERSION" != "$src_version" -a \ "$JOB_CURRENT_VERSION" != "$src_version-$src_release" ]; then echo "< (FAILED) [wrong version $src_version-$src_release != $JOB_CURRENT_VERSION]" JOB_FAILED=(${JOB_FAILED[*]} $JOB_CURRENT) continue fi DONT_PREPARE_THIS= RELEASE_UPDATED= for p in ${JOB_CMDLINE[*]}; do [ "$p" = "${JOB_CURRENT}" -o "$DONT_PREPARE_ANY" ] || continue [ -e ${SPECDIR}/${JOB_CURRENT}.spec ] && DONT_PREPARE_THIS="$DONT_PREPARE" done [ ! "$DONT_PREPARE_THIS" -a ! "`grep ^$JOB_CURRENT\$ $DATAARCHDIR/preparedjobs`" ] && { echo -n "prepare" [ "$VERBOSE_MODE" ] && echo " %% COMMAND: LANG=C LC_ALL=C autodist -p ${JOB_CURRENT} --server $PORT_REPOSITORY --repository $PORT_REPOSITORY --severity 2 -- $STAGEOPTS" LANG=C LC_ALL=C autodist -p ${JOB_CURRENT} --server $PORT_REPOSITORY --repository $PORT_REPOSITORY --severity 2 -- $STAGEOPTS &>$tmpfile cat $tmpfile >> $logfile [ $? -gt 0 ] && { RES=`find_source_by_provide $PORT_REPOSITORY $JOB_CURRENT` for j in ${RES}; do [ "$j" != "$JOB_CURRENT" ] && RESOLVED_JOB="$RESOLVED_JOB $j" done if [ "$RESOLVED_JOB" ]; then echo "(FAILED) [but scheduling $RESOLVED_JOB]" JOB_FAILED=(${JOB_FAILED[*]} $RESOLVED_JOB) else echo "(FAILED) " fi JOB_CANTPREPARE=(${JOB_CANTPREPARE[*]} $JOB_CURRENT) autoport_log ${JOB_CURRENT} prepare failed $tmpfile continue } || { echo $JOB_CURRENT >> $DATAARCHDIR/preparedjobs echo -n "(OK) " autoport_log ${JOB_CURRENT} prepare ok $tmpfile } if [ "$REBUILD_MODE" = "1" -o "$REBUILD_DEPENDANT_MODE" = "1" ]; then echo -n "update" if [ "$REBUILD_DEPENDANT_MODE" ]; then SCRIPT_ARGS="${JOB_SCRIPTARGS[$JOB_NUM-1]}" changelogadd="`echo ${SCRIPT_ARGS} | sed "s|--buildreq|,|;s| ||g;s|^,||g"`" REBUILD_CHANGELOG="rebuilt by autoport with build requirements: '${changelogadd}'" fi [ "$VERBOSE_MODE" ] && echo " %% COMMAND: LANG=C LC_ALL=C autodist -u --rebuild -r ${JOB_CURRENT} --severity 2 -- $STAGEOPTS --changelog \"$REBUILD_CHANGELOG\" --- \"$SCRIPT_ARGS\"" LANG=C LC_ALL=C autodist -u --rebuild -r ${JOB_CURRENT} --severity 2 -- $STAGEOPTS --changelog \"$REBUILD_CHANGELOG\" --- $SCRIPT_ARGS &>$tmpfile [ $? -gt 0 ] && { echo "(FAILED) " autoport_log ${JOB_CURRENT} update failed $tmpfile continue } || { autoport_log ${JOB_CURRENT} update ok $tmpfile echo -n "(OK) " RELEASE_UPDATED=1 } elif [ "$PORT_REPOSITORY" != "$DEST_REPOSITORY" ]; then echo -n "update" [ "$VERBOSE_MODE" ] && echo " %% COMMAND: LANG=C LC_ALL=C autodist -u -r ${JOB_CURRENT} --severity 2 -- $STAGEOPTS --changelog \"automatic port from $PORT_REPOSITORY\"" LANG=C LC_ALL=C autodist -u -r ${JOB_CURRENT} --severity 2 -- $STAGEOPTS --changelog \"automatic port from $PORT_REPOSITORY\" --- $SCRIPT_ARGS &>$tmpfile cat $tmpfile >> $logfile [ $? -gt 0 ] && { echo "(FAILED) " autoport_log ${JOB_CURRENT} update failed $tmpfile continue } || { autoport_log ${JOB_CURRENT} update ok $tmpfile echo -n "(OK) " RELEASE_UPDATED=1 } elif [ "$REBUILD_MILESTONE" -a "$src_milestone" != "$REBUILD_MILESTONE" ]; then echo -n "update" [ "$src_repository" -a "$src_version" -a "$src_release" ] || { echo "(FAILED) [can't get repository information for this package]" continue } [ "$VERBOSE_MODE" ] && echo " %% COMMAND: LANG=C LC_ALL=C autospec -u ${JOB_CURRENT} -a4 --rebuild --changelog \"$REBUILD_MILESTONE milestone rebuild\"" # FIXME: should be implemented in autodist LANG=C LC_ALL=C autospec -u ${JOB_CURRENT} -a4 --rebuild --changelog "$REBUILD_MILESTONE milestone rebuild" &>$tmpfile [ $? -gt 0 ] && { if [ "$VERBOSE_MODE" ]; then echo echo "= Failed output:" echo "================" cat $tmpfile echo "================" echo fi cat $tmpfile >> $logfile JOB_FAILED=(${JOB_FAILED[*]} $JOB_CURRENT) echo "(FAILED)" JOB_LOG=`grep "^?= See " $tmpfile | awk '{ print $3 }'` [ "$JOB_LOG" ] || JOB_LOG=$tmpfile autoport_log ${JOB_CURRENT} update failed $tmpfile continue } || { cat $tmpfile >> $logfile echo -n "(OK) " autoport_log ${JOB_CURRENT} update ok $tmpfile RELEASE_UPDATED=1 } fi } echo -n "port" if [ ! "$src_repository" -a "$DONT_PREPARE_THIS" != "1" ]; then echo "(FAILED) [can't get repository information for this package]" autoport_log ${JOB_CURRENT} port failed continue fi SEND_REPOSITORY=$DEST_REPOSITORY if [ ! "$RELEASE_UPDATED" -a ! "$DONT_PREPARE_THIS" ]; then SEND_REPOSITORY=$src_repository fi [ ! "$DONT_PREPARE_THIS" -a ! "$RELEASE_UPDATED" ] && NOSRPM_OPTS="--nosrpm" || NOSRPM_OPTS="--force" [ "$VERBOSE_MODE" ] && echo " %% COMMAND: LANG=C LC_ALL=C autodist -b -s ${JOB_CURRENT} --arch $TARGET_ARCH --server $SEND_REPOSITORY --repository $PORT_REPOSITORY --severity 2 $FORCE_FLAG -- $STAGEOPTS $NOSRPM_OPTS" LANG=C LC_ALL=C autodist -b -s ${JOB_CURRENT} --arch $TARGET_ARCH --server $SEND_REPOSITORY --repository $PORT_REPOSITORY --severity 2 $FORCE_FLAG -- $STAGEOPTS $NOSRPM_OPTS &>$tmpfile [ $? -gt 0 ] && { if [ "$VERBOSE_MODE" ]; then echo echo "= Failed output:" echo "================" cat $tmpfile echo "================" echo fi cat $tmpfile >> $logfile JOB_FAILED=(${JOB_FAILED[*]} $JOB_CURRENT) echo "(FAILED)" JOB_LOG=`grep "^?= See " $tmpfile | awk '{ print $3 }'` [ "$JOB_LOG" ] || JOB_LOG=$tmpfile [ ! "$REBUILD_MILESTONE" ] && find_requirements $JOB_LOG autoport_log ${JOB_CURRENT} port failed $tmpfile continue } || { cat $tmpfile >> $logfile JOB_SENT=(${JOB_SENT[*]} $JOB_CURRENT) echo $JOB_CURRENT >> $DATAARCHDIR/sentjobs echo -n "(OK) " autoport_log ${JOB_CURRENT} port ok $tmpfile if [ "$WEBBUILD_URL" -a "$WEBBUILD_USER" ]; then if [ "$WEBBUILD_USER_CMDLINE" ]; then curl -s "$WEBBUILD_URL?REQUEST=message&USER=$WEBBUILD_USER&SECRET=$WEBBUILD_SECRET&USER_EMAIL=$WEBBUILD_EMAIL&\ MESSAGE=`cgi_encodevar \"(invoked by $WEBBUILD_USER_CMDLINE) ported $JOB_CURRENT to $TARGET_ARCH and sent it to $SEND_REPOSITORY\"`" >/dev/null else curl -s "$WEBBUILD_URL?REQUEST=message&USER=$WEBBUILD_USER&SECRET=$WEBBUILD_SECRET&USER_EMAIL=$WEBBUILD_EMAIL&\ MESSAGE=`cgi_encodevar \"ported $JOB_CURRENT to $TARGET_ARCH and sent it to $SEND_REPOSITORY\"`" >/dev/null fi fi } echo -n "install" LANG=C LC_ALL=C autodist -i ${JOB_CURRENT} --arch $TARGET_ARCH --force --severity 2 -- $STAGEOPTS &>$tmpfile # --server $DEST_REPOSITORY --repository $PORT_REPOSITORY [ $? -gt 0 ] && { if [ "$VERBOSE_MODE" ]; then echo echo "= Failed output:" echo "================" cat $tmpfile echo "================" echo fi cat $tmpfile >> $logfile JOB_CANTINSTALL=(${JOB_CANTINSTALL[*]} $JOB_CURRENT) echo $JOB_CURRENT >> $DATAARCHDIR/checkinstalljobs echo "(FAILED)" # sometimes script fails but package is installed; run fix_la_files anyway sudo autoport-fix-environment $TARGET_ARCH JOB_MAYBEINSTALLED_NEW=(${JOB_MAYBEINSTALLED_NEW[*]} $JOB_CURRENT) JOB_LOG=`grep "^?= See " $tmpfile | awk '{ print $3 }'` [ "$JOB_LOG" ] || JOB_LOG=$tmpfile [ ! "$REBUILD_MILESTONE" ] && find_requirements $JOB_LOG autoport_log ${JOB_CURRENT} install failed $tmpfile continue } || { cat $tmpfile >> $logfile sudo autoport-fix-environment $TARGET_ARCH JOB_MAYBEINSTALLED_NEW=(${JOB_MAYBEINSTALLED_NEW[*]} $JOB_CURRENT) JOB_COMPLETED=(${JOB_COMPLETED[*]} $JOB_CURRENT) echo -n "(OK)" autoport_log ${JOB_CURRENT} install ok $tmpfile } echo done if [ "${JOB[*]}" == "${JOB_FAILED[*]}" -a "${JOB_MISSINGREQ[*]}" == "" ]; then # some new build, retry cantinstall jobs JOB_CANTINSTALL=() for JOB_NUM in `seq 1 ${#JOB_CANTINSTALL_OLD[*]}`; do JOB_CURRENT=${JOB_CANTINSTALL_OLD[$JOB_NUM-1]} if [ "`grep "^${JOB_CURRENT}$" /etc/autodist/unstage.${TARGET_ARCH} 2>/dev/null`" -o \ "`grep "^${JOB_CURRENT}$" $DATADIR/$PORT_REPOSITORY/unstage.$TARGET_ARCH 2>/dev/null`" ]; then echo -n "$JOB_CURRENT: " STAGEOPTS= else echo -n "$JOB_CURRENT(staging): " STAGEOPTS="$AUTOPORT_STAGEVARS" fi echo -n "retryinstall" LANG=C LC_ALL=C autodist -i ${JOB_CURRENT} --arch $TARGET_ARCH --force --severity 2 -- $STAGEOPTS &>>$tmpfile # --server $DEST_REPOSITORY --repository $PORT_REPOSITORY [ $? -gt 0 ] && { if [ "$VERBOSE_MODE" ]; then echo echo "= Failed output:" echo "================" cat $tmpfile echo "================" echo fi cat $tmpfile >> $logfile JOB_CANTINSTALL=(${JOB_CANTINSTALL[*]} $JOB_CURRENT) echo $JOB_CURRENT >> $DATAARCHDIR/checkinstalljobs echo "(FAILED)" # sometimes script fails but package is installed; run fix_la_files anyway sudo autoport-fix-environment $TARGET_ARCH JOB_MAYBEINSTALLED_NEW=(${JOB_MAYBEINSTALLED_NEW[*]} $JOB_CURRENT) JOB_LOG=`grep "^?= See " $tmpfile | awk '{ print $3 }'` [ "$JOB_LOG" ] || JOB_LOG=$tmpfile find_requirements $JOB_LOG continue } || { cat $tmpfile >> $logfile sudo autoport-fix-environment $TARGET_ARCH JOB_MAYBEINSTALLED_NEW=(${JOB_MAYBEINSTALLED_NEW[*]} $JOB_CURRENT) JOB_COMPLETED=(${JOB_COMPLETED[*]} $JOB_CURRENT) echo -n "(OK)" autoport_log ${JOB_CURRENT} retryinstall ok $tmpfile } echo done fi echo "| Skipped jobs: ${JOB_SKIPPED[*]}" echo "| Unpreparable jobs: ${JOB_CANTPREPARE[*]}" echo "| Missing requirements: ${JOB_MISSINGREQ[*]}" echo "| Completed jobs: ${JOB_COMPLETED[*]}" echo "| Installation error for: ${JOB_CANTINSTALL[*]}" echo "| Failed jobs: ${JOB_FAILED[*]}" write_last_file [ "${JOB[*]}" == "${JOB_FAILED[*]}" -a \ "${JOB_MISSINGREQ[*]}" == "" -a \ "${JOB_CANTINSTALL_OLD[*]}" == "${JOB_CANTINSTALL[*]}" ] && { echo "! Loop detected. Finishing. See $logfile for details." rm -f $tmpfile $tmpfile1 exit 1 } [ "$DONT_RECURSE" ] && break JOB=(${JOB_MISSINGREQ[*]} ${JOB_FAILED[*]}) done rm -f $tmpfile $tmpfile1 done echo "* All jobs completed. See $logfile for details." exit ${#JOB_FAILED[*]}