summaryrefslogtreecommitdiff
path: root/pkg/postmkvenv.sh
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-09-07 04:18:45 +0900
committerkali <kali@leap.se>2012-09-07 05:11:14 +0900
commitc6ec834446cd6772ff900a0637c7296746f53320 (patch)
tree7df05ee7233a15b2d2153f5e50d5265fcc831938 /pkg/postmkvenv.sh
parentd3fdb6a4210b47cce9e550694df57621c558a561 (diff)
tox initial file. using global site-packages because
of the unability to pip install PyQt4. postmkvenv workaround for PyQt libs for manual use. pip install breaks because they don't have a standard setup.py installation process
Diffstat (limited to 'pkg/postmkvenv.sh')
-rwxr-xr-xpkg/postmkvenv.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkg/postmkvenv.sh b/pkg/postmkvenv.sh
new file mode 100755
index 00000000..99e364c0
--- /dev/null
+++ b/pkg/postmkvenv.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+# This hook is run after a new virtualenv is activated.
+# ~/.virtualenvs/postmkvirtualenv
+
+# Symlinks PyQt4 from global installation into virtualenv site-packages
+
+LIBS=( PyQt4 sip.so )
+
+PYTHON_VERSION=python$(python -c "import sys; print (str(sys.version_info[0])+'.'+str(sys.version_info[1]))")
+VAR=( $(which -a $PYTHON_VERSION) )
+
+GET_PYTHON_LIB_CMD="from distutils.sysconfig import get_python_lib; print (get_python_lib())"
+LIB_VIRTUALENV_PATH=$(python -c "$GET_PYTHON_LIB_CMD")
+LIB_SYSTEM_PATH=$(${VAR[-1]} -c "$GET_PYTHON_LIB_CMD")
+
+for LIB in ${LIBS[@]}
+do
+ ln -s $LIB_SYSTEM_PATH/$LIB $LIB_VIRTUALENV_PATH/$LIB
+done