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")"
|
|
|
|
VENV="poezio-venv"
|
2013-03-06 22:15:23 +00:00
|
|
|
|
2011-04-15 23:28:37 +00:00
|
|
|
echo 'Updating poezio'
|
2014-11-02 19:06:16 +00:00
|
|
|
git pull origin slix || {
|
|
|
|
echo "The script failed to update poezio."
|
|
|
|
exit 1
|
|
|
|
}
|
2011-04-13 00:14:35 +00:00
|
|
|
|
2014-11-02 19:06:16 +00:00
|
|
|
if [ -e "$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'
|
|
|
|
pyvenv --upgrade "$VENV"
|
2011-11-08 01:31:44 +00:00
|
|
|
|
2014-11-02 19:06:16 +00:00
|
|
|
source "$VENV/bin/activate"
|
|
|
|
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
|
2014-11-02 19:06:16 +00:00
|
|
|
echo "Creating the $VENV virtualenv"
|
|
|
|
pyvenv "$VENV"
|
2013-01-17 16:37:06 +00:00
|
|
|
|
2014-11-02 19:06:16 +00:00
|
|
|
source "$VENV/bin/activate"
|
|
|
|
cd "$VENV" # needed to download slixmpp inside the venv
|
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
|