rename aerostat to downpour
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
e8f616d9cf
commit
f64ab84259
@ -1,6 +1,6 @@
|
||||
[run]
|
||||
branch = True
|
||||
source = aerostat
|
||||
source = downpour
|
||||
|
||||
[report]
|
||||
ignore_errors = True
|
||||
|
@ -1,4 +1,4 @@
|
||||
[gerrit]
|
||||
host=review.openstack.org
|
||||
port=29418
|
||||
project=openstack/aerostat.git
|
||||
project=openstack/downpour.git
|
||||
|
@ -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
|
||||
|
@ -1,4 +1,4 @@
|
||||
aerostat Style Commandments
|
||||
===============================================
|
||||
downpour Style Commandments
|
||||
===========================
|
||||
|
||||
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/
|
||||
|
12
README.rst
12
README.rst
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -2,6 +2,6 @@
|
||||
Usage
|
||||
========
|
||||
|
||||
To use aerostat in a project::
|
||||
To use downpour in a project::
|
||||
|
||||
import aerostat
|
||||
import downpour
|
||||
|
@ -16,4 +16,4 @@ import pbr.version
|
||||
|
||||
|
||||
__version__ = pbr.version.VersionInfo(
|
||||
'aerostat').version_string()
|
||||
'downpour').version_string()
|
@ -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():
|
@ -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__)
|
||||
|
@ -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):
|
@ -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
|
||||
|
@ -1,5 +1,5 @@
|
||||
============================================
|
||||
aerostat Release Notes
|
||||
downpour Release Notes
|
||||
============================================
|
||||
|
||||
.. toctree::
|
||||
|
18
setup.cfg
18
setup.cfg
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user