#
# Hi there! Welcome to the yt installation script.
#
# This script is designed to create a fully isolated Python installation
# with the dependencies you need to run yt.
#
# There are a few options, but you only need to set *one* of them. And
# that's the next one, DEST_DIR. But, if you want to use an existing HDF5
# installation you can set HDF5_DIR, or if you want to use some other
# subversion checkout of yt, you can set YT_DIR, too. (It'll already
# check the current directory and one up.
#
# And, feel free to drop me a line: matthewturk@gmail.com
#
DEST_SUFFIX="yt-`uname -m`"
DEST_DIR="`pwd`/${DEST_SUFFIX/ /}" # Installation location
BRANCH="stable" # This is the branch to which we will forcibly update.
if [ ${REINST_YT} -eq 1 ] && [ -n ${YT_DEST} ]
then
DEST_DIR=${YT_DEST}
fi
# Here's where you put the HDF5 path if you like; otherwise it'll download it
# and install it on its own
#HDF5_DIR=
# If you need to supply arguments to the NumPy or SciPy build, supply them here
# This one turns on gfortran manually:
#NUMPY_ARGS="--fcompiler=gnu95"
# If you absolutely can't get the fortran to work, try this:
#NUMPY_ARGS="--fcompiler=fake"
INST_HG=1 # Install Mercurial or not? If hg is not already
# installed, yt cannot be installed.
INST_ZLIB=1 # On some systems (Kraken) matplotlib has issues with
# the system zlib, which is compiled statically.
# If need be, you can turn this off.
INST_BZLIB=1 # On some systems, libbzip2 is missing. This can
# lead to broken mercurial installations.
INST_PNG=1 # Install a local libpng? Same things apply as with zlib.
INST_FTYPE=1 # Install FreeType2 locally?
INST_ENZO=0 # Clone a copy of Enzo?
INST_SQLITE3=1 # Install a local version of SQLite3?
INST_PYX=0 # Install PyX? Sometimes PyX can be problematic without a
# working TeX installation.
INST_0MQ=1 # Install 0mq (for IPython) and affiliated bindings?
INST_ROCKSTAR=0 # Install the Rockstar halo finder?
INST_SCIPY=0 # Install scipy?
# If you've got yt some other place, set this to point to it.
YT_DIR=""
# If you need to pass anything to matplotlib, do so here.
MPL_SUPP_LDFLAGS=""
MPL_SUPP_CFLAGS=""
MPL_SUPP_CXXFLAGS=""
# If you want to spawn multiple Make jobs, here's the place to set the
# arguments. For instance, "-j4"
MAKE_PROCS=""
# Make sure we are NOT being run as root
if [[ $EUID -eq 0 ]]
then
echo "******************************************************"
echo "* *"
echo "* *"
echo "* IT IS A BAD IDEA TO RUN THIS SCRIPT AS ROOT!!!! *"
echo "* *"
echo "* *"
echo "******************************************************"
echo
echo "If you really want to do this, you must manually edit"
echo "the script to re-enable root-level installation. Sorry!"
exit 1
fi
if [[ ${DEST_DIR%/} == /usr/local ]]
then
echo "******************************************************"
echo "* *"
echo "* *"
echo "* THIS SCRIPT WILL NOT INSTALL TO /usr/local !!!! *"
echo "* *"
echo "* *"
echo "******************************************************"
exit 1
fi
#------------------------------------------------------------------------------#
# #
# Okay, the script starts here. Feel free to play with it, but hopefully #
# it'll work as is. #
# #
#------------------------------------------------------------------------------#
LOG_FILE="${DEST_DIR}/yt_install.log"
function get_willwont
{
if [ $1 -eq 1 ]
then
echo -n "will "
else
echo -n "won't "
fi
}
function host_specific
{
MYHOST=`hostname -s` # just give the short one, not FQDN
MYHOSTLONG=`hostname` # FQDN, for Ranger
MYOS=`uname -s` # A guess at the OS
if [ "${MYHOST##kraken}" != "${MYHOST}" ]
then
echo "Looks like you're on Kraken."
echo
echo " ******************************************"
echo " * It may be better to use the yt module! *"
echo " * *"
echo " * $ module load yt *"
echo " * *"
echo " ******************************************"
echo
echo "IF YOU CHOOSE TO PROCEED:"
echo "YOU MUST BE IN THE GNU PROGRAMMING ENVIRONMENT"
echo " $ module swap PrgEnv-pgi PrgEnv-gnu"
echo
return
fi
if [ "${MYHOST##nautilus}" != "${MYHOST}" ]
then
echo "Looks like you're on Nautilus."
echo
echo " ******************************************"
echo " * It may be better to use the yt module! *"
echo " * *"
echo " * $ module load yt *"
echo " * *"
echo " ******************************************"
echo
echo "NOTE: YOU MUST BE IN THE GNU PROGRAMMING ENVIRONMENT"
echo " $ module swap PE-intel PE-gnu"
echo
echo "Additionally, note that by default, yt will OVERWRITE"
echo "any existing installations from Kraken! You might want"
echo "to adjust the variable DEST_SUFFIX in the install script."
echo
return
fi
if [ "${MYHOST##verne}" != "${MYHOST}" ]
then
echo "Looks like you're on Verne."
echo
echo "NOTE: YOU MUST BE IN THE GNU PROGRAMMING ENVIRONMENT"
echo "This command will take care of that for you:"
echo
echo " $ module swap PE-pgi PE-gnu"
echo
fi
if [ "${MYHOST##steele}" != "${MYHOST}" ]
then
echo "Looks like you're on Steele."
echo
echo "NOTE: YOU MUST BE IN THE GNU PROGRAMMING ENVIRONMENT"
echo "These commands should take care of that for you:"
echo
echo " $ module purge"
echo " $ module load gcc"
echo
fi
if [ "${MYHOST##midway}" != "${MYHOST}" ]
then
echo "Looks like you're on Midway."
echo
echo " ******************************************"
echo " * It may be better to use the yt module! *"
echo " * *"
echo " * $ module load yt *"
echo " * *"
echo " ******************************************"
echo
return
fi
if [ "${MYOS##Darwin}" != "${MYOS}" ]
then
echo "Looks like you're running on Mac OSX."
echo
echo "NOTE: you must have the Xcode command line tools installed."
echo
echo "The instructions for obtaining these tools varies according"
echo "to your exact OS version. On older versions of OS X, you"
echo "must register for an account on the apple developer tools"
echo "website: https://developer.apple.com/downloads to obtain the"
echo "download link."
echo
echo "We have gathered some additional instructions for each"
echo "version of OS X below. If you have trouble installing yt"
echo "after following these instructions, don't hesitate to contact"
echo "the yt user's e-mail list."
echo
echo "You can see which version of OSX you are running by clicking"
echo "'About This Mac' in the apple menu on the left hand side of"
echo "menu bar. We're assuming that you've installed all operating"
echo "system updates; if you have an older version, we suggest"
echo "running software update and installing all available updates."
echo
echo "OS X 10.5.8: search for and download Xcode 3.1.4 from the"
echo "Apple developer tools website."
echo
echo "OS X 10.6.8: search for and download Xcode 3.2 from the Apple"
echo "developer tools website. You can either download the"
echo "Xcode 3.2.2 Developer Tools package (744 MB) and then use"
echo "Software Update to update to XCode 3.2.6 or"
echo "alternatively, you can download the Xcode 3.2.6/iOS SDK"
echo "bundle (4.1 GB)."
echo
echo "OS X 10.7.5: download Xcode 4.2 from the mac app store"
echo "(search for Xcode)."
echo "Alternatively, download the Xcode command line tools from"
echo "the Apple developer tools website."
echo
echo "OS X 10.8.2: download Xcode 4.6.1 from the mac app store."
echo "(search for Xcode)."
echo "Additionally, you will have to manually install the Xcode"
echo "command line tools, see:"
echo "http://stackoverflow.com/questions/9353444"
echo "Alternatively, download the Xcode command line tools from"
echo "the Apple developer tools website."
echo
echo "NOTE: It's possible that the installation will fail, if so,"
echo "please set the following environment variables, remove any"
echo "broken installation tree, and re-run this script verbatim."
echo
echo "$ export CC=gcc"
echo "$ export CXX=g++"
echo
OSX_VERSION=`sw_vers -productVersion`
if [ "${OSX_VERSION##10.8}" != "${OSX_VERSION}" ]
then
MPL_SUPP_CFLAGS="${MPL_SUPP_CFLAGS} -mmacosx-version-min=10.7"
MPL_SUPP_CXXFLAGS="${MPL_SUPP_CXXFLAGS} -mmacosx-version-min=10.7"
fi
fi
if [ -f /etc/SuSE-release ] && [ `grep --count SUSE /etc/SuSE-release` -gt 0 ]
then
echo "Looks like you're on an OpenSUSE-compatible machine."
echo
echo "You need to have these packages installed:"
echo
echo " * devel_C_C++"
echo " * libopenssl-devel"
echo " * libuuid-devel"
echo " * zip"
echo " * gcc-c++"
echo
echo "You can accomplish this by executing:"
echo
echo "$ sudo zypper install -t pattern devel_C_C++"
echo "$ sudo zypper install gcc-c++ libopenssl-devel libuuid-devel zip"
echo
echo "I am also setting special configure arguments to Python to"
echo "specify control lib/lib64 issues."
PYCONF_ARGS="--libdir=${DEST_DIR}/lib"
fi
if [ -f /etc/lsb-release ] && [ `grep --count buntu /etc/lsb-release` -gt 0 ]
then
echo "Looks like you're on an Ubuntu-compatible machine."
echo
echo "You need to have these packages installed:"
echo
echo " * libssl-dev"
echo " * build-essential"
echo " * libncurses5"
echo " * libncurses5-dev"
echo " * zip"
echo " * uuid-dev"
echo " * libfreetype6-dev"
echo " * tk-dev"
echo
echo "You can accomplish this by executing:"
echo
echo "$ sudo apt-get install libssl-dev build-essential libncurses5 libncurses5-dev zip uuid-dev libfreetype6-dev tk-dev"
echo
echo
echo " Additionally, if you want to put yt's lib dir in your LD_LIBRARY_PATH"
echo " so you can use yt without the activate script, you might "
echo " want to consider turning off LIBZ and FREETYPE in this"
echo " install script by editing this file and setting"
echo
echo " INST_ZLIB=0"
echo " INST_FTYPE=0"
echo
echo " to avoid conflicts with other command-line programs "
echo " (like eog and evince, for example)."
fi
if [ $INST_SCIPY -eq 1 ]
then
echo
echo "Looks like you've requested that the install script build SciPy."
echo
echo "If the SciPy build fails, please uncomment one of the the lines"
echo "at the top of the install script that sets NUMPY_ARGS, delete"
echo "any broken installation tree, and re-run the install script"
echo "verbatim."
echo
echo "If that doesn't work, don't hesitate to ask for help on the yt"
echo "user's mailing list."
echo
fi
if [ ! -z "${CFLAGS}" ]
then
echo "******************************************"
echo "******************************************"
echo "** **"
echo "** Your CFLAGS is not empty. **"
echo "** This can break h5py compilation. **"
echo "** **"
echo "******************************************"
echo "******************************************"
fi
}
echo
echo
echo "========================================================================"
echo
echo "Hi there! This is the yt installation script. We're going to download"
echo "some stuff and install it to create a self-contained, isolated"
echo "environment for yt to run within."
echo
echo "Inside the installation script you can set a few variables. Here's what"
echo "they're currently set to -- you can hit Ctrl-C and edit the values in "
echo "the script if you aren't such a fan."
echo
printf "%-15s = %s so I " "INST_ZLIB" "${INST_ZLIB}"
get_willwont ${INST_ZLIB}
echo "be installing zlib"
printf "%-15s = %s so I " "INST_BZLIB" "${INST_BZLIB}"
get_willwont ${INST_BZLIB}
echo "be installing bzlib"
printf "%-15s = %s so I " "INST_PNG" "${INST_PNG}"
get_willwont ${INST_PNG}
echo "be installing libpng"
printf "%-15s = %s so I " "INST_FTYPE" "${INST_FTYPE}"
get_willwont ${INST_FTYPE}
echo "be installing freetype2"
printf "%-15s = %s so I " "INST_SQLITE3" "${INST_SQLITE3}"
get_willwont ${INST_SQLITE3}
echo "be installing SQLite3"
printf "%-15s = %s so I " "INST_HG" "${INST_HG}"
get_willwont ${INST_HG}
echo "be installing Mercurial"
printf "%-15s = %s so I " "INST_ENZO" "${INST_ENZO}"
get_willwont ${INST_ENZO}
echo "be checking out Enzo"
printf "%-15s = %s so I " "INST_PYX" "${INST_PYX}"
get_willwont ${INST_PYX}
echo "be installing PyX"
printf "%-15s = %s so I " "INST_SCIPY" "${INST_SCIPY}"
get_willwont ${INST_SCIPY}
echo "be installing scipy"
printf "%-15s = %s so I " "INST_0MQ" "${INST_0MQ}"
get_willwont ${INST_0MQ}
echo "be installing ZeroMQ"
echo
if [ -z "$HDF5_DIR" ]
then
echo "HDF5_DIR is not set, so I will be installing HDF5"
else
echo "HDF5_DIR=${HDF5_DIR} , so I will not be installing HDF5"
fi
echo
echo "Installation will be to"
echo " ${DEST_DIR}"
echo
echo "and I'll be logging the installation in"
echo " ${LOG_FILE}"
echo
echo "I think that about wraps it up. If you want to continue, hit enter. "
echo "If you'd rather stop, maybe think things over, even grab a sandwich, "
echo "hit Ctrl-C."
echo
host_specific
echo "========================================================================"
echo
read -p "[hit enter] "
echo
echo "Awesome! Here we go."
echo
function do_exit
{
echo "********************************************"
echo " FAILURE REPORT:"
echo "********************************************"
echo
tail -n 10 ${LOG_FILE}
echo
echo "********************************************"
echo "********************************************"
echo "Failure. Check ${LOG_FILE}. The last 10 lines are above."
exit 1
}
function do_setup_py
{
[ -e $1/done ] && return
echo "Installing $1 (arguments: '$*')"
[ ! -e $1/extracted ] && tar xfz $1.tar.gz
touch $1/extracted
cd $1
if [ ! -z `echo $1 | grep h5py` ]
then
shift
( ${DEST_DIR}/bin/python2.7 setup.py build --hdf5=${HDF5_DIR} $* 2>&1 ) 1>> ${LOG_FILE} || do_exit
else
shift
( ${DEST_DIR}/bin/python2.7 setup.py build $* 2>&1 ) 1>> ${LOG_FILE} || do_exit
fi
( ${DEST_DIR}/bin/python2.7 setup.py install 2>&1 ) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
}
if type -P wget &>/dev/null
then
echo "Using wget"
export GETFILE="wget -nv"
else
echo "Using curl"
export GETFILE="curl -sSO"
fi
if type -P sha512sum &> /dev/null
then
echo "Using sha512sum"
export SHASUM="sha512sum"
elif type -P shasum &> /dev/null
then
echo "Using shasum -a 512"
export SHASUM="shasum -a 512"
else
echo
echo "I am unable to locate any shasum-like utility."
echo "ALL FILE INTEGRITY IS NOT VERIFIABLE."
echo "THIS IS PROBABLY A BIG DEAL."
echo
echo "(I'll hang out for a minute for you to consider this.)"
sleep 60
fi
function get_ytproject
{
echo "Downloading $1 from yt-project.org"
[ -e $1 ] && return
${GETFILE} "http://yt-project.org/dependencies/$1" || do_exit
( ${SHASUM} -c $1.sha512 2>&1 ) 1>> ${LOG_FILE} || do_exit
}
function get_ytdata
{
echo "Downloading $1 from yt-project.org"
[ -e $1 ] && return
${GETFILE} "http://yt-project.org/data/$1" || do_exit
( ${SHASUM} -c $1.sha512 2>&1 ) 1>> ${LOG_FILE} || do_exit
}
ORIG_PWD=`pwd`
if [ -z "${DEST_DIR}" ]
then
echo "Edit this script, set the DEST_DIR parameter and re-run."
exit 1
fi
# Get supplemental data.
mkdir -p ${DEST_DIR}/data
cd ${DEST_DIR}/data
echo 'de6d8c6ea849f0206d219303329a0276b3cce7c051eec34377d42aacbe0a4f47ac5145eb08966a338ecddd2b83c8f787ca9956508ad5c39ee2088ad875166410 xray_emissivity.h5' > xray_emissivity.h5.sha512
get_ytdata xray_emissivity.h5
mkdir -p ${DEST_DIR}/src
cd ${DEST_DIR}/src
# Now we dump all our SHA512 files out.
echo 'fb85d71bb4f80b35f0d0f1735c650dd75c5f84b05635ddf91d6241ff103b5a49158c5b851a20c15e05425f6dde32a4971b35fcbd7445f61865b4d61ffd1fbfa1 Cython-0.18.tar.gz' > Cython-0.18.tar.gz.sha512
echo '4941f5aa21aff3743546495fb073c10d2657ff42b2aff401903498638093d0e31e344cce778980f28a7170c6d29eab72ac074277b9d4088376e8692dc71e55c1 PyX-0.12.1.tar.gz' > PyX-0.12.1.tar.gz.sha512
echo '3349152c47ed2b63c5c9aabcfa92b8497ea9d71ca551fd721e827fcb8f91ff9fbbee6bba8f8cb2dea185701b8798878b4b2435c1496b63d4b4a37c624a625299 Python-2.7.4.tgz' > Python-2.7.4.tgz.sha512
echo '00ace5438cfa0c577e5f578d8a808613187eff5217c35164ffe044fbafdfec9e98f4192c02a7d67e01e5a5ccced630583ad1003c37697219b0f147343a3fdd12 bzip2-1.0.6.tar.gz' > bzip2-1.0.6.tar.gz.sha512
echo 'a296dfcaef7e853e58eed4e24b37c4fa29cfc6ac688def048480f4bb384b9e37ca447faf96eec7b378fd764ba291713f03ac464581d62275e28eb2ec99110ab6 reason-js-20120623.zip' > reason-js-20120623.zip.sha512
echo 'b46c93d76f8ce09c94765b20b2eeadf71207671f1131777de178b3727c235b4dd77f6e60d62442b96648c3c6749e9e4c1194c1b02af7e946576be09e1ff7ada3 freetype-2.4.11.tar.gz' > freetype-2.4.11.tar.gz.sha512
echo '15ca0209e8d8f172cb0708a2de946fbbde8551d9bebc4a95fa7ae31558457a7f43249d5289d7675490c577deb4e0153698fd2407644078bf30bd5ab10135fce3 h5py-2.1.2.tar.gz' > h5py-2.1.2.tar.gz.sha512
echo 'c68a425bacaa7441037910b9166f25b89e1387776a7749a5350793f89b1690350df5f018060c31d03686e7c3ed2aa848bd2b945c96350dc3b6322e087934783a hdf5-1.8.9.tar.gz' > hdf5-1.8.9.tar.gz.sha512
echo 'b2b53ed358bacab9e8d63a51f17bd5f121ece60a1d7c53e8a8eb08ad8b1e4393a8d7a86eec06e2efc62348114f0d84c0a3dfc805e68e6edd93b20401962b3554 libpng-1.6.1.tar.gz' > libpng-1.6.1.tar.gz.sha512
echo '497f91725eaf361bdb9bdf38db2bff5068a77038f1536df193db64c9b887e3b0d967486daee722eda6e2c4e60f034eee030673e53d07bf0db0f3f7c0ef3bd208 matplotlib-1.2.1.tar.gz' > matplotlib-1.2.1.tar.gz.sha512
echo '928fdeaaf0eaec80adbd8765521de9666ab56aaa2101fb9ab2cb392d8b29475d3b052d89652ff9b67522cfcc6cd958717ac715f51b0573ee088e9a595f29afe2 mercurial-2.5.4.tar.gz' > mercurial-2.5.4.tar.gz.sha512
echo 'a485daa556f6c76003de1dbb3e42b3daeee0a320c69c81b31a7d2ebbc2cf8ab8e96c214a4758e5e7bf814295dc1d6aa563092b714db7e719678d8462135861a8 numpy-1.7.0.tar.gz' > numpy-1.7.0.tar.gz.sha512
echo '293d78d14a9347cb83e1a644e5f3e4447ed6fc21642c51683e5495dda08d2312194a73d1fc3c1d78287e33ed065aa251ecbaa7c0ea9189456c1702e96d78becd sqlite-autoconf-3071601.tar.gz' > sqlite-autoconf-3071601.tar.gz.sha512
echo 'b1c073ad26684e354f7c522c14655840592e03872bc0a94690f89cae2ff88f146fce1dad252ff27a889dac4a32ff9f8ab63ba940671f9da89e9ba3e19f1bf58d zlib-1.2.7.tar.gz' > zlib-1.2.7.tar.gz.sha512
echo '05ac335727a2c3036f31a2506fdd2615aa436bfbe2f81799fe6c51bffe2591ad6a8427f3b25c34e7e709fb4e7607a0589dc7a22185c1f9b894e90de6711a88aa ipython-0.13.1.tar.gz' > ipython-0.13.1.tar.gz.sha512
echo 'b9d061ca49e54ea917e0aed2b2a48faef33061dbf6d17eae7f8c3fff0b35ca883e7324f6cb24bda542443f669dcd5748037a5f2309f4c359d68adef520894865 zeromq-3.2.2.tar.gz' > zeromq-3.2.2.tar.gz.sha512
echo '852fce8a8308c4e1e4b19c77add2b2055ca2ba570b28e8364888df490af92b860c72e860adfb075b3405a9ceb62f343889f20a8711c9353a7d9059adee910f83 pyzmq-13.0.2.tar.gz' > pyzmq-13.0.2.tar.gz.sha512
echo '303bd3fbea22be57fddf7df78ddf5a783d355a0c8071b1363250daafc20232ddd28eedc44aa1194f4a7afd82f9396628c5bb06819e02b065b6a1b1ae8a7c19e1 tornado-3.0.tar.gz' > tornado-3.0.tar.gz.sha512
echo '3f53d0b474bfd79fea2536d0a9197eaef6c0927e95f2f9fd52dbd6c1d46409d0e649c21ac418d8f7767a9f10fe6114b516e06f2be4b06aec3ab5bdebc8768220 Forthon-0.8.11.tar.gz' > Forthon-0.8.11.tar.gz.sha512
echo 'c13116c1f0547000cc565e15774687b9e884f8b74fb62a84e578408a868a84961704839065ae4f21b662e87f2aaedf6ea424ea58dfa9d3d73c06281f806d15dd nose-1.2.1.tar.gz' > nose-1.2.1.tar.gz.sha512
echo 'd67de9567256e6f1649e4f3f7dfee63371d5f00fd3fd4f92426198f862e97c57f70e827d19f4e5e1929ad85ef2ce7aa5a0596b101cafdac71672e97dc115b397 python-hglib-0.3.tar.gz' > python-hglib-0.3.tar.gz.sha512
echo 'ffc602eb346717286b3d0a6770c60b03b578b3cf70ebd12f9e8b1c8c39cdb12ef219ddaa041d7929351a6b02dbb8caf1821b5452d95aae95034cbf4bc9904a7a sympy-0.7.2.tar.gz' > sympy-0.7.2.tar.gz.sha512
echo '172f2bc671145ebb0add2669c117863db35851fb3bdb192006cd710d4d038e0037497eb39a6d01091cb923f71a7e8982a77b6e80bf71d6275d5d83a363c8d7e5 rockstar-0.99.6.tar.gz' > rockstar-0.99.6.tar.gz.sha512
echo 'd4fdd62f2db5285cd133649bd1bfa5175cb9da8304323abd74e0ef1207d55e6152f0f944da1da75f73e9dafb0f3bb14efba3c0526c732c348a653e0bd223ccfa scipy-0.11.0.tar.gz' > scipy-0.11.0.tar.gz.sha512
echo '276bd9c061ec9a27d478b33078a86f93164ee2da72210e12e2c9da71dcffeb64767e4460b93f257302b09328eda8655e93c4b9ae85e74472869afbeae35ca71e blas.tar.gz' > blas.tar.gz.sha512
echo '8770214491e31f0a7a3efaade90eee7b0eb20a8a6ab635c5f854d78263f59a1849133c14ef5123d01023f0110cbb9fc6f818da053c01277914ae81473430a952 lapack-3.4.2.tar.gz' > lapack-3.4.2.tar.gz.sha512
# Individual processes
[ -z "$HDF5_DIR" ] && get_ytproject hdf5-1.8.9.tar.gz
[ $INST_ZLIB -eq 1 ] && get_ytproject zlib-1.2.7.tar.gz
[ $INST_BZLIB -eq 1 ] && get_ytproject bzip2-1.0.6.tar.gz
[ $INST_PNG -eq 1 ] && get_ytproject libpng-1.6.1.tar.gz
[ $INST_FTYPE -eq 1 ] && get_ytproject freetype-2.4.11.tar.gz
[ $INST_SQLITE3 -eq 1 ] && get_ytproject sqlite-autoconf-3071601.tar.gz
[ $INST_PYX -eq 1 ] && get_ytproject PyX-0.12.1.tar.gz
[ $INST_0MQ -eq 1 ] && get_ytproject zeromq-3.2.2.tar.gz
[ $INST_0MQ -eq 1 ] && get_ytproject pyzmq-13.0.2.tar.gz
[ $INST_0MQ -eq 1 ] && get_ytproject tornado-3.0.tar.gz
[ $INST_SCIPY -eq 1 ] && get_ytproject scipy-0.11.0.tar.gz
[ $INST_SCIPY -eq 1 ] && get_ytproject blas.tar.gz
[ $INST_SCIPY -eq 1 ] && get_ytproject lapack-3.4.2.tar.gz
get_ytproject Python-2.7.4.tgz
get_ytproject numpy-1.7.0.tar.gz
get_ytproject matplotlib-1.2.1.tar.gz
get_ytproject mercurial-2.5.4.tar.gz
get_ytproject ipython-0.13.1.tar.gz
get_ytproject h5py-2.1.2.tar.gz
get_ytproject Cython-0.18.tar.gz
get_ytproject reason-js-20120623.zip
get_ytproject Forthon-0.8.11.tar.gz
get_ytproject nose-1.2.1.tar.gz
get_ytproject python-hglib-0.3.tar.gz
get_ytproject sympy-0.7.2.tar.gz
get_ytproject rockstar-0.99.6.tar.gz
if [ $INST_BZLIB -eq 1 ]
then
if [ ! -e bzip2-1.0.6/done ]
then
[ ! -e bzip2-1.0.6 ] && tar xfz bzip2-1.0.6.tar.gz
echo "Installing BZLIB"
cd bzip2-1.0.6
if [ `uname` = "Darwin" ]
then
if [ -z "${CC}" ]
then
sed -i.bak 's/soname/install_name/' Makefile-libbz2_so
else
sed -i.bak -e 's/soname/install_name/' -e "s/CC=gcc/CC=${CC}/" Makefile-libbz2_so
fi
fi
( make install CFLAGS=-fPIC LDFLAGS=-fPIC PREFIX=${DEST_DIR} 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make -f Makefile-libbz2_so CFLAGS=-fPIC LDFLAGS=-fPIC PREFIX=${DEST_DIR} 2>&1 ) 1>> ${LOG_FILE} || do_exit
( cp -v libbz2.so.1.0.6 ${DEST_DIR}/lib 2>&1 ) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
BZLIB_DIR=${DEST_DIR}
export LDFLAGS="${LDFLAGS} -L${BZLIB_DIR}/lib/ -L${BZLIB_DIR}/lib64/"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BZLIB_DIR}/lib/"
fi
if [ $INST_ZLIB -eq 1 ]
then
if [ ! -e zlib-1.2.7/done ]
then
[ ! -e zlib-1.2.7 ] && tar xfz zlib-1.2.7.tar.gz
echo "Installing ZLIB"
cd zlib-1.2.7
( ./configure --shared --prefix=${DEST_DIR}/ 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
ZLIB_DIR=${DEST_DIR}
export LDFLAGS="${LDFLAGS} -L${ZLIB_DIR}/lib/ -L${ZLIB_DIR}/lib64/"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ZLIB_DIR}/lib/"
fi
if [ $INST_PNG -eq 1 ]
then
if [ ! -e libpng-1.6.1/done ]
then
[ ! -e libpng-1.6.1 ] && tar xfz libpng-1.6.1.tar.gz
echo "Installing PNG"
cd libpng-1.6.1
( ./configure CPPFLAGS=-I${DEST_DIR}/include CFLAGS=-I${DEST_DIR}/include --prefix=${DEST_DIR}/ 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
PNG_DIR=${DEST_DIR}
export LDFLAGS="${LDFLAGS} -L${PNG_DIR}/lib/ -L${PNG_DIR}/lib64/"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${PNG_DIR}/lib/"
fi
if [ $INST_FTYPE -eq 1 ]
then
if [ ! -e freetype-2.4.11/done ]
then
[ ! -e freetype-2.4.11 ] && tar xfz freetype-2.4.11.tar.gz
echo "Installing FreeType2"
cd freetype-2.4.11
( ./configure CFLAGS=-I${DEST_DIR}/include --prefix=${DEST_DIR}/ 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
FTYPE_DIR=${DEST_DIR}
export LDFLAGS="${LDFLAGS} -L${FTYPE_DIR}/lib/ -L${FTYPE_DIR}/lib64/"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${FTYPE_DIR}/lib/"
fi
if [ -z "$HDF5_DIR" ]
then
if [ ! -e hdf5-1.8.9/done ]
then
[ ! -e hdf5-1.8.9 ] && tar xfz hdf5-1.8.9.tar.gz
echo "Installing HDF5"
cd hdf5-1.8.9
( ./configure --prefix=${DEST_DIR}/ --enable-shared 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make ${MAKE_PROCS} install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
export HDF5_DIR=${DEST_DIR}
else
export HDF5_DIR=${HDF5_DIR}
fi
export HDF5_API=16
if [ $INST_SQLITE3 -eq 1 ]
then
if [ ! -e sqlite-autoconf-3071601/done ]
then
[ ! -e sqlite-autoconf-3071601 ] && tar xfz sqlite-autoconf-3071601.tar.gz
echo "Installing SQLite3"
cd sqlite-autoconf-3071601
( ./configure --prefix=${DEST_DIR}/ 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make ${MAKE_PROCS} install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
fi
if [ ! -e Python-2.7.4/done ]
then
echo "Installing Python. This may take a while, but don't worry. yt loves you."
[ ! -e Python-2.7.4 ] && tar xfz Python-2.7.4.tgz
cd Python-2.7.4
( ./configure --prefix=${DEST_DIR}/ ${PYCONF_ARGS} 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make ${MAKE_PROCS} 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( ln -sf ${DEST_DIR}/bin/python2.7 ${DEST_DIR}/bin/pyyt 2>&1 ) 1>> ${LOG_FILE}
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
export PYTHONPATH=${DEST_DIR}/lib/python2.7/site-packages/
if [ $INST_HG -eq 1 ]
then
do_setup_py mercurial-2.5.4
export HG_EXEC=${DEST_DIR}/bin/hg
else
# We assume that hg can be found in the path.
if type -P hg &>/dev/null
then
export HG_EXEC=hg
else
echo "Cannot find mercurial. Please set INST_HG=1."
do_exit
fi
fi
if [ -z "$YT_DIR" ]
then
if [ -e $ORIG_PWD/yt/mods.py ]
then
YT_DIR="$ORIG_PWD"
elif [ -e $ORIG_PWD/../yt/mods.py ]
then
YT_DIR=`dirname $ORIG_PWD`
elif [ ! -e yt-hg ]
then
YT_DIR="$PWD/yt-hg/"
( ${HG_EXEC} --debug clone https://bitbucket.org/yt_analysis/yt-supplemental/ 2>&1 ) 1>> ${LOG_FILE}
# Recently the hg server has had some issues with timeouts. In lieu of
# a new webserver, we are now moving to a three-stage process.
# First we clone the repo, but only up to r0.
( ${HG_EXEC} --debug clone https://bitbucket.org/yt_analysis/yt/ ./yt-hg 2>&1 ) 1>> ${LOG_FILE}
# Now we update to the branch we're interested in.
( ${HG_EXEC} -R ${YT_DIR} up -C ${BRANCH} 2>&1 ) 1>> ${LOG_FILE}
elif [ -e yt-hg ]
then
YT_DIR="$PWD/yt-hg/"
fi
echo Setting YT_DIR=${YT_DIR}
fi
# This fixes problems with gfortran linking.
unset LDFLAGS
echo "Installing distribute"
( ${DEST_DIR}/bin/python2.7 ${YT_DIR}/distribute_setup.py 2>&1 ) 1>> ${LOG_FILE} || do_exit
echo "Installing pip"
( ${DEST_DIR}/bin/easy_install-2.7 pip 2>&1 ) 1>> ${LOG_FILE} || do_exit
if [ $INST_SCIPY -eq 0 ]
then
do_setup_py numpy-1.7.0 ${NUMPY_ARGS}
else
if [ ! -e scipy-0.11.0/done ]
then
if [ ! -e BLAS/done ]
then
tar xfz blas.tar.gz
echo "Building BLAS"
cd BLAS
gfortran -O2 -fPIC -fno-second-underscore -c *.f
ar r libfblas.a *.o 1>> ${LOG_FILE}
ranlib libfblas.a 1>> ${LOG_FILE}
rm -rf *.o
touch done
cd ..
fi
if [ ! -e lapack-3.4.2/done ]
then
tar xfz lapack-3.4.2.tar.gz
echo "Building LAPACK"
cd lapack-3.4.2/
cp INSTALL/make.inc.gfortran make.inc
make lapacklib OPTS="-fPIC -O2" NOOPT="-fPIC -O0" CFLAGS=-fPIC LDFLAGS=-fPIC 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
fi
export BLAS=$PWD/BLAS/libfblas.a
export LAPACK=$PWD/lapack-3.4.2/liblapack.a
do_setup_py numpy-1.7.0 ${NUMPY_ARGS}
do_setup_py scipy-0.11.0 ${NUMPY_ARGS}
fi
if [ -n "${MPL_SUPP_LDFLAGS}" ]
then
OLD_LDFLAGS=${LDFLAGS}
export LDFLAGS="${MPL_SUPP_LDFLAGS}"
echo "Setting LDFLAGS ${LDFLAGS}"
fi
if [ -n "${MPL_SUPP_CXXFLAGS}" ]
then
OLD_CXXFLAGS=${CXXFLAGS}
export CXXFLAGS="${MPL_SUPP_CXXFLAGS}"
echo "Setting CXXFLAGS ${CXXFLAGS}"
fi
if [ -n "${MPL_SUPP_CFLAGS}" ]
then
OLD_CFLAGS=${CFLAGS}
export CFLAGS="${MPL_SUPP_CFLAGS}"
echo "Setting CFLAGS ${CFLAGS}"
fi
# Now we set up the basedir for matplotlib:
mkdir -p ${DEST_DIR}/src/matplotlib-1.2.1
echo "[directories]" >> ${DEST_DIR}/src/matplotlib-1.2.1/setup.cfg
echo "basedirlist = ${DEST_DIR}" >> ${DEST_DIR}/src/matplotlib-1.2.1/setup.cfg
do_setup_py matplotlib-1.2.1
if [ -n "${OLD_LDFLAGS}" ]
then
export LDFLAG=${OLD_LDFLAGS}
fi
[ -n "${OLD_LDFLAGS}" ] && export LDFLAGS=${OLD_LDFLAGS}
[ -n "${OLD_CXXFLAGS}" ] && export CXXFLAGS=${OLD_CXXFLAGS}
[ -n "${OLD_CFLAGS}" ] && export CFLAGS=${OLD_CFLAGS}
# Now we do our IPython installation, which has two optional dependencies.
if [ $INST_0MQ -eq 1 ]
then
if [ ! -e zeromq-3.2.2/done ]
then
[ ! -e zeromq-3.2.2 ] && tar xfz zeromq-3.2.2.tar.gz
echo "Installing ZeroMQ"
cd zeromq-3.2.2
( ./configure --prefix=${DEST_DIR}/ 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make install 2>&1 ) 1>> ${LOG_FILE} || do_exit
( make clean 2>&1) 1>> ${LOG_FILE} || do_exit
touch done
cd ..
fi
do_setup_py pyzmq-13.0.2 --zmq=${DEST_DIR}
do_setup_py tornado-3.0
fi
do_setup_py ipython-0.13.1
do_setup_py h5py-2.1.2
do_setup_py Cython-0.18
do_setup_py Forthon-0.8.11
do_setup_py nose-1.2.1
do_setup_py python-hglib-0.3
do_setup_py sympy-0.7.2
[ $INST_PYX -eq 1 ] && do_setup_py PyX-0.12.1
# Now we build Rockstar and set its environment variable.
if [ $INST_ROCKSTAR -eq 1 ]
then
if [ ! -e Rockstar/done ]
then
[ ! -e Rockstar ] && tar xfz rockstar-0.99.6.tar.gz
echo "Building Rockstar"
cd Rockstar
( make lib 2>&1 ) 1>> ${LOG_FILE} || do_exit
cp librockstar.so ${DEST_DIR}/lib
ROCKSTAR_DIR=${DEST_DIR}/src/Rockstar
echo $ROCKSTAR_DIR > ${YT_DIR}/rockstar.cfg
touch done
cd ..
fi
fi
echo "Doing yt update, wiping local changes and updating to branch ${BRANCH}"
MY_PWD=`pwd`
cd $YT_DIR
( ${HG_EXEC} pull 2>1 && ${HG_EXEC} up -C 2>1 ${BRANCH} 2>&1 ) 1>> ${LOG_FILE}
echo "Installing yt"
echo $HDF5_DIR > hdf5.cfg
[ $INST_PNG -eq 1 ] && echo $PNG_DIR > png.cfg
[ $INST_FTYPE -eq 1 ] && echo $FTYPE_DIR > freetype.cfg
( export PATH=$DEST_DIR/bin:$PATH ; ${DEST_DIR}/bin/python2.7 setup.py develop 2>&1 ) 1>> ${LOG_FILE} || do_exit
touch done
cd $MY_PWD
if !(${DEST_DIR}/bin/python2.7 -c "import readline" >> ${LOG_FILE})
then
echo "Installing pure-python readline"
${DEST_DIR}/bin/pip install readline 1>> ${LOG_FILE}
fi
if [ $INST_ENZO -eq 1 ]
then
echo "Cloning a copy of Enzo."
cd ${DEST_DIR}/src/
${HG_EXEC} clone https://bitbucket.org/enzo/enzo-stable ./enzo-hg-stable
cd $MY_PWD
fi
if [ -e $HOME/.matplotlib/fontList.cache ] && \
( grep -q python2.6 $HOME/.matplotlib/fontList.cache )
then
echo "WARNING WARNING WARNING WARNING WARNING WARNING WARNING"
echo "*******************************************************"
echo
echo " You likely need to remove your old fontList.cache!"
echo " You can do this with this command:"
echo ""
echo " rm $HOME/.matplotlib/fontList.cache"
echo
echo "*******************************************************"
fi
# Add the environment scripts
( cp ${YT_DIR}/doc/activate ${DEST_DIR}/bin/activate 2>&1 ) 1>> ${LOG_FILE}
sed -i.bak -e "s,__YT_DIR__,${DEST_DIR}," ${DEST_DIR}/bin/activate
( cp ${YT_DIR}/doc/activate.csh ${DEST_DIR}/bin/activate.csh 2>&1 ) 1>> ${LOG_FILE}
sed -i.bak -e "s,__YT_DIR__,${DEST_DIR}," ${DEST_DIR}/bin/activate.csh
function print_afterword
{
echo
echo
echo "========================================================================"
echo
echo "yt is now installed in $DEST_DIR ."
echo
echo "To run from this new installation, use the activate script for this "
echo "environment."
echo
echo " $ source $DEST_DIR/bin/activate"
echo
echo "This modifies the environment variables YT_DEST, PATH, PYTHONPATH, and"
echo "LD_LIBRARY_PATH to match your new yt install. If you use csh, just"
echo "append .csh to the above."
echo
echo "To get started with yt, check out the orientation:"
echo
echo " http://yt-project.org/doc/orientation/"
echo
echo "or just activate your environment and run 'yt serve' to bring up the"
echo "yt GUI."
echo
echo "The source for yt is located at:"
echo " $YT_DIR"
if [ $INST_HG -eq 1 ]
then
echo
echo "Mercurial has also been installed:"
echo
echo "$DEST_DIR/bin/hg"
echo
fi
if [ $INST_ENZO -eq 1 ]
then
echo "Enzo has also been checked out, but not built."
echo
echo "$DEST_DIR/src/enzo-hg-stable"
echo
echo "The value of YT_DEST can be used as an HDF5 installation location."
echo "Questions about Enzo should be directed to the Enzo User List."
echo
fi
echo
echo "For support, see the website and join the mailing list:"
echo
echo " http://yt-project.org/"
echo " http://yt-project.org/data/ (Sample data)"
echo " http://yt-project.org/doc/ (Docs)"
echo
echo " http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org"
echo
echo "========================================================================"
echo
echo "Oh, look at me, still talking when there's science to do!"
echo "Good luck, and email the user list if you run into any problems."
}
print_afterword
print_afterword >> ${LOG_FILE}
echo "yt dependencies were last updated on" > ${DEST_DIR}/.yt_update
date >> ${DEST_DIR}/.yt_update