blob: ee4e8bd00ec414c052d4dc8708adc0425866b68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/sh
# This script builds the Soledad documentation using a virtual environment.
# You can pass the target directory as the first command line argument:
#
# ./build-soledad-doc.sh [target-dir]
#
# If you no directory is passed, documentation will be built on the default
# place used by sphinx: <repodir>/docs/_build
set -eu
set -o xtrace
BUILDDIR=${1:-_build}
REPO="http://0xacab.org/leap/soledad"
REPO=/tmp/soledad
TEMPDIR=$(mktemp -d)
VENVDIR=${TEMPDIR}/venv
REPODIR=${TEMPDIR}/soledad
TARGET=html
if [[ ${BUILDDIR} = /* ]]; then
type="absolute"
docdir=${BUILDDIR}/${TARGET}
else
type="relative"
docdir=${REPODIR}/docs/${BUILDDIR}/${TARGET}
fi
echo "Documentation will be written to ${type} path ${BUILDDIR}."
# build and activate the virtual environment
if [ ! -d ${VENVDIR} ]; then
virtualenv ${VENVDIR}
fi
. ${VENVDIR}/bin/activate
# clone the canonical repository
git clone ${REPO} ${REPODIR}
# install deps
pip install -U pip wheel
pip install -r ${REPODIR}/docs/requirements.pip
# build documentation
make -C ${REPODIR}/docs ${TARGET} BUILDDIR=${BUILDDIR}
ls -1 ${docdir}
|