-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
104 lines (88 loc) · 2.3 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
93
94
95
96
97
98
99
100
101
102
103
104
[buildout]
extensions = buildout.dumppickedversions
mr.developer
dump-picked-versions-file = versions-picked.cfg
auto-checkout =
gites.db
sources-dir = devel
develop =
.
allow-picked-versions = true
extends = http://dist.plone.org/release/4.0.1/versions.cfg
versions.cfg
versions = versions
#index = http://pypi.affinitic.be
#allow-hosts = pypi.affinitic.be
# eggs.affinitic.be
# packages.affinitic.be
# dist.plone.org
find-links =
http://dist.plone.org/thirdparty
http://packages.affinitic.be/simple
http://eggs.affinitic.be/
parts =
scripts
omelette
test
coverage-test
coverage-report
zopepy
checkversions
eggs =
Products.PloneHotfix20110720
Products.PloneHotfix20110531
Products.Zope-Hotfix-20110622
gdw.stats
zcml =
gdw.stats
[sources]
gdw.stats = hg ssh://clavius.affinitic.be/~/hg/ged.stats
affinitic.db = svn svn+ssh://svn.affinitic.be/home/svn/affinitic/python/affinitic.db/trunk
gites.db = svn http://svn.affinitic.be/plone/gites/gites.db/trunk
plone.testing = svn https://svn.plone.org/svn/plone/plone.testing/branches/zope2.10
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[instance01]
recipe = plone.recipe.zope2instance
user = admin:admin
verbose-security = on
http-address = 6011
zeo-client = False
debug-mode = off
shared-blob = on
zcml = ${buildout:zcml}
zserver-threads = 4
eggs =
${buildout:eggs}
zcml-additional =
<configure xmlns="http://namespaces.zope.org/zope"
xmlns:passmgr="http://affinitic.be/passmgr">
<include package="affinitic.pwmanager"/>
<passmgr:pwdfile name="pg"
filename="pgpass"/>
</configure>
[test]
recipe = zc.recipe.testrunner
eggs = gdw.stats [test]
defaults = ['--tests-pattern', '^f?tests$', '--color']
script = test
[zopepy]
recipe = zc.recipe.egg
eggs = ${instance01:eggs}
interpreter = zopepy
scripts = zopepy
[checkversions]
recipe=zc.recipe.egg
eggs=z3c.checkversions
[coverage-test]
recipe = zc.recipe.testrunner
eggs = gdw.stats [test]
defaults = ['--coverage', '${buildout:directory}/coverage', '--auto-progress']
[coverage-report]
recipe = zc.recipe.egg:scripts
eggs = z3c.coverage
arguments = ('coverage', 'coverage/report')
[scripts]
recipe = zc.recipe.egg:scripts
eggs = gdw.stats