Mercurial > hg > config
view bin/venvit.sh @ 841:d471e0269170
add .cache directory for pytest
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 13 May 2017 18:35:31 -0700 |
parents | 6463a7e37c45 |
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