From be842a5baaf6998a6c13d17bd72691a8171c9155 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 13 May 2014 12:13:54 +0530 Subject: [PATCH] Remove dependency on unused augeas We can introduce it later again when it actually being used. --- INSTALL | 10 ++++------ Makefile | 2 +- fabfile.py | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/INSTALL b/INSTALL index b147f8dc8..b131f1f4e 100644 --- a/INSTALL +++ b/INSTALL @@ -4,7 +4,7 @@ Install the dependencies: -apt-get install augeas-tools libpython2.7 pandoc psmisc python2.7 python-augeas python-bcrypt python-cherrypy3 python-django python-passlib python-simplejson python-bootstrapform libjs-twitter-bootstrap sudo +apt-get install libpython2.7 pandoc psmisc python2.7 python-bcrypt python-cherrypy3 python-django python-passlib python-simplejson python-bootstrapform libjs-twitter-bootstrap sudo Unzip and untar the source into a directory. Change to the directory containing the program. Run: @@ -26,7 +26,9 @@ and the default password is "secret". * *GNU Make* is used to build the templates and such. -* python-augeas and augeas - used for configuration management +* *libjs-twitter-bootstrap* - A responsive, mobile first front-end framework + +* *python-bootstrapform* - Render django forms for Twitter Bootstrap The documentation has some dependencies too. @@ -38,10 +40,6 @@ The documentation has some dependencies too. * *GNU Make* processes /doc/Makefile. -* *libjs-twitter-bootstrap* - A responsive, mobile first front-end framework - -* *python-bootstrapform* - Render django forms for Twitter Bootstrap - ## Building the Documentation Documentation has been collected into a pdf that can be built using diff --git a/Makefile b/Makefile index d1f1407c7..71990e49f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ default: config dirs docs all: default predepend: - sudo sh -c "apt-get install augeas-tools libpython2.7 pandoc psmisc python2.7 python-augeas python-bcrypt python-cherrypy3 python-django python-passlib python-simplejson python-bootstrapform libjs-twitter-bootstrap sudo" + sudo sh -c "apt-get install libpython2.7 pandoc psmisc python2.7 python-bcrypt python-cherrypy3 python-django python-passlib python-simplejson python-bootstrapform libjs-twitter-bootstrap sudo" git submodule init git submodule update touch predepend diff --git a/fabfile.py b/fabfile.py index 1f0887e38..f56e08b29 100644 --- a/fabfile.py +++ b/fabfile.py @@ -150,7 +150,7 @@ def apache(): @task def deps(): "Basic plinth dependencies" - sudo('apt-get install --no-install-recommends -y python make pandoc python-simplejson python-pyme python-augeas python-django python-bootstrapform libjs-twitter-bootstrap') + sudo('apt-get install --no-install-recommends -y python make pandoc python-simplejson python-pyme python-django python-bootstrapform libjs-twitter-bootstrap') @task def update():