diff bin/venvit.sh @ 0:f3ab51c79813

adding configuration from https://svn.openplans.org/svn/config_jhammel/
author k0s <k0scist@gmail.com>
date Thu, 15 Oct 2009 11:41:26 -0400
parents
children ac08d765aa32
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/venvit.sh	Thu Oct 15 11:41:26 2009 -0400
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+if (( $# != 1 ))
+then
+    echo "Usage: $0 <svn-location>"
+    exit 0
+fi
+
+NAME=$1
+
+for i in /trunk /branches /tag
+do
+    NAME=${NAME%%$i*}
+done
+NAME=${NAME##*/}
+
+#echo $NAME
+
+VIRTUAL_ENV_LOCATION="${HOME}/virtualenv/virtualenv.py"
+
+python ${VIRTUAL_ENV_LOCATION} ${NAME}
+cd ${NAME}
+source bin/activate
+mkdir src/
+cd src/
+svn co $1 ${NAME}
+cd ${NAME}
+python setup.py develop