forked from plone/plone.app.theming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
92 lines (82 loc) · 2.25 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[buildout]
extends =
http://dist.plone.org/release/4.1-latest/versions.cfg
http://good-py.appspot.com/release/plone.app.theming/1.0
parts =
lxml
test
instance
zopepy
omelette
paster
develop = .
extensions =
mr.developer
buildout.dumppickedversions
sources = sources
versions = versions
sources-dir = extras
auto-checkout =
plone.app.themingplugins
[versions]
plone.app.theming =
plone.app.themingplugins =
diazo = 1.0.3
[lxml]
recipe = z3c.recipe.staticlxml
egg = lxml==${versions:lxml}
[remotes]
repoze = git://github.com/repoze
lxml = git://github.com/lxml
plone = git://github.com/plone
svn_plone = http://svn.plone.org/svn/plone
collective = git://github.com/collective
svn_collective = http://svn.plone.org/svn/collective
[sources]
diazo = git ${remotes:plone}/diazo.git
plone.resource = git ${remotes:plone}/plone.resource.git
plone.subrequest = git ${remotes:plone}/plone.subrequest.git
plone.transformchain = git ${remotes:plone}/plone.transformchain.git
repoze.xmliter = git ${remotes:repoze}/repoze.xmliter.git
lxml = git ${remotes:lxml}/lxml.git
plone.resourceeditor = git ${remotes:plone}/plone.resourceeditor.git
plone.app.themingplugins = git ${remotes:plone}/plone.app.themingplugins.git
plone.app.caching = git ${remotes:plone}/plone.app.caching.git
[instance]
recipe = plone.recipe.zope2instance
eggs =
plone.app.theming
plone.app.themingplugins
plone.reload
user = admin:admin
resources = ${buildout:directory}/resources
[zopepy]
recipe = zc.recipe.egg
eggs =
plone.app.theming
plone.app.themingplugins
interpreter = zopepy
[test]
recipe = zc.recipe.testrunner
eggs =
diazo [test]
plone.app.theming [test]
plone.app.themingplugins [test]
plone.resource [test]
plone.resourceeditor [test]
plone.subrequest [test]
plone.app.caching [test]
repoze.xmliter
defaults = ['--auto-color', '--auto-progress']
[paster]
recipe = zc.recipe.egg
eggs =
diazo [wsgi]
PasteScript
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
arguments = ('coverage', 'report')
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}