2012-10-03 21:51:05 +00:00
|
|
|
#!/bin/sh
|
2014-11-02 19:06:16 +00:00
|
|
|
# Use this script to download or update all dependencies to their last
|
2011-04-15 23:28:37 +00:00
|
|
|
# developpement version.
|
2014-11-02 19:06:16 +00:00
|
|
|
# The dependencies will be located in a virtualenv, so you do not
|
2011-04-15 23:28:37 +00:00
|
|
|
# need to install them on your system at all.
|
|
|
|
|
|
|
|
# Use launch.sh to start poezio directly from here
|
|
|
|
|
2014-11-02 19:06:16 +00:00
|
|
|
cd "$(dirname "$0")"
|
2015-01-15 15:46:51 +00:00
|
|
|
if [ -z "$POEZIO_VENV" ]
|
|
|
|
then
|
|
|
|
POEZIO_VENV="poezio-venv"
|
|
|
|
fi
|
|
|
|
|
2017-10-06 21:45:35 +00:00
|
|
|
if [ -z "$POEZIO_PYTHON" ]
|
2015-01-15 15:46:51 +00:00
|
|
|
then
|
2017-10-06 21:45:35 +00:00
|
|
|
POEZIO_PYTHON=python3
|
2015-01-15 15:46:51 +00:00
|
|
|
fi
|
2017-10-06 21:45:35 +00:00
|
|
|
|
|
|
|
if ! command -v "$POEZIO_PYTHON" > /dev/null 2>&1
|
|
|
|
then
|
|
|
|
echo "Python executable '$POEZIO_PYTHON' not found."
|
2015-01-24 17:00:48 +00:00
|
|
|
exit 1
|
2017-10-06 21:45:35 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if ! $POEZIO_PYTHON -c 'import venv' &> /dev/null
|
|
|
|
then
|
|
|
|
echo "'$POEZIO_PYTHON' venv module not found. Check that you have python (>= 3.4) installed,"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-03-06 22:15:23 +00:00
|
|
|
|
2011-04-15 23:28:37 +00:00
|
|
|
echo 'Updating poezio'
|
2015-12-29 19:34:33 +00:00
|
|
|
git pull --ff-only origin master || {
|
2014-11-02 19:06:16 +00:00
|
|
|
echo "The script failed to update poezio."
|
|
|
|
exit 1
|
|
|
|
}
|
2011-04-13 00:14:35 +00:00
|
|
|
|
2015-01-15 15:46:51 +00:00
|
|
|
if [ -e "$POEZIO_VENV" ]
|
2011-11-08 01:31:44 +00:00
|
|
|
then
|
2014-11-02 19:06:16 +00:00
|
|
|
# In case of a python version upgrade
|
|
|
|
echo 'Trying to upgrade the virtualenv'
|
2017-10-06 21:45:35 +00:00
|
|
|
$POEZIO_PYTHON -m venv --upgrade "$POEZIO_VENV"
|
|
|
|
$POEZIO_PYTHON -m venv --system-site-packages "$POEZIO_VENV"
|
2011-11-08 01:31:44 +00:00
|
|
|
|
2015-01-15 15:46:51 +00:00
|
|
|
. "$POEZIO_VENV/bin/activate"
|
2015-05-21 08:06:03 +00:00
|
|
|
echo 'Updating the in-venv pip'
|
|
|
|
pip install --upgrade pip
|
2014-12-15 15:24:21 +00:00
|
|
|
python3 -c 'import sys;(print("Python 3.4 or newer is required") and exit(1)) if sys.version_info < (3, 4) else exit(0)' || exit 1
|
2014-11-02 19:06:16 +00:00
|
|
|
echo 'Updating the poezio dependencies'
|
|
|
|
pip install -r requirements.txt --upgrade
|
|
|
|
echo 'Updating the poezio plugin dependencies'
|
|
|
|
pip install -r requirements-plugins.txt --upgrade
|
2011-04-13 00:14:35 +00:00
|
|
|
else
|
2015-01-15 15:46:51 +00:00
|
|
|
echo "Creating the $POEZIO_VENV virtualenv"
|
2017-10-06 21:45:35 +00:00
|
|
|
$POEZIO_PYTHON -m venv "$POEZIO_VENV"
|
|
|
|
$POEZIO_PYTHON -m venv --system-site-packages "$POEZIO_VENV"
|
2013-01-17 16:37:06 +00:00
|
|
|
|
2015-01-15 15:46:51 +00:00
|
|
|
. "$POEZIO_VENV/bin/activate"
|
|
|
|
cd "$POEZIO_VENV" # needed to download slixmpp inside the venv
|
2014-12-15 15:24:21 +00:00
|
|
|
python3 -c 'import sys;(print("Python 3.4 or newer is required") and exit(1)) if sys.version_info < (3, 4) else exit(0)' || exit 1
|
2011-04-13 00:14:35 +00:00
|
|
|
|
2014-11-02 19:06:16 +00:00
|
|
|
echo 'Installing the poezio dependencies using pip'
|
|
|
|
pip install -r "../requirements.txt"
|
|
|
|
echo 'Installing the poezio plugin dependencies using pip'
|
|
|
|
pip install -r "../requirements-plugins.txt"
|
|
|
|
cd ..
|
2011-04-13 00:14:35 +00:00
|
|
|
fi
|
2014-11-02 19:06:16 +00:00
|
|
|
|
|
|
|
make
|