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
|
# Copyright 2010-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
[buildout]
download-cache = build/download-cache
eggs-directory = build/source-dependencies/eggs
develop-eggs-directory = build/develop-eggs
parts-directory = build/parts
# Disable this option temporarily if you want buildout to find
# software dependencies *other* than those in our download-cache.
install-from-cache = true
# Newly-added packages should also add their desired version number
# to versions.cfg.
extends = versions.cfg
allow-picked-versions = false
unzip = true
newest = false
parts =
source-checkout
html5-browser
storm
scripts
filetemplates
eggs =
html5browser
storm
transaction
develop = .
[filetemplates]
recipe = z3c.recipe.filetemplate
source-directory = buildout-templates
[source-configuration]
branch-name = trunk
[source-dependencies]
path = ${buildout:directory}/build/source-dependencies
[source-checkout-macro]
# Options used to fine tune the source checkout repository layout.
repository-format = 2a
branch-owner = $${:__name__}
branch-name = ${source-configuration:branch-name}
target-name = ${source-configuration:branch-name}
destination-path = $${:destination}/$${:target-name}
develop-egg = true
# Options that will be used by the gf.recipe.bzr recipe.
shared-repo = true
format = $${:repository-format}
develop = $${:develop-egg}
destination = ${source-dependencies:path}/$${:__name__}
urls =
http://bazaar.launchpad.net/~$${:branch-owner}/$${:__name__}/$${:branch-name} $${:target-name}
[html5-browser-checkout]
branch-owner = sinzui
[source-checkout]
recipe = zc.recipe.macro
result-recipe = gf.recipe.bzr
macro = source-checkout-macro
targets =
html5-browser:html5-browser-checkout
storm
[scripts-configuration]
allowed-eggs-from-site-packages =
extra-paths =
${buildout:directory}
[scripts]
recipe = z3c.recipe.scripts
include-site-packages = true
allowed-eggs-from-site-packages =
${scripts-configuration:allowed-eggs-from-site-packages}
extra-paths =
${scripts-configuration:extra-paths}
eggs =
lpresults
${buildout:eggs}
interpreter = py
entry-points =
manage.py=lpresults.tracker.manage:run
jslint=lazr.js.jslint:main
|