forked from plone/plone.app.event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
129 lines (107 loc) · 2.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[buildout]
extends =
https://raw.githubusercontent.com/plone/buildout.coredev/5.0/versions.cfg
parts =
instance
# DEV
i18ndude
omelette
zopepy
sphinx
checkversions
# TESTING
test
coverage-test
coverage-report
robot
auto-checkout =
Products.DateRecurringIndex
icalendar
jquery.recurrenceinput.js
plone.app.event
plone.event
plone.formwidget.recurrence
extensions += mr.developer
sources-dir = ${buildout:directory}/devsrc
develop = .
versions = versions
# One of: CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET
log-level = INFO
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
environment-vars = zope_i18n_compile_mo_files true
eggs =
Plone
Pillow
plone.app.event
# DEVELOPMENT
plone.reload
plone.app.debugtoolbar
# DEVELOPMENT
[sources]
Products.DateRecurringIndex = git [email protected]:collective/Products.DateRecurringIndex.git
icalendar = git [email protected]:collective/icalendar.git
jquery.recurrenceinput.js = git [email protected]:collective/jquery.recurrenceinput.js.git egg=false
plone.event = git [email protected]:plone/plone.event.git
plone.formwidget.recurrence = git [email protected]:plone/plone.formwidget.recurrence.git branch=master
# Looks like, `develop = .` doesn't work well with mr.developer. So we checkout
# plone.app.event to the buildout directory path.
plone.app.event = git [email protected]:plone/plone.app.event.git branch=master full-path=${buildout:directory}
[i18ndude]
unzip = true
recipe = zc.recipe.egg
eggs = i18ndude
[omelette]
recipe = collective.recipe.omelette
eggs =
${instance:eggs}
${test:eggs}
${robot:eggs}
[zopepy]
recipe = zc.recipe.egg
eggs =
${instance:eggs}
${test:eggs}
${robot:eggs}
interpreter = zopepy
scripts = zopepy
[sphinx]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
interpreter = ${buildout:directory}/bin/zopepy
[checkversions]
recipe=zc.recipe.egg
eggs=z3c.checkversions [buildout]
# TESTING
[environment]
BUILDOUT_DIR = ${buildout:directory}
zope_i18n_compile_mo_files = true
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
Products.DateRecurringIndex [test]
icalendar [test]
plone.app.event [test]
plone.event [test]
plone.formwidget.recurrence [test]
environment = environment
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage', '-v', '--auto-progress']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'report')
[robot]
recipe = zc.recipe.egg
eggs =
${instance:eggs}
plone.app.robotframework [debug]
# ALL
[versions]
setuptools =
zc.buildout =