Rename Quantum to Neutron

This change renames everything to Neutron while providing backwards
compatible adjustments for Grizzly configuration files.

implements blueprint: remove-use-of-quantum

Change-Id: Ie7d07ba7c89857e13d4ddc8f0e9b68de020a3d19
This commit is contained in:
Mark McClain
2013-07-03 19:39:46 -04:00
parent fc52854c1f
commit ee3fe4e836
714 changed files with 4918 additions and 4439 deletions

View File

@@ -2,4 +2,4 @@
rm -rf ./*.deb ./*.tar.gz ./*.dsc ./*.changes
rm -rf */*.deb
rm -rf ./plugins/**/build/ ./plugins/**/dist
rm -rf ./plugins/**/lib/quantum_*_plugin.egg-info ./plugins/quantum-*
rm -rf ./plugins/**/lib/neutron_*_plugin.egg-info ./plugins/neutron-*

View File

@@ -92,6 +92,6 @@ msg_format_checkers = [
]
file_black_list = ["./quantum/tests/unit",
"./quantum/openstack",
file_black_list = ["./neutron/tests/unit",
"./neutron/openstack",
"./quantum/plugins/bigswitch/tests"]

View File

@@ -21,7 +21,7 @@
# under the License.
"""
Installation script for Quantum's development virtualenv
Installation script for Neutron's development virtualenv
"""
import os
@@ -33,12 +33,12 @@ import install_venv_common as install_venv
def print_help():
help = """
Quantum development environment setup is complete.
Neutron development environment setup is complete.
Quantum development uses virtualenv to track and manage Python dependencies
Neutron development uses virtualenv to track and manage Python dependencies
while in development and testing.
To activate the Quantum virtualenv for the extent of your current shell
To activate the Neutron virtualenv for the extent of your current shell
session you can run:
$ source .venv/bin/activate
@@ -59,7 +59,7 @@ def main(argv):
pip_requires = os.path.join(root, 'requirements.txt')
test_requires = os.path.join(root, 'test-requirements.txt')
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'Quantum'
project = 'Neutron'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
options = install.parse_args(argv)

View File

@@ -40,7 +40,7 @@ def main(argv):
os.path.join(root, 'tools', 'test-requires'),
])
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'quantum'
project = 'neutron'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
#NOTE(dprince): For Tox we only run post_process (which patches files, etc)