diff --git a/BuildParams b/BuildParams deleted file mode 100644 index 5a4f63454a77aefbf129ce800b3b2a134e6f2975..0000000000000000000000000000000000000000 --- a/BuildParams +++ /dev/null @@ -1 +0,0 @@ -zlib-autobuild.xfoo = bar diff --git a/build.sh b/build.sh deleted file mode 100755 index 284791f715b499d70ab4384f1734504f3119cdce..0000000000000000000000000000000000000000 --- a/build.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -# turn on verbose debugging output for parabuild logs. -set -x - -if [ -z "$AUTOBUILD" ] ; then - AUTOBUILD="$(which autobuild)" -fi - -ZLIB_VERSION="1.2.3" - -# *NOTE: temporary workaround until autobuild is installed on the build farm -autobuild_installed () -{ - local hardcoded_rev="parabuild-bootstrap" - local bootstrap_url="http://pdp47.lindenlab.com/cgi-bin/hgwebdir.cgi/brad/autobuild/archive/$hardcoded_rev.tar.bz2" - - # hg.lindenlab.com is kind of hosed right now. - #local hardcoded_rev="c8062b08a710" - #local boostrap_url="http://hg.lindenlab.com/brad/autobuild-trunk/get/$hardcoded_rev.bz2" - - if [ -z "$AUTOBUILD" ] || [ ! -x "$AUTOBUILD" ] ; then - echo "failed to find executable autobuild $AUTOBUILD" >&2 - - echo "fetching autobuild rev $hardcoded_rev from $bootstrap_url" - curl "$bootstrap_url" | tar -xj - AUTOBUILD="$(pwd)/autobuild-$hardcoded_rev/bin/autobuild" - if [ ! -x "$AUTOBUILD" ] ; then - echo "failed to bootstrap autobuild!" - return 1 - fi - fi - echo "located autobuild tool: '$AUTOBUILD'" -} - -# at this point we should know where everything is, so make errors fatal -set -e - -# this fail function will either be provided by the parabuild buildscripts or -# not exist. either way it's a fatal error -autobuild_installed || fail - -# *HACK - bash doesn't know how to pass real pathnames to native windows python -if [ "$OSTYPE" == 'cygwin' ] ; then - AUTOBUILD="$(cygpath -u $AUTOBUILD.cmd)" -fi - -# load autbuild provided shell functions and variables -eval "$("$AUTOBUILD" source_environment)" - -"$AUTOBUILD" build - -"$AUTOBUILD" package - -ZLIB_INSTALLABLE_PACKAGE_FILENAME="$(ls -1 zlib-$ZLIB_VERSION-$AUTOBUILD_PLATFORM-$(date +%Y%m%d)*.tar.bz2)" -#"$AUTOBUILD" upload "$ZLIB_INSTALLABLE_PACKAGE_FILENAME" -upload_item installer "$ZLIB_INSTALLABLE_PACKAGE_FILENAME" binary/octet-stream - -ZLIB_INSTALLABLE_PACKAGE_MD5="$(calc_md5 "$ZLIB_INSTALLABLE_PACKAGE_FILENAME")" -echo "{'md5':'$ZLIB_INSTALLABLE_PACKAGE_MD5', 'filename':'$ZLIB_INSTALLABLE_PACKAGE_FILENAME'}" > "output.js" - -upload_item installer "output.js" text/plain - -pass -