# Configuration file for LSB autobuilder # Add /opt/lsb/bin to PATH so lsbcc can be found export PATH=$PATH:/opt/lsb/bin export ECLIPSE_HOME=/usr/local/eclipse # Server to get source from if [ -z "$CVSROOT" ]; then export CVSROOT=:pserver:anonymous@cvs.gforge.freestandards.org:/cvsroot/lsb fi # Bazaar version of above if [ -z "$BZR_ROOT" ]; then export BZR_ROOT=http://bzr.linux-foundation.org/lsb/devel fi # Packages to build. This should be the list of directories # in src/pkgs (except skip lsb, lsbsi-graphics) NOARCH_PACKAGES="perl-test lsbappchk-perl lsbappchk-python lsbappchk-sh task-pkgs lsb-setup lsb-eclipse-plugin" if [ -z "$BUILD_PACKAGES" ]; then export BUILD_PACKAGES="lsbappchk lsbdev-base lsbdev-cc lsbdev-desktop lsbdev-runner lsbcmdchk lsbpkgchk lsblibchk lsbarchk dtk-manager tet-harness qmtest-harness libstdcpp-test desktop-test runtime-test lsb-xdg-utils xts5-test lsb-xvfb python-test printing-test t2c-desktop-tests azov-qt3-tests azov-qt4-tests makelsbpkg t2c-cpp-tests olver-core-tests" fi if [ `arch` == "x86_64" ]; then BUILD_PACKAGES="$NOARCH_PACKAGES $BUILD_PACKAGES" fi #if [ -z "$BUILD_PACKAGES" ]; then # export BUILD_PACKAGES="lsb-eclipse-plugin" #fi # Where to upload autobuilt packages if [ -z "$UPLOAD_TARGET" ]; then #export UPLOAD_TARGET=autobuild@ftp.linux-foundation.org:snapshot/ export UPLOAD_TARGET=autobuild@dev.linux-foundation.org:snapshot/ fi # Build directory source SOURCE_DIR=packaging # Number of tries to attempt to retreive build directories NUM_TRIES=5 # Number of seconds to wait if attempt to retreive build directories fails WAIT_TIME=3600 # Don't build deb packages on systems where not supported if [ `arch` == "ppc64" -o `arch` == "s390x" -o ! -f /usr/bin/alien ]; then export BUILD_NO_DEB=1 fi # Set environment variable so autobuilder will sign packages export SIGN_PACKAGES=1 # Set BZR_PROGRESS_BAR to avoid tick marks export BZR_PROGRESS_BAR='none'