Revision: 7129
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7129&view=rev
Author: astraw
Date: 2009-05-21 20:34:47 +0000 (Thu, 21 May 2009)
Log Message:
-----------
buildout test requires PIL. Custom PIL and noserunner download locations
Modified Paths:
--------------
trunk/matplotlib/buildout.cfg
Modified: trunk/matplotlib/buildout.cfg
===================================================================
--- trunk/matplotlib/buildout.cfg 2009-05-20 22:23:45 UTC (rev 7128)
+++ trunk/matplotlib/buildout.cfg 2009-05-21 20:34:47 UTC (rev 7129)
@@ -1,12 +1,14 @@
[buildout]
-parts = test python
+parts = PIL test python
develop = .
eggs = matplotlib
[test]
recipe = pbp.recipe.noserunner
+find-links = http://astraw.com/mpl/
eggs =
pbp.recipe.noserunner
+ PIL
${buildout:eggs}
working-directory = ${buildout:directory}/test
initialization =
@@ -20,3 +22,11 @@
interpreter = python
eggs =
${buildout:eggs}
+
+[PIL]
+# This recipe based on http://www.koansys.com/tech/install-plone-with-zopeskel-buildout-needs-pil
+# Build egg with Chris McDonough's custom packaging of setuptools-compatibile PIL
+# http://article.gmane.org/gmane.comp.web.zope.devel/13999
+recipe = zc.recipe.egg
+egg = PIL==1.1.6
+find-links = http://astraw.com/mpl/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|