# HG changeset patch # User Madhusudan.C.S # Date 1279135216 -19800 # Node ID 034dc9cd752e059492de6090033fd0a9806b4b32 # Parent 68fb7911c4387ffd8dbf5b2f1749f9f8d6adacc0 Altered buildout configuration files to have MySQL-Python only on production. diff -r 68fb7911c438 -r 034dc9cd752e buildout.cfg --- a/buildout.cfg Wed Jul 14 19:34:34 2010 +0530 +++ b/buildout.cfg Thu Jul 15 00:50:16 2010 +0530 @@ -1,18 +1,14 @@ [buildout] parts = django tagging -eggs = - Werkzeug - MySQL-python +eggs = Werkzeug [django] recipe = djangorecipe version = 1.2.1 -settings = development -eggs = - ${buildout:eggs} -pythonpath = - ${tagging:location} +settings = production +eggs = ${buildout:eggs} +pythonpath = ${tagging:location} [tagging] recipe = infrae.subversion -urls = http://django-tagging.googlecode.com/svn/trunk/ . \ No newline at end of file +urls = http://django-tagging.googlecode.com/svn/trunk/ . diff -r 68fb7911c438 -r 034dc9cd752e development.cfg --- a/development.cfg Wed Jul 14 19:34:34 2010 +0530 +++ b/development.cfg Thu Jul 15 00:50:16 2010 +0530 @@ -1,9 +1,7 @@ [buildout] -extends = - buildout.cfg +extends = buildout.cfg -eggs += - pysqlite +eggs += pysqlite [django] settings = development diff -r 68fb7911c438 -r 034dc9cd752e production.cfg --- a/production.cfg Wed Jul 14 19:34:34 2010 +0530 +++ b/production.cfg Thu Jul 15 00:50:16 2010 +0530 @@ -1,7 +1,3 @@ [buildout] -extends = - buildout.cfg - -#eggs += -# psycopg2 -# \ No newline at end of file +extends = buildout.cfg +eggs += MySQL-python