view bin/venvit.sh @ 105:6463a7e37c45

account for trailing slash
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 26 Nov 2010 11:30:47 -0800
parents ac08d765aa32
children
line wrap: on
line source

#!/bin/bash
# make a virtualenv for the product

# usage
if (( $# != 1 ))
then
    echo "Usage: $0 <svn-or-hg-location>"
    exit 0
fi

# determine name of the package
NAME=$1
for i in /trunk /branches /tag
do
    NAME=${NAME%%$i*}
done
NAME=${NAME%%/} # remove trailing slash
NAME=${NAME##*/}

if svn info $1 2> /dev/null
then
    CHECKOUT="svn co"
else
    CHECKOUT="hg clone"
fi

# create a virtualenv and install the software
VIRTUAL_ENV_LOCATION="${HOME}/virtualenv/virtualenv.py"
python ${VIRTUAL_ENV_LOCATION} ${NAME}
cd ${NAME}
source bin/activate
mkdir src/
cd src/
$CHECKOUT $1 ${NAME}
cd ${NAME}
python setup.py develop