summaryrefslogtreecommitdiffstats
path: root/.tox-install.sh
blob: 8f9d221d256f03f685cbf2a700fd1701086d13dc (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/bash
set -ex

FLAVOR="$1"
ENVPYTHON="$2"
ENVSITEPACKAGESDIR="$3"
# 3...end are package requirements
shift 3

TOXINIDIR="$(cd "$(dirname "$0")" && pwd)"

# sanity checks
if [ ! -x "${ENVPYTHON}" ]; then
    echo "${ENVPYTHON}: no such executable"
    exit 1
fi

if [ ! -d "${ENVSITEPACKAGESDIR}" ]; then
    echo "${ENVSITEPACKAGESDIR}: no such directory"
    exit 2
fi

if [ ! -f "${TOXINIDIR}/tox.ini" ]; then
    echo "${TOXINIDIR}: no such directory"
    exit 3
fi

# https://pip.pypa.io/en/stable/user_guide/#environment-variables
export PIP_CACHE_DIR="${TOXINIDIR}/.tox/cache"
mkdir -p "${PIP_CACHE_DIR}"

DISTBUNDLE="${TOXINIDIR}/dist/bundle"
mkdir -p "${DISTBUNDLE}"

DISTPYPI="${TOXINIDIR}/dist/pypi"
mkdir -p "${DISTPYPI}"

# create configure
pushd "${TOXINIDIR}"
if [ ! -f "configure" ]; then
    autoreconf -i -f
fi
# (re)create Makefile
./configure --disable-server
popd

case $FLAVOR in
wheel_bundle)
    # copy pylint plugin
    cp "${TOXINIDIR}/pylint_plugins.py" "${ENVSITEPACKAGESDIR}"

    # build packages and bundles
    make -C "${TOXINIDIR}" \
        wheel_bundle \
        PYTHON="${ENVPYTHON}" \
        IPA_EXTRA_WHEELS="$*"

    # chdir to prevent local .egg-info from messing up pip
    pushd "${ENVSITEPACKAGESDIR}"

    # Install packages with dist/bundle/ as extra source for wheels while ignoring
    # upstream Python Package Index.
    $ENVPYTHON -m pip install \
        --no-index \
        --disable-pip-version-check \
        --constraint "${TOXINIDIR}/.wheelconstraints" \
        --find-links "${DISTBUNDLE}" \
        $@

    popd
    ;;
pypi_packages)
    # build packages and bundles
    make -C "${TOXINIDIR}" \
        pypi_packages \
        PYTHON="${ENVPYTHON}"

    # chdir to prevent local .egg-info from messing up pip
    pushd "${ENVSITEPACKAGESDIR}"

    # Install packages from dist/pypi
    $ENVPYTHON -m pip install \
        --disable-pip-version-check \
        --constraint "${TOXINIDIR}/.wheelconstraints" \
        --find-links "${DISTPYPI}" \
        $@

    popd
    ;;
*)
    echo "Unknown install flavor $FLAVOR"
    exit 1
    ;;
esac