Changeset 12625
- Timestamp:
- 19 Feb 2015, 12:33:46 (10 years ago)
- Location:
- main/waeup.odoo/trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.odoo/trunk/bootstrap.py
r11533 r12625 76 76 77 77 ez = {} 78 exec(urlopen('https://b itbucket.org/pypa/setuptools/downloads/ez_setup.py'79 ).read(), ez) 78 exec(urlopen('https://bootstrap.pypa.io/ez_setup.py').read(), ez) 79 80 80 if not options.allow_site_packages: 81 81 # ez_setup imports site, which adds site packages … … 159 159 if subprocess.call(cmd, env=dict(os.environ, PYTHONPATH=setuptools_path)) != 0: 160 160 raise Exception( 161 "Failed to execute command:\n%s", 162 repr(cmd)[1:-1]) 161 "Failed to execute command:\n%s" % repr(cmd)[1:-1]) 163 162 164 163 ###################################################################### -
main/waeup.odoo/trunk/buildout.cfg
r11533 r12625 1 1 [buildout] 2 parts = openerp 3 versions = versions 4 find-links = http://download.gna.org/pychart/ 2 extends = base_recipe.cfg 5 3 6 [o penerp]7 recipe = anybox.recipe.openerp[bzr]:server 8 version = nightly 7.0 latest 4 [odoo] 5 version = git http://github.com/odoo/odoo.git odoo 8.0 6 eggs = pyPdf 9 7 10 8 [versions] 11 setuptools = 1.1.0 12 zc.buildout = 2.2.1 13 zc.recipe.eggs = 2.0.0 14 anybox.recipe.openerp = 1.7.1 15 babel = 0.9.6 16 Pillow = 1.7.1 17 pywebdav = 0.9.4.1 18 PyXML = 0.8.4 19 pyyaml = 3.10 20 werkzeug = 0.8.3 21 zsi = 2.0-rc3 22 feedparser = 5.1.1 23 gdata = 2.0.16 24 lxml = 2.3.3 25 psycopg2 = 2.4.4 26 pydot = 1.0.28 27 pyparsing = 1.5.6 28 python-dateutil = 1.5 29 python-ldap = 2.4.9 30 python-openid = 2.2.5 31 pytz = 2012b 32 vatnumber = 1.0 33 vobject = 0.8.1c 34 xlwt = 0.7.3 9 reportlab = 2.7
Note: See TracChangeset for help on using the changeset viewer.