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]
branch = True
source = aerostat
source = downpour
[report]
ignore_errors = True

View File

@ -1,4 +1,4 @@
[gerrit]
host=review.openstack.org
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:
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/

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.
.. _aerostat: https://en.wikipedia.org/wiki/Aerostat
Installing and Using
====================
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
variables or command line arguments provided.
With tox_ installed, experiment via::
$ tox -e venv -- aerostat
$ tox -e venv -- downpour
.. _tox: https://tox.readthedocs.io/en/latest/
.. _os-client-config: http://docs.openstack.org/developer/os-client-config/
* 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'
# General information about the project.
project = u'aerostat'
project = u'downpour'
copyright = u'2016, OpenStack Foundation'
# 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.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to aerostat's documentation!
Welcome to downpour's documentation!
========================================================
Contents:

View File

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

View File

@ -2,6 +2,6 @@
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(
'aerostat').version_string()
'downpour').version_string()

View File

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

View File

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

View File

@ -13,13 +13,13 @@
# 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):

View File

@ -55,7 +55,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'aerostat Release Notes'
project = u'downpour Release Notes'
copyright = u'2016, OpenStack Foundation'
# 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::

View File

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