From afe38fdca8a9c77a4aa87d0c230f5a55b4eff7ed Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Wed, 22 Aug 2012 13:46:39 +0200
Subject: [PATCH] Re-normalize buildout

---
 buildout.cfg | 35 ++++++++++++++++++++++-------------
 1 file changed, 22 insertions(+), 13 deletions(-)

diff --git a/buildout.cfg b/buildout.cfg
index 276d2f0..6fb286b 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -3,32 +3,41 @@
 ; Mon 16 Apr 08:29:18 2012 CEST
 
 [buildout]
-parts = external python tests sphinx
+parts = external tests sphinx python
 develop = .
-eggs = bob.db.replay
-versions = versions
 index = http://d.pypi.python.org/simple
+versions = versions
+
+;You are not obliged to set the version of Bob to use. However, note that
+;buildout in this case will choose the default version installed looking at the
+;current sys.path settings. Also note that your current 'eggs' directory may
+;not take precedence over that.
+eggs = bob==master
+       bob.db.replay
 
 [versions]
-;idiap.recipe.externaleggs = 0.1
-;idiap.recipe.sphinx = 0.1
+;If you would like to pin-down the recipes package version so you are not
+;bothered with eventual updates, do it here. Note that, by pinning the version
+;of the package, you will be also excluded from bug fixes.
+;bob.buildout.recipes = 0.1
 
 [external]
-recipe = idiap.recipe.externaleggs:recipe
+recipe = bob.buildout.recipes:external
 egg-directories = /Users/andre/work/bob-master/build/lib
 
-[python]
-recipe = z3c.recipe.scripts
-interpreter = python
-eggs = ${buildout:eggs}
-
 [tests]
-recipe = pbp.recipe.noserunner
+recipe = bob.buildout.recipes:nose
 eggs = ${buildout:eggs}
 script = tests.py
 
 [sphinx]
-recipe = idiap.recipe.sphinx:recipe
+recipe = bob.buildout.recipes:sphinx
 eggs = ${buildout:eggs}
 source = ${buildout:directory}/docs
 build = ${buildout:directory}/sphinx
+
+[python]
+recipe = z3c.recipe.scripts
+interpreter = python
+eggs = ${buildout:eggs}
+dependent-scripts = true
-- 
GitLab