# HG changeset patch # User ymh # Date 1390406178 -3600 # Node ID 9be5aaedfe6a16ab324b971a17647a211a69328e # Parent 5d79dc4e50a36f5cd9373172e85d5315a847e0eb add missing resources to buildout.cfg diff -r 5d79dc4e50a3 -r 9be5aaedfe6a buildout.cfg --- a/buildout.cfg Tue Oct 22 15:00:56 2013 +0200 +++ b/buildout.cfg Wed Jan 22 16:56:18 2014 +0100 @@ -1,21 +1,26 @@ [buildout] newest=false +find-links = http://download.berlios.de/utidylib/uTidylib-0.2.zip parts = django python django-extensions - django-piston +# django-piston + magic + utidylib omelette unzip = true develop = . [versions] django = 1.3 +utidylib = 0.2 [python] recipe = zc.recipe.egg interpreter = python eggs = ${django:eggs} +extra-paths = ${magic:location} [django] recipe = djangorecipe @@ -27,15 +32,16 @@ #test = cm pythonpath = src src/cm + extras ${django-extensions:location} - ${django-piston:location} + ${magic:location} eggs = django-flash django-tagging -# django-piston + django-piston # api dependency # django-css -# chardet + chardet feedparser PIL BeautifulSoup @@ -44,18 +50,24 @@ simplejson pyyaml south -# psycopg2/mysql should be optional dependencies ... possible with buildout ??? -# magic ???????? http://www.jsnp.net/code/magic.py ??? impossible to include this dependency -# utidylib ?????? http://download.berlios.de/utidylib/uTidylib-0.2.zip + psycopg2 + utidylib [django-extensions] recipe=zerokspot.recipe.git repository=git://github.com/django-extensions/django-extensions.git #rev=7c73978b55fcadbe2cd6f2abbefbedb5a85c2c8c -[django-piston] -recipe = mercurialrecipe -repository = http://bitbucket.org/jespern/django-piston + +[magic] +recipe=hexagonit.recipe.download +url=http://www.jsnp.net/code/magic.py +download-only=true + +[utidylib] +recipe = zc.recipe.egg +eggs = uTidylib + [omelette] recipe = collective.recipe.omelette