rename aerostat to downpour

Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-02-06 12:26:27 -05:00
parent e8f616d9cf
commit f64ab84259
22 changed files with 38 additions and 40 deletions

View File

@ -1,6 +1,6 @@
[run] [run]
branch = True branch = True
source = aerostat source = downpour
[report] [report]
ignore_errors = True ignore_errors = True

View File

@ -1,4 +1,4 @@
[gerrit] [gerrit]
host=review.openstack.org host=review.openstack.org
port=29418 port=29418
project=openstack/aerostat.git project=openstack/downpour.git

View File

@ -14,4 +14,4 @@ Pull requests submitted through GitHub will be ignored.
Bugs should be filed on Launchpad, not GitHub: Bugs should be filed on Launchpad, not GitHub:
https://bugs.launchpad.net/aerostat https://bugs.launchpad.net/downpour

View File

@ -1,4 +1,4 @@
aerostat Style Commandments downpour Style Commandments
=============================================== ===========================
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/ Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/

View File

@ -1,27 +1,25 @@
================================================== ==================================================
aerostat -- OpenStack Tenant Data Migration Tool downpour -- OpenStack Tenant Data Migration Tool
================================================== ==================================================
aerostat_ exports tenant data from an OpenStack cloud to create a set downpour exports tenant data from an OpenStack cloud to create a set
of Ansible playbooks for importing the data into another cloud. of Ansible playbooks for importing the data into another cloud.
.. _aerostat: https://en.wikipedia.org/wiki/Aerostat
Installing and Using Installing and Using
==================== ====================
The project is in a very very early prototyping stage. The project is in a very very early prototyping stage.
aerostat uses `os-client-config`_ for settings related to accessing downpour uses `os-client-config`_ for settings related to accessing
the cloud. Fill in your ``clouds.yaml`` or use the environment the cloud. Fill in your ``clouds.yaml`` or use the environment
variables or command line arguments provided. variables or command line arguments provided.
With tox_ installed, experiment via:: With tox_ installed, experiment via::
$ tox -e venv -- aerostat $ tox -e venv -- downpour
.. _tox: https://tox.readthedocs.io/en/latest/ .. _tox: https://tox.readthedocs.io/en/latest/
.. _os-client-config: http://docs.openstack.org/developer/os-client-config/ .. _os-client-config: http://docs.openstack.org/developer/os-client-config/
* Free software: Apache license * Free software: Apache license
* Source: http://git.openstack.org/cgit/openstack/aerostat * Source: http://git.openstack.org/cgit/openstack/downpour

View File

@ -37,7 +37,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'aerostat' project = u'downpour'
copyright = u'2016, OpenStack Foundation' copyright = u'2016, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.

View File

@ -1,9 +1,9 @@
.. aerostat documentation master file, created by .. downpour documentation master file, created by
sphinx-quickstart on Tue Jul 9 22:26:36 2013. sphinx-quickstart on Tue Jul 9 22:26:36 2013.
You can adapt this file completely to your liking, but it should at least You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive. contain the root `toctree` directive.
Welcome to aerostat's documentation! Welcome to downpour's documentation!
======================================================== ========================================================
Contents: Contents:

View File

@ -4,9 +4,9 @@ Installation
At the command line:: At the command line::
$ pip install aerostat $ pip install downpour
Or, if you have virtualenvwrapper installed:: Or, if you have virtualenvwrapper installed::
$ mkvirtualenv aerostat $ mkvirtualenv downpour
$ pip install aerostat $ pip install downpour

View File

@ -2,6 +2,6 @@
Usage Usage
======== ========
To use aerostat in a project:: To use downpour in a project::
import aerostat import downpour

View File

@ -16,4 +16,4 @@ import pbr.version
__version__ = pbr.version.VersionInfo( __version__ = pbr.version.VersionInfo(
'aerostat').version_string() 'downpour').version_string()

View File

@ -19,8 +19,8 @@ import sys
import os_client_config import os_client_config
import shade import shade
from aerostat import export from downpour import export
from aerostat import query from downpour import query
def main(): def main():

View File

@ -17,9 +17,9 @@ import os.path
import yaml import yaml
from aerostat import download from downpour import download
from aerostat import resolver from downpour import resolver
from aerostat import resources from downpour import resources
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)

View File

@ -13,13 +13,13 @@
# under the License. # under the License.
""" """
test_aerostat test_downpour
---------------------------------- ----------------------------------
Tests for `aerostat` module. Tests for `downpour` module.
""" """
from aerostat.tests import base from downpour.tests import base
class TestAerostat(base.TestCase): class TestAerostat(base.TestCase):

View File

@ -55,7 +55,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'aerostat Release Notes' project = u'downpour Release Notes'
copyright = u'2016, OpenStack Foundation' copyright = u'2016, OpenStack Foundation'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for

View File

@ -1,5 +1,5 @@
============================================ ============================================
aerostat Release Notes downpour Release Notes
============================================ ============================================
.. toctree:: .. toctree::

View File

@ -1,5 +1,5 @@
[metadata] [metadata]
name = aerostat name = downpour
summary = OpenStack tenant data migration tool summary = OpenStack tenant data migration tool
description-file = description-file =
README.rst README.rst
@ -18,11 +18,11 @@ classifier =
[files] [files]
packages = packages =
aerostat downpour
[entry_points] [entry_points]
console_scripts = console_scripts =
aerostat = aerostat.app:main downpour = downpour.app:main
[build_sphinx] [build_sphinx]
source-dir = doc/source source-dir = doc/source
@ -33,18 +33,18 @@ all_files = 1
upload-dir = doc/build/html upload-dir = doc/build/html
[compile_catalog] [compile_catalog]
directory = aerostat/locale directory = downpour/locale
domain = aerostat domain = downpour
[update_catalog] [update_catalog]
domain = aerostat domain = downpour
output_dir = aerostat/locale output_dir = downpour/locale
input_file = aerostat/locale/aerostat.pot input_file = downpour/locale/downpour.pot
[extract_messages] [extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg mapping_file = babel.cfg
output_file = aerostat/locale/aerostat.pot output_file = downpour/locale/downpour.pot
[build_releasenotes] [build_releasenotes]
all_files = 1 all_files = 1