summaryrefslogtreecommitdiff
path: root/pkg/docker_bundleapt
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2018-02-15 17:32:28 +0100
committerKali Kaneko <kali@leap.se>2018-02-15 17:32:28 +0100
commit0388014636ce25fd1786c8bb79727dd643604f11 (patch)
tree38a8c9553488e5cce07dc444efdc5e4145c66f75 /pkg/docker_bundleapt
parent16e8c9179b15f10570670e6068f87357427fd12b (diff)
[pkg] rename bundling scripts to add clarity
Diffstat (limited to 'pkg/docker_bundleapt')
-rw-r--r--pkg/docker_bundleapt/Dockerfile80
-rw-r--r--pkg/docker_bundleapt/Makefile22
-rw-r--r--pkg/docker_bundleapt/systray.sh10
3 files changed, 0 insertions, 112 deletions
diff --git a/pkg/docker_bundleapt/Dockerfile b/pkg/docker_bundleapt/Dockerfile
deleted file mode 100644
index 810cae81..00000000
--- a/pkg/docker_bundleapt/Dockerfile
+++ /dev/null
@@ -1,80 +0,0 @@
-FROM python:2.7-slim-stretch
-MAINTAINER kali <kali@leap.se>
-
-LABEL Description="Image for building Bitmask bundle based on python:2.7-slim-stretch" Vendor="LEAP" Version="1.0"
-
-RUN apt update && apt upgrade -y
-RUN pip install -U pip
-
-# Install bitmask-dev build deps,
-# plus some dependencies needed by bitmask-systray too,
-# so that we can reuse the bundler image.
-RUN apt install -y --no-install-recommends \
- build-essential virtualenv libpython-dev \
- libsqlcipher-dev libssl-dev libffi-dev \
- libsqlite3-dev libzmq3-dev \
- python-pyqt5 python-pyqt5.qtwebkit \
- libqt5printsupport5 \
- qttranslations5-l10n libgl1-mesa-glx \
- libusb-0.1-4 patchelf wget \
- gnupg1 git libgl1-mesa-glx \
- libappindicator3-dev libgtk-3-dev golang \
- libsodium-dev
-
-# Pyinstaller custom versions
-#ARG PYINSTALLER_TAG=v3.2
-ARG PYINSTALLER_TAG=pyqt5_fix
-#
-# TODO
-# change to pyinstaller repo when pyqt5_fix is merged
-#
-#RUN git clone --depth 1 --single-branch --branch $PYINSTALLER_TAG https://github.com/pyinstaller/pyinstaller.git /tmp/pyinstaller
-RUN git clone --depth 1 --single-branch --branch $PYINSTALLER_TAG https://github.com/bjones1/pyinstaller.git /tmp/pyinstaller
-RUN cd /tmp/pyinstaller && pip install --force-reinstall .
-
-
-# Get Bitmask code --------------------------------------------
-RUN mkdir -p /src/leap
-WORKDIR /src/leap
-
-#ARG BITMASK_BRANCH=master
-#ARG BITMASK_REPO=https://0xacab.org/leap/bitmask-dev
-ARG BITMASK_BRANCH=feat/webkit-fallback
-ARG BITMASK_REPO=https://0xacab.org/kali/bitmask-dev
-#RUN git clone https://0xacab.org/leap/bitmask-dev
-RUN git clone --depth 1 --single-branch --branch $BITMASK_BRANCH $BITMASK_REPO
-
-WORKDIR /src/leap/bitmask-dev
-RUN pip install pysqlcipher --install-option="--bundled"
-RUN pip install leap.bitmask_js
-RUN pip install -r pkg/requirements.pip
-
-RUN pip install ".[mail]"
-RUN make install_pixelated
-
-# TODO -- build on different containers and orchestrate them
-# build gnupg and openvpn binaries --------------------------
-# RUN cd pkg/thirdparty/gnupg && ./build_gnupg.sh
-# RUN cd pkg/thirdparty/openvpn && ./build_openvpn.sh
-# -----------------------------------------------------------
-
-
-# Some hacks to make dist-packages visible from the pip installation path in /usr/local
-RUN ln -s /usr/lib/python2.7/dist-packages/PyQt5/ /usr/local/lib/python2.7/site-packages/PyQt5
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtCore.x86_64-linux-gnu.so QtCore.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtGui.x86_64-linux-gnu.so QtGui.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtWidgets.x86_64-linux-gnu.so QtWidgets.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtWebKit.x86_64-linux-gnu.so QtWebKit.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtWebKitWidgets.x86_64-linux-gnu.so QtWebKitWidgets.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtNetwork.x86_64-linux-gnu.so QtNetwork.so
-RUN cd /usr/local/lib/python2.7/site-packages/PyQt5 && ln -s QtPrintSupport.x86_64-linux-gnu.so QtPrintSupport.so
-RUN ln -s /usr/lib/python2.7/dist-packages/sip.x86_64-linux-gnu.so /usr/local/lib/python2.7/site-packages/sip.so
-RUN ln -s /usr/lib/python2.7/dist-packages/sipconfig.py /usr/local/lib/python2.7/site-packages/
-RUN ln -s /usr/lib/python2.7/dist-packages/sipconfig_nd.py /usr/local/lib/python2.7/site-packages/
-RUN ln -s /usr/lib/python2.7/dist-packages/sip.pyi /usr/local/lib/python2.7/site-packages/
-
-# get dependencies for bitmask-systray so that builds are quick
-RUN export GOPATH=/srv/go && \
- export CGO_CPPFLAGS="-I/usr/include" && \
- export CGO_LDFLAGS="-L/usr/lib -L/usr/lib/z86_64-linux-gnu -lzmq -lpthread -lsodium -lrt -lstdc++ -lm -lc -lgcc" && \
- go get 0xacab.org/leap/bitmask-systray
diff --git a/pkg/docker_bundleapt/Makefile b/pkg/docker_bundleapt/Makefile
deleted file mode 100644
index f36d2ef1..00000000
--- a/pkg/docker_bundleapt/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-IMAGE=bitmask-bundler-apt
-
-# for leap registry
-
-build:
- docker build -t 0xacab.org:4567/leap/docker/$(IMAGE):latest .
-push:
- docker push 0xacab.org:4567/leap/docker/$(IMAGE):latest
-login:
- docker login 0xacab.org:4567
-
-# for local tests
-prune:
- docker system prune
-bundler:
- docker build -t $(IMAGE) .
-shell:
- docker run -i -t $(IMAGE) bash
-bundle:
- echo "cd /src/leap/bitmask-dev && VIRTUAL_ENV=/usr/local make bundle && cp -r dist/* /dist" | docker run -i -v /srv/bitmask-builds:/dist -w /dist $(IMAGE) bash
-systray:
- cat systray.sh | docker run -i -v /srv/bitmask-builds:/dist -w /dist $(IMAGE) bash
diff --git a/pkg/docker_bundleapt/systray.sh b/pkg/docker_bundleapt/systray.sh
deleted file mode 100644
index 4bb19067..00000000
--- a/pkg/docker_bundleapt/systray.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-export GOPATH=/srv/go
-export CGO_CPPFLAGS="-I/usr/include"
-export CGO_LDFLAGS="-L/usr/lib -L/usr/lib/z86_64-linux-gnu -lzmq -lpthread -lsodium -lrt -lstdc++ -lm -lc -lgcc"
-
-echo "[+] building systray deps"
-go get -a 0xacab.org/leap/bitmask-systray
-cd /src/leap && git clone --depth 1 --single-branch --branch master https://0xacab.org/leap/bitmask-systray
-echo "[+] building systray"
-cd bitmask-systray && go build .
-cp -r /src/leap/bitmask-systray/bitmask-systray /dist