--- cca-tools-installer/packages/babel.py.orig 2013-12-16 18:28:59.000000000 -0700 +++ cca-tools-installer/packages/babel.py 2013-12-16 18:29:40.000000000 -0700 @@ -10,8 +10,8 @@ # The following version will be used if user doesn't explicitly specify the babel_version # option when invoking contract.py --configure -default_babel_version = '1.4.0' -babel_trunk_version = '1.4.0' # no idea why it's the same +default_babel_version = '2.0.0' +babel_trunk_version = '2.0.0' # no idea why it's the same babel_internal = Option(local_root, "babel_internal", True, bool, "Install internal version of babel", deps=[nightly]) @@ -21,12 +21,15 @@ babel_version = default_babel_version -supported_babel_versions = ['1.0.8', '1.2.1', '1.4.0', 'trunk'] +supported_babel_versions = ['1.0.8', '1.2.1', '1.4.0', '2.0.0', 'trunk'] if nightly.get(): if babel_version_opt.get().startswith('1.0'): babel_version = "1.0.8" babel_url = nightlyurl + 'babel-' + babel_version + '.tar.gz' + elif babel_version_opt.get().startswith('2.0'): + babel_version = '2.0.0' + babel_url = 'http://computation.llnl.gov/casc/components/docs/babel-2.0.0.tar.gz' elif babel_version_opt.get().lower() == 'trunk': babel_url = nightlyurl + 'babel-trunk.tar.gz' babel_version = babel_trunk_version