-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickinstall
executable file
·45 lines (35 loc) · 1.24 KB
/
quickinstall
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
#!/bin/bash
# create a virtual environment in directory $DIR/
#
# set PYTHON environment variable to change the python version
# set DIR environment variable to change the virtual env directory
# set VIRTUALENV environment variable to change the virtualenv command
# for example: PYTHON=/usr/bin/pypy DIR=env-pypy ./quickinstall
#
# needs: virtualenv, pip
DLC=dlc
# if DIR is not given, use ./env
if [ -z "$DIR" ]; then
DIR=env
fi
# find the right python version
if [ -z "$PYTHON" ]; then
for PYTHON in python{2.7,2.6,2,}; do
hash $PYTHON 2>&- && break
done
fi
# find the right virtualenv version
if [ -z "$VIRTUALENV" ]; then
for VIRTUALENV in virtualenv{2.7,2.6,2,}; do
hash $VIRTUALENV 2>&- && break
done
fi
$VIRTUALENV --no-site-packages --python $PYTHON $DIR || exit 1
source $DIR/bin/activate || exit 1
# first install babel, moin's setup.py will emit a warning if it is not there
pip install --download-cache=$DLC babel || exit 1
# "install" moin2 from repo to the env, this will also install required python
# packages from pypi. we do this LAST, so that breakage is better visible.
pip install --download-cache=$DLC -e . || exit 1
# compile the translations
python setup.py compile_catalog --statistics || exit 1