Skip to content

Commit 7c15882

Browse files
committedOct 14, 2012
Using unified installer to speed up the buildout
1 parent 42c7570 commit 7c15882

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,6 @@ picked.cfg
5252
src
5353
pip.log
5454
source/reference_manuals/external/*
55+
56+
buildout-cache/downloads/*
57+
buildout-cache/eggs/*

‎buildout.cfg

+8-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ extensions =
2222
mr.developer
2323
buildout.dumppickedversions
2424

25+
eggs-directory = buildout-cache/eggs
26+
download-cache = buildout-cache/downloads
27+
2528
extends =
2629
https://raw.github.com/plone/buildout.coredev/4.2/sources.cfg
2730

@@ -45,7 +48,7 @@ auto-checkout =
4548
plone.app.testing
4649
plone.api
4750
Products.TinyMCE
48-
tutorial.todoapp
51+
tutorials.todoapp
4952

5053
allow-picked-versions = true
5154

@@ -64,7 +67,6 @@ outputs = html
6467
source = ${buildout:directory}/source
6568
build = ${buildout:directory}/build
6669
eggs =
67-
Plone
6870
Sphinx
6971
Docutils
7072
roman
@@ -76,12 +78,15 @@ eggs =
7678
[versions]
7779
roadrunner = 0.2.3.1
7880
zc.recipe.egg = 1.2.0
81+
Products.CMFPlone = 4.2.1
7982

8083
# Some pindowns to make sure Sphinx + dependencies don't go havoc
8184
collective.recipe.sphinxbuilder = 0.7.0
8285
Sphinx = 1.1.3
8386

8487
[sources]
8588
Products.TinyMCE = git git://github.com/plone/Products.TinyMCE
86-
plone.api = git git://github.com/plone/plone.api.gi
89+
plone.api = git git://github.com/plone/plone.api.git
8790
tutorials.todoapp = git git://github.com/collective/tutorial.todoapp.git
91+
92+

0 commit comments

Comments
 (0)
Please sign in to comment.