From 3332f86d15d8d4394e95c2341b30b7d726148dc7 Mon Sep 17 00:00:00 2001
From: Manuel Guenther <manuel.guenther@idiap.ch>
Date: Wed, 11 Mar 2015 18:33:27 +0100
Subject: [PATCH] Added develop.cfg and updated buildout.cfg

---
 .travis.yml  |  2 +-
 buildout.cfg | 41 +------------------------------------
 develop.cfg  | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 59 insertions(+), 41 deletions(-)
 create mode 100644 develop.cfg

diff --git a/.travis.yml b/.travis.yml
index 253ec7d..d7364cb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,7 +23,7 @@ before_install:
 - pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel scipy$SCIPYSPEC matplotlib==1.3.1 sphinx nose==1.3.0 jinja2==2.6 coveralls pygments==1.6
 install:
 - python bootstrap-buildout.py
-- ./bin/buildout
+- ./bin/buildout -c develop.cfg
 script:
 - ./bin/python -c 'from bob.example.faceverify import get_config; print(get_config())'
 - ./bin/coverage run --source=bob.example.faceverify ./bin/nosetests -sv
diff --git a/buildout.cfg b/buildout.cfg
index 330508b..6cac555 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -6,52 +6,13 @@
 parts = scripts
 eggs = bob.example.faceverify
 extensions = bob.buildout
-             mr.developer
-auto-checkout = *
-develop = src/bob.extension
-          src/bob.blitz
-          src/bob.core
-          src/bob.io.base
-          src/bob.io.image
-          src/bob.sp
-          src/bob.math
-          src/bob.measure
-          src/bob.learn.activation
-          src/bob.learn.linear
-          src/bob.learn.em
-          src/bob.ip.base
-          src/bob.ip.color
-          src/bob.ip.gabor
-          src/bob.db.base
-          src/bob.db.verification.utils
-          src/bob.db.atnt
-          .
+develop = .
 
 ; options for bob.buildout extension
 debug = false
 verbose = true
 newest = false
 
-[sources]
-bob.extension = git https://github.com/bioidiap/bob.extension
-bob.blitz = git https://github.com/bioidiap/bob.blitz
-bob.core = git https://github.com/bioidiap/bob.core
-bob.io.base = git https://github.com/bioidiap/bob.io.base
-bob.io.image = git https://github.com/bioidiap/bob.io.image
-bob.sp = git https://github.com/bioidiap/bob.sp
-bob.math = git https://github.com/bioidiap/bob.math
-bob.measure = git https://github.com/bioidiap/bob.measure
-bob.learn.activation = git https://github.com/bioidiap/bob.learn.activation
-bob.learn.linear = git https://github.com/bioidiap/bob.learn.linear
-bob.learn.em = git https://github.com/bioidiap/bob.learn.em
-bob.ip.base = git https://github.com/bioidiap/bob.ip.base
-bob.ip.color = git https://github.com/bioidiap/bob.ip.color
-bob.ip.gabor = git https://github.com/bioidiap/bob.ip.gabor
-bob.db.base = git https://github.com/bioidiap/bob.db.base
-bob.db.verification.utils = git https://github.com/bioidiap/bob.db.verification.utils
-bob.db.atnt = git https://github.com/bioidiap/bob.db.atnt
-
-
 [scripts]
 recipe = bob.buildout:scripts
 dependent-scripts = true
diff --git a/develop.cfg b/develop.cfg
new file mode 100644
index 0000000..330508b
--- /dev/null
+++ b/develop.cfg
@@ -0,0 +1,57 @@
+; vim: set fileencoding=utf-8 :
+; Andre Anjos <andre.anjos@idiap.ch>
+; Mon 16 Apr 08:29:18 2012 CEST
+
+[buildout]
+parts = scripts
+eggs = bob.example.faceverify
+extensions = bob.buildout
+             mr.developer
+auto-checkout = *
+develop = src/bob.extension
+          src/bob.blitz
+          src/bob.core
+          src/bob.io.base
+          src/bob.io.image
+          src/bob.sp
+          src/bob.math
+          src/bob.measure
+          src/bob.learn.activation
+          src/bob.learn.linear
+          src/bob.learn.em
+          src/bob.ip.base
+          src/bob.ip.color
+          src/bob.ip.gabor
+          src/bob.db.base
+          src/bob.db.verification.utils
+          src/bob.db.atnt
+          .
+
+; options for bob.buildout extension
+debug = false
+verbose = true
+newest = false
+
+[sources]
+bob.extension = git https://github.com/bioidiap/bob.extension
+bob.blitz = git https://github.com/bioidiap/bob.blitz
+bob.core = git https://github.com/bioidiap/bob.core
+bob.io.base = git https://github.com/bioidiap/bob.io.base
+bob.io.image = git https://github.com/bioidiap/bob.io.image
+bob.sp = git https://github.com/bioidiap/bob.sp
+bob.math = git https://github.com/bioidiap/bob.math
+bob.measure = git https://github.com/bioidiap/bob.measure
+bob.learn.activation = git https://github.com/bioidiap/bob.learn.activation
+bob.learn.linear = git https://github.com/bioidiap/bob.learn.linear
+bob.learn.em = git https://github.com/bioidiap/bob.learn.em
+bob.ip.base = git https://github.com/bioidiap/bob.ip.base
+bob.ip.color = git https://github.com/bioidiap/bob.ip.color
+bob.ip.gabor = git https://github.com/bioidiap/bob.ip.gabor
+bob.db.base = git https://github.com/bioidiap/bob.db.base
+bob.db.verification.utils = git https://github.com/bioidiap/bob.db.verification.utils
+bob.db.atnt = git https://github.com/bioidiap/bob.db.atnt
+
+
+[scripts]
+recipe = bob.buildout:scripts
+dependent-scripts = true
-- 
GitLab