From a12c916802b716edcf327f933b39d119c9196fa6 Mon Sep 17 00:00:00 2001 From: bp-sawyers Date: Thu, 22 Dec 2011 10:56:44 +0000 Subject: [PATCH] get rid of more verbose output in build scripts git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11288 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- buildcore.sh | 18 +++++++++--------- builddep.sh | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/buildcore.sh b/buildcore.sh index aa40b41c7..572f5f372 100755 --- a/buildcore.sh +++ b/buildcore.sh @@ -46,7 +46,7 @@ fi # Find where this script is located to set some build variables cd `dirname $0` # strip the /src/xcat-core from the end of the dir to get the next dir up and use as the release -if [ -z $REL ]; then +if [ -z "$REL" ]; then curdir=`pwd` D=${curdir%/src/xcat-core} REL=`basename $D` @@ -251,8 +251,8 @@ if [ "$OSNAME" != "AIX" ]; then echo '%_gpg_name Jarrod Johnson' >> $MACROS fi echo "Signing RPMs..." - build-utils/rpmsign.exp $DESTDIR/*rpm | grep -v -E '(was already signed|rpm --quiet --resign)' - build-utils/rpmsign.exp $SRCDIR/*rpm | grep -v -E '(was already signed|rpm --quiet --resign)' + build-utils/rpmsign.exp $DESTDIR/*rpm | grep -v -E '(was already signed|rpm --quiet --resign|WARNING: standard input reopened)' + build-utils/rpmsign.exp $SRCDIR/*rpm | grep -v -E '(was already signed|rpm --quiet --resign|WARNING: standard input reopened)' createrepo $DESTDIR createrepo $SRCDIR rm -f $SRCDIR/repodata/repomd.xml.asc @@ -315,17 +315,17 @@ fi # not AIX # Build the tarball cd .. if [ -n "$VERBOSEMODE" ]; then - verbosetar="-v" + verboseflag="-v" else - verbosetar="" + verboseflag="" fi echo "Creating $TARNAME ..." if [ "$OSNAME" = "AIX" ]; then - tar $verbosetar -hcf ${TARNAME%.gz} $XCATCORE + tar $verboseflag -hcf ${TARNAME%.gz} $XCATCORE rm -f $TARNAME gzip ${TARNAME%.gz} else - tar $verbosetar -hjcf $TARNAME $XCATCORE + tar $verboseflag -hjcf $TARNAME $XCATCORE fi chgrp xcat $TARNAME chmod g+w $TARNAME @@ -374,6 +374,7 @@ fi # Extract and upload the man pages in html format if [ "$OSNAME" != "AIX" -a "$REL" = "devel" -a "$PROMOTE" != 1 ]; then + echo "Extracting and uploading man pages to htdocs/ ..." mkdir -p man cd man rm -rf opt @@ -381,8 +382,7 @@ if [ "$OSNAME" != "AIX" -a "$REL" = "devel" -a "$PROMOTE" != 1 ]; then rpm2cpio ../$XCATCORE/perl-xCAT-*.$NOARCH.rpm | cpio -id '*.html' rpm2cpio ../$XCATCORE/xCAT-test-*.$NOARCH.rpm | cpio -id '*.html' i=0 - echo "Uploading man pages to htdocs/ ..." - while [ $((i++)) -lt 5 ] && ! rsync -rv opt/xcat/share/doc/man1 opt/xcat/share/doc/man3 opt/xcat/share/doc/man5 opt/xcat/share/doc/man7 opt/xcat/share/doc/man8 $UPLOADUSER,xcat@web.sourceforge.net:htdocs/ + while [ $((i++)) -lt 5 ] && ! rsync $verboseflag -r opt/xcat/share/doc/man1 opt/xcat/share/doc/man3 opt/xcat/share/doc/man5 opt/xcat/share/doc/man7 opt/xcat/share/doc/man8 $UPLOADUSER,xcat@web.sourceforge.net:htdocs/ do : ; done cd .. fi diff --git a/builddep.sh b/builddep.sh index 18ae961f8..dea6664ba 100755 --- a/builddep.sh +++ b/builddep.sh @@ -97,7 +97,7 @@ if [ "$OSNAME" != "AIX" ]; then # Sign the rpms that are not already signed. The "standard input reopened" warnings are normal. echo "Signing RPMs..." - $XCATCOREDIR/build-utils/rpmsign.exp `find . -type f -name '*.rpm'` | grep -v -E '(was already signed|rpm --quiet --resign)' + $XCATCOREDIR/build-utils/rpmsign.exp `find . -type f -name '*.rpm'` | grep -v -E '(was already signed|rpm --quiet --resign|WARNING: standard input reopened)' # Create the repodata dirs echo "Creating repodata directories..."