diff options
Diffstat (limited to 'pkg/build_bundle_with_venv.sh')
-rwxr-xr-x | pkg/build_bundle_with_venv.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pkg/build_bundle_with_venv.sh b/pkg/build_bundle_with_venv.sh new file mode 100755 index 00000000..929710ad --- /dev/null +++ b/pkg/build_bundle_with_venv.sh @@ -0,0 +1,19 @@ +#!/bin/bash +virtualenv venv +source venv/bin/activate +$VIRTUAL_ENV/bin/pip install -U pyinstaller==3.1 packaging +$VIRTUAL_ENV/bin/pip install zope.interface zope.proxy +$VIRTUAL_ENV/bin/pip install leap.soledad.common +$VIRTUAL_ENV/bin/pip install leap.soledad.client + +# XXX hack for the namespace package not being properly handled by pyinstaller +touch $VIRTUAL_ENV/lib/python2.7/site-packages/zope/__init__.py +touch $VIRTUAL_ENV/lib/python2.7/site-packages/leap/soledad/__init__.py + +make dev-all + +$VIRTUAL_ENV/bin/pip uninstall leap.bitmask +$VIRTUAL_ENV/bin/pip install . + +make bundle +make bundle_tar |