~launchpad-pqm/launchpad/devel

8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
1
[buildout]
2
parts =
3
    scripts
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
4
    filetemplates
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
5
    tags
6
    iharness
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
7
    i18n
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
8
unzip = true
8357.5.4 by Gary Poster
make bootstrap use the local downloaded version of zc.buildout. This should eliminate the last bit of network access on deployment boxes--and on development boxes, once setuptools is installed properly.
9
eggs-directory = eggs
10
download-cache = download-cache
8234.1.7 by Gary Poster
rocketfuel scripts and download cache are in place now.
11
12
# Disable this option temporarily if you want buildout to find software
13
# dependencies *other* than those in our download-cache.  Once you have the
14
# desired software, reenable this option (and check in the new software to
15
# lp:lp-source-dependencies if this is going to be reviewed/merged/deployed.)
16
install-from-cache = true
17
18
# This also will need to be temporarily disabled or changed for package
19
# upgrades.  Newly-added packages should also add their desired version number
20
# to versions.cfg.
21
extends = versions.cfg
8357.5.2 by Gary Poster
incremental changes to using more eggs
22
8234.1.7 by Gary Poster
rocketfuel scripts and download cache are in place now.
23
# allow-picked-versions = false # A buildout bug is not allowing this to work.
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
24
8357.5.2 by Gary Poster
incremental changes to using more eggs
25
prefer-final = true
26
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
27
develop = .
28
29
[configuration]
30
instance_name = development
31
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
32
[filetemplates]
33
recipe = z3c.recipe.filetemplate
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
34
eggs = lp
8357.5.2 by Gary Poster
incremental changes to using more eggs
35
# XXX gary 2009-5-12 bug 375751:
36
# Make mailman built and installed in a more normal way.
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
37
extra-paths = ${buildout:directory}/lib/mailman
38
source-directory = buildout-templates
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
39
40
[scripts]
41
recipe = zc.recipe.egg
42
eggs = lp
8777.2.3 by Francis J. Lacoste
Update to windmill 1.2
43
    windmill
8357.5.2 by Gary Poster
incremental changes to using more eggs
44
# XXX gary 2009-5-12 bug 375751:
45
# Make mailman built and installed in a more normal way.
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
46
extra-paths = ${buildout:directory}/lib/mailman
47
# note that any indentation is lost in initialization blocks
48
initialization = import os
49
                 os.environ['STORM_CEXTENSIONS'] = '1'
8502.2.3 by Gary Poster
make twistd available in the bin directory with the right paths
50
                 os.environ.setdefault('LPCONFIG', '${configuration:instance_name}')
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
51
entry-points = stxdocs=zope.configuration.stxdocs:main
8514.2.10 by Francis J. Lacoste
Generate a buildout script to run the googletestservice.
52
    googletestservice=canonical.launchpad.testing.googletestservice:main
8777.2.3 by Francis J. Lacoste
Update to windmill 1.2
53
    windmill=windmill.bin.windmill_bin:main
54
    lp-windmill=lp.scripts.utilities.lpwindmill:main
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
55
56
[iharness]
57
recipe = zc.recipe.egg
58
eggs = lp
59
       IPython
60
extra-paths = ${buildout:directory}/lib/mailman
61
initialization = import os
62
                 os.environ['STORM_CEXTENSIONS'] = '1'
63
                 os.environ['LPCONFIG'] = '${configuration:instance_name}'
64
entry-points = iharness=canonical.database.harness:ipython
8234.1.3 by Gary Poster
make ipy work as intended
65
scripts = iharness ipython=ipy
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
66
67
[tags]
68
recipe = z3c.recipe.tag:tags
69
eggs = lp
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
70
71
[i18n]
72
recipe = z3c.recipe.i18n:i18n
73
eggs = lp
74
packages = canonical.launchpad
75
domain = launchpad
76
output = locales
77
zcml = <include file="../../site.zcml" />