Skip to content
Snippets Groups Projects
Commit a5897783 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix replay database with newest buildout strategy

parent dfa256c4
No related branches found
No related tags found
No related merge requests found
...@@ -3,12 +3,22 @@ ...@@ -3,12 +3,22 @@
; Mon 16 Apr 08:29:18 2012 CEST ; Mon 16 Apr 08:29:18 2012 CEST
[buildout] [buildout]
parts = python tests sphinx parts = external python tests sphinx
develop = . develop = .
eggs = bob.db.replay eggs = bob.db.replay
versions = versions
index = http://d.pypi.python.org/simple
[versions]
;idiap.recipe.externaleggs = 0.1
;idiap.recipe.sphinx = 0.1
[external]
recipe = idiap.recipe.externaleggs:recipe
egg-directories = /Users/andre/work/bob-master/build/lib
[python] [python]
recipe = zc.recipe.egg recipe = z3c.recipe.scripts
interpreter = python interpreter = python
eggs = ${buildout:eggs} eggs = ${buildout:eggs}
...@@ -18,7 +28,7 @@ eggs = ${buildout:eggs} ...@@ -18,7 +28,7 @@ eggs = ${buildout:eggs}
script = tests.py script = tests.py
[sphinx] [sphinx]
recipe = collective.recipe.sphinxbuilder recipe = idiap.recipe.sphinx:recipe
eggs = ${buildout:eggs}
source = ${buildout:directory}/docs source = ${buildout:directory}/docs
build = ${buildout:directory}/built-docs build = ${buildout:directory}/sphinx
interpreter = ${buildout:bin-directory}/python
; vim: set fileencoding=utf-8 :
; Andre Anjos <andre.anjos@idiap.ch>
; Mon 16 Apr 08:29:18 2012 CEST
; Example buildout recipe using a local (off-root) Bob installation
[buildout]
parts = bob python tests sphinx
develop = .
eggs = bob.db.replay
bob
[bob]
recipe = local.bob.recipe:config
; Set here the private installation directory for Bob
install-directory = /scratch/aanjos/bob-master/build/newdb/release
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[tests]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
script = tests.py
[sphinx]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
build = ${buildout:directory}/built-docs
interpreter = ${buildout:bin-directory}/python
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment