Remove cheetah as a dependency

This commit is contained in:
Sunil Mohan Adapa 2014-05-04 16:10:27 +05:30
parent 882392f104
commit ee77f107ea
3 changed files with 4 additions and 7 deletions

View File

@ -2,10 +2,9 @@
## Installing Plinth
Install the python-cheetah package, pandoc, python-augeas, and
bjsonrpc:
Install the pandoc, python-augeas, and bjsonrpc:
apt-get install python-cheetah pandoc python-augeas python-bjsonrpc python-cherrypy3 python-simplejson
apt-get install augeas-tools libpython2.7 pandoc psmisc python2.7 python-augeas python-bcrypt python-bjsonrpc python-cherrypy3 python-django python-passlib python-simplejson sudo
Unzip and untar the source into a directory. Change to the directory
containing the program. Run:
@ -23,8 +22,6 @@ and the default password is "secret".
* cherrypy - python web engine v3+
* cheetah - Debian has python-cheetah package
* python - tested with version 2.6.6
* *GNU Make* is used to build the templates and such.

View File

@ -17,7 +17,7 @@ default: config dirs css docs
all: default
predepend:
sudo sh -c "apt-get install augeas-tools libpython2.7 pandoc psmisc python2.7 python-augeas python-bcrypt python-bjsonrpc python-cheetah python-cherrypy3 python-django python-passlib python-simplejson sudo"
sudo sh -c "apt-get install augeas-tools libpython2.7 pandoc psmisc python2.7 python-augeas python-bcrypt python-bjsonrpc python-cherrypy3 python-django python-passlib python-simplejson sudo"
git submodule init
git submodule update
touch predepend

2
fabfile.py vendored
View File

@ -150,7 +150,7 @@ def apache():
@task
def deps():
"Basic plinth dependencies"
sudo('apt-get install --no-install-recommends -y python make python-cheetah pandoc python-simplejson python-pyme python-augeas python-bjsonrpc')
sudo('apt-get install --no-install-recommends -y python make pandoc python-simplejson python-pyme python-augeas python-bjsonrpc python-django')
@task
def update():