~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to .pc/git-2012.1~e2~20111201.1077.patch/horizon/buildout.cfg

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-09 16:18:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111209161855-nguyenpghx2o2lqy
Tags: 2012.1~e2~20111209.1104-0ubuntu1
* New upstream release.
* Refreshed patches.
* debian/docs: Removed README

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[buildout]
2
 
parts =
3
 
   django
4
 
   launchpad
5
 
   openstack-compute
6
 
   openstackx
7
 
   python-novaclient
8
 
   python-keystoneclient
9
 
   seleniumrc
10
 
develop = .
11
 
versions = versions
12
 
 
13
 
 
14
 
[versions]
15
 
django = 1.3
16
 
# the following are for glance-dependencies
17
 
eventlet = 0.9.12
18
 
greenlet = 0.3.1
19
 
pep8 = 0.5.0
20
 
sqlalchemy = 0.6.3
21
 
sqlalchemy-migrate = 0.6
22
 
webob = 1.0.8
23
 
 
24
 
 
25
 
[dependencies]
26
 
# dependencies that are found locally ${buildout:directory}/module
27
 
# or can be fetched from pypi
28
 
recipe = zc.recipe.egg
29
 
eggs =
30
 
    python-dateutil
31
 
    django-mailer
32
 
    httplib2
33
 
    python-cloudfiles
34
 
    coverage
35
 
    glance
36
 
    quantum
37
 
    django-nose-selenium
38
 
    CherryPy
39
 
interpreter = python
40
 
 
41
 
 
42
 
# glance doesn't have a client, and installing
43
 
# from bzr doesn't install deps
44
 
[glance-dependencies]
45
 
recipe = zc.recipe.egg
46
 
eggs =
47
 
   PasteDeploy
48
 
   anyjson
49
 
   argparse
50
 
   eventlet
51
 
   greenlet
52
 
   kombu
53
 
   paste
54
 
   pep8
55
 
   routes
56
 
   sqlalchemy
57
 
   sqlalchemy-migrate
58
 
   webob
59
 
   xattr
60
 
interpreter = python
61
 
 
62
 
 
63
 
[horizon]
64
 
recipe = zc.recipe.egg
65
 
eggs = horizon
66
 
interpreter = python
67
 
 
68
 
 
69
 
[django]
70
 
# defines settings for django
71
 
# any dependencies that cannot be satisifed via the dependencies
72
 
# recipe above will need to be added to the extra-paths here.
73
 
# IE, dependencies fetch from a git repo will not auto-populate
74
 
# like the zc.recipe.egg ones will
75
 
recipe = djangorecipe
76
 
project = horizon
77
 
projectegg = horizon
78
 
settings = tests
79
 
test = horizon
80
 
eggs =
81
 
   ${dependencies:eggs}
82
 
   ${horizon:eggs}
83
 
   ${glance-dependencies:eggs}
84
 
extra-paths =
85
 
    ${buildout:directory}/parts/openstack-compute
86
 
    ${buildout:directory}/parts/openstackx
87
 
    ${buildout:directory}/parts/python-novaclient
88
 
    ${buildout:directory}/parts/python-keystoneclient
89
 
 
90
 
 
91
 
## Dependencies fetch from git
92
 
# git dependencies end up as a subdirectory of ${buildout:directory}/parts/
93
 
[openstack-compute]
94
 
recipe = zerokspot.recipe.git
95
 
repository = git://github.com/jacobian/openstack.compute.git
96
 
as_egg = True
97
 
 
98
 
[openstackx]
99
 
recipe = zerokspot.recipe.git
100
 
repository = git://github.com/cloudbuilders/openstackx.git
101
 
as_egg = True
102
 
 
103
 
[python-novaclient]
104
 
recipe = zerokspot.recipe.git
105
 
repository = git://github.com/rackspace/python-novaclient.git
106
 
as_egg = True
107
 
 
108
 
[python-keystoneclient]
109
 
recipe = zerokspot.recipe.git
110
 
repository = git://github.com/4P/python-keystoneclient.git
111
 
as_egg = True
112
 
 
113
 
## Dependencies fetched from launchpad
114
 
# launchpad dependencies will appear as subfolders of
115
 
# ${buildout:directory}/launchpad/
116
 
# multiple urls can be specified, format is
117
 
# branch_url subfolder_name
118
 
# don't forget to add directory to extra_paths in [django]
119
 
[launchpad]
120
 
recipe = bazaarrecipe
121
 
urls =
122
 
   https://launchpad.net/~hudson-openstack/glance/trunk/ glance
123
 
 
124
 
 
125
 
## Dependencies fetch from other bzr locations
126
 
#[bzrdeps]
127
 
#recipe = bazaarrecipe
128
 
#urls =
129
 
#   https://launchpad.net/~hudson-openstack/glance/trunk/ glance
130
 
 
131
 
 
132
 
[seleniumrc]
133
 
recipe=collective.recipe.seleniumrc