diff options
author | Kali Kaneko <kali@leap.se> | 2018-03-05 14:01:39 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-03-05 14:01:39 +0100 |
commit | 4f20bc9ca0e6e1132d2691483058337228f0173c (patch) | |
tree | af54dc7d2ad7a7f70f4e1ef02e7f31e02aca5dc3 /pkg/build_osx_bundle_riseupvpn_with_venv.sh | |
parent | 081a8c9cb491ebc5c32eb686c66a52e041e227bf (diff) |
[pkg] add target for building riseupvpn in osx venv
Diffstat (limited to 'pkg/build_osx_bundle_riseupvpn_with_venv.sh')
-rwxr-xr-x | pkg/build_osx_bundle_riseupvpn_with_venv.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/pkg/build_osx_bundle_riseupvpn_with_venv.sh b/pkg/build_osx_bundle_riseupvpn_with_venv.sh new file mode 100755 index 00000000..7f819849 --- /dev/null +++ b/pkg/build_osx_bundle_riseupvpn_with_venv.sh @@ -0,0 +1,34 @@ +#!/bin/bash +########################################################### +# Build a RiseupVPN bundle inside a fresh virtualenv (OSX). +########################################################### + +# Stop bundling in case of errors +set -e + +VENV=venv + +echo "[+] BUILDING RiseupVPN BUNDLE..." +echo "[+] GIT VERSION" `git describe` + +if [ ! -d "$VENV" ]; then + echo "[+] creating virtualenv in venv" + virtualenv $VENV +fi +source "$VENV"/bin/activate +echo "[+] Using venv in" $VIRTUAL_ENV + +$VIRTUAL_ENV/bin/pip install -U pyinstaller +$VIRTUAL_ENV/bin/pip install zope.interface zope.proxy + +$VIRTUAL_ENV/bin/pip install -r pkg/requirements-osx.pip + +# Get the bundled libzmq +$VIRTUAL_ENV/bin/pip install -I pyzmq --install-option="--zmq=bundled" + +# Install bitmask in development mode +$VIRTUAL_ENV/bin/pip install -e . + +# Get latest tags from repo +git fetch --tags +make bundle_anonvpn_osx |