[Python-modules-commits] [python-shade] 01/01: New Upstream release.

Clint Byrum spamaps at moszumanska.debian.org
Tue Feb 23 00:16:21 UTC 2016


This is an automated email from the git hooks/post-receive script.

spamaps pushed a commit to branch master
in repository python-shade.

commit c133dc9fec1abd7f0a45549e947759d61cfb3e89
Author: Clint Byrum <spamaps at debian.org>
Date:   Mon Feb 22 16:16:06 2016 -0800

    New Upstream release.
---
 debian/changelog                    |   6 ++
 shade.egg-info/PKG-INFO             |  66 ------------------
 shade.egg-info/SOURCES.txt          | 134 ------------------------------------
 shade.egg-info/dependency_links.txt |   1 -
 shade.egg-info/entry_points.txt     |   3 -
 shade.egg-info/not-zip-safe         |   1 -
 shade.egg-info/pbr.json             |   1 -
 shade.egg-info/requires.txt         |  20 ------
 shade.egg-info/top_level.txt        |   1 -
 9 files changed, 6 insertions(+), 227 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b446c87..4fe4d70 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-shade (1.4.0-1) UNRELEASED; urgency=medium
+
+  * New Upstream release.
+
+ -- Clint Byrum <spamaps at debian.org>  Mon, 22 Feb 2016 16:13:50 -0800
+
 python-shade (1.3.0-1) unstable; urgency=medium
 
   * New Upstream release.
diff --git a/shade.egg-info/PKG-INFO b/shade.egg-info/PKG-INFO
deleted file mode 100644
index 49614a5..0000000
--- a/shade.egg-info/PKG-INFO
+++ /dev/null
@@ -1,66 +0,0 @@
-Metadata-Version: 1.1
-Name: shade
-Version: 1.4.0
-Summary: Client library for operating OpenStack clouds
-Home-page: http://docs.openstack.org/infra/shade/
-Author: OpenStack Infrastructure Team
-Author-email: openstack-infra at lists.openstack.org
-License: UNKNOWN
-Description: Introduction
-        ============
-        
-        shade is a simple client library for operating OpenStack clouds. The
-        key word here is *simple*. Clouds can do many many many things - but there are
-        probably only about 10 of them that most people care about with any
-        regularity. If you want to do complicated things, you should probably use
-        the lower level client libraries - or even the REST API directly. However,
-        if what you want is to be able to write an application that talks to clouds
-        no matter what crazy choices the deployer has made in an attempt to be
-        more hipster than their self-entitled narcissist peers, then shade is for you.
-        
-        shade started its life as some code inside of ansible. ansible has a bunch
-        of different OpenStack related modules, and there was a ton of duplicated
-        code. Eventually, between refactoring that duplication into an internal
-        library, and adding logic and features that the OpenStack Infra team had
-        developed to run client applications at scale, it turned out that we'd written
-        nine-tenths of what we'd need to have a standalone library.
-        
-        Example
-        =======
-        
-        Sometimes an example is nice.
-        ::
-        
-          import shade
-        
-          # Initialize and turn on debug logging
-          shade.simple_logging(debug=True)
-        
-          # Initialize cloud
-          # Cloud configs are read with os-client-config
-          cloud = shade.openstack_cloud(cloud='mordred')
-        
-          # Upload an image to the cloud
-          image = cloud.create_image(
-              'ubuntu-trusty', filename='ubuntu-trusty.qcow2', wait=True)
-        
-          # Find a flavor with at least 512M of RAM
-          flavor = cloud.get_flavor_by_ram(512)
-        
-          # Boot a server, wait for it to boot, and then do whatever is needed
-          # to get a public ip for it.
-          cloud.create_server(
-              'my-server', image=image, flavor=flavor, wait=True, auto_ip=True)
-        
-        
-Platform: UNKNOWN
-Classifier: Environment :: OpenStack
-Classifier: Intended Audience :: Information Technology
-Classifier: Intended Audience :: System Administrators
-Classifier: License :: OSI Approved :: Apache Software License
-Classifier: Operating System :: POSIX :: Linux
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
diff --git a/shade.egg-info/SOURCES.txt b/shade.egg-info/SOURCES.txt
deleted file mode 100644
index fe7242f..0000000
--- a/shade.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-.coveragerc
-.mailmap
-.testr.conf
-AUTHORS
-CONTRIBUTING.rst
-ChangeLog
-HACKING.rst
-LICENSE
-MANIFEST.in
-README.rst
-requirements.txt
-setup.cfg
-setup.py
-test-requirements.txt
-tox.ini
-doc/source/coding.rst
-doc/source/conf.py
-doc/source/contributing.rst
-doc/source/future.rst
-doc/source/index.rst
-doc/source/installation.rst
-doc/source/releasenotes.rst
-doc/source/usage.rst
-extras/delete-network.sh
-extras/run-ansible-tests.sh
-releasenotes/notes/cache-in-use-volumes-c7fa8bb378106fe3.yaml
-releasenotes/notes/cinderv2-norm-fix-037189c60b43089f.yaml
-releasenotes/notes/create-stack-fix-12dbb59a48ac7442.yaml
-releasenotes/notes/delete-obj-return-a3ecf0415b7a2989.yaml
-releasenotes/notes/fix-list-networks-a592725df64c306e.yaml
-releasenotes/notes/fix-update-domain-af47b066ac52eb7f.yaml
-releasenotes/notes/started-using-reno-242e2b0cd27f9480.yaml
-shade/__init__.py
-shade/_log.py
-shade/_tasks.py
-shade/_utils.py
-shade/exc.py
-shade/inventory.py
-shade/meta.py
-shade/openstackcloud.py
-shade/operatorcloud.py
-shade/task_manager.py
-shade.egg-info/PKG-INFO
-shade.egg-info/SOURCES.txt
-shade.egg-info/dependency_links.txt
-shade.egg-info/entry_points.txt
-shade.egg-info/not-zip-safe
-shade.egg-info/pbr.json
-shade.egg-info/requires.txt
-shade.egg-info/top_level.txt
-shade/cmd/__init__.py
-shade/cmd/inventory.py
-shade/tests/__init__.py
-shade/tests/base.py
-shade/tests/fakes.py
-shade/tests/ansible/README.txt
-shade/tests/ansible/run.yml
-shade/tests/ansible/hooks/post_test_hook.sh
-shade/tests/ansible/roles/auth/tasks/main.yml
-shade/tests/ansible/roles/client_config/tasks/main.yml
-shade/tests/ansible/roles/image/tasks/main.yml
-shade/tests/ansible/roles/image/vars/main.yml
-shade/tests/ansible/roles/keypair/tasks/main.yml
-shade/tests/ansible/roles/keypair/vars/main.yml
-shade/tests/ansible/roles/network/tasks/main.yml
-shade/tests/ansible/roles/network/vars/main.yml
-shade/tests/ansible/roles/nova_flavor/tasks/main.yml
-shade/tests/ansible/roles/object/tasks/main.yml
-shade/tests/ansible/roles/port/tasks/main.yml
-shade/tests/ansible/roles/port/vars/main.yml
-shade/tests/ansible/roles/router/tasks/main.yml
-shade/tests/ansible/roles/router/vars/main.yml
-shade/tests/ansible/roles/security_group/tasks/main.yml
-shade/tests/ansible/roles/security_group/vars/main.yml
-shade/tests/ansible/roles/subnet/tasks/main.yml
-shade/tests/ansible/roles/subnet/vars/main.yml
-shade/tests/ansible/roles/user/tasks/main.yml
-shade/tests/ansible/roles/user_group/tasks/main.yml
-shade/tests/ansible/roles/volume/tasks/main.yml
-shade/tests/functional/__init__.py
-shade/tests/functional/test_compute.py
-shade/tests/functional/test_domain.py
-shade/tests/functional/test_endpoints.py
-shade/tests/functional/test_flavor.py
-shade/tests/functional/test_floating_ip.py
-shade/tests/functional/test_floating_ip_pool.py
-shade/tests/functional/test_groups.py
-shade/tests/functional/test_identity.py
-shade/tests/functional/test_image.py
-shade/tests/functional/test_inventory.py
-shade/tests/functional/test_network.py
-shade/tests/functional/test_object.py
-shade/tests/functional/test_port.py
-shade/tests/functional/test_router.py
-shade/tests/functional/test_services.py
-shade/tests/functional/test_users.py
-shade/tests/functional/test_volume.py
-shade/tests/functional/util.py
-shade/tests/functional/hooks/post_test_hook.sh
-shade/tests/unit/__init__.py
-shade/tests/unit/base.py
-shade/tests/unit/test__utils.py
-shade/tests/unit/test_caching.py
-shade/tests/unit/test_create_server.py
-shade/tests/unit/test_create_volume_snapshot.py
-shade/tests/unit/test_delete_server.py
-shade/tests/unit/test_delete_volume_snapshot.py
-shade/tests/unit/test_domain_params.py
-shade/tests/unit/test_domains.py
-shade/tests/unit/test_endpoints.py
-shade/tests/unit/test_flavors.py
-shade/tests/unit/test_floating_ip_common.py
-shade/tests/unit/test_floating_ip_neutron.py
-shade/tests/unit/test_floating_ip_nova.py
-shade/tests/unit/test_floating_ip_pool.py
-shade/tests/unit/test_groups.py
-shade/tests/unit/test_identity_roles.py
-shade/tests/unit/test_inventory.py
-shade/tests/unit/test_keypair.py
-shade/tests/unit/test_meta.py
-shade/tests/unit/test_network.py
-shade/tests/unit/test_object.py
-shade/tests/unit/test_operator_noauth.py
-shade/tests/unit/test_port.py
-shade/tests/unit/test_project.py
-shade/tests/unit/test_rebuild_server.py
-shade/tests/unit/test_security_groups.py
-shade/tests/unit/test_services.py
-shade/tests/unit/test_shade.py
-shade/tests/unit/test_shade_operator.py
-shade/tests/unit/test_stack.py
-shade/tests/unit/test_task_manager.py
-shade/tests/unit/test_users.py
-shade/tests/unit/test_volume.py
\ No newline at end of file
diff --git a/shade.egg-info/dependency_links.txt b/shade.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/shade.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/shade.egg-info/entry_points.txt b/shade.egg-info/entry_points.txt
deleted file mode 100644
index b93846b..0000000
--- a/shade.egg-info/entry_points.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-[console_scripts]
-shade-inventory = shade.cmd.inventory:main
-
diff --git a/shade.egg-info/not-zip-safe b/shade.egg-info/not-zip-safe
deleted file mode 100644
index 8b13789..0000000
--- a/shade.egg-info/not-zip-safe
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/shade.egg-info/pbr.json b/shade.egg-info/pbr.json
deleted file mode 100644
index 8434767..0000000
--- a/shade.egg-info/pbr.json
+++ /dev/null
@@ -1 +0,0 @@
-{"is_release": true, "git_version": "457ea84"}
\ No newline at end of file
diff --git a/shade.egg-info/requires.txt b/shade.egg-info/requires.txt
deleted file mode 100644
index d4351c5..0000000
--- a/shade.egg-info/requires.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-pbr>=0.11,<2.0
-munch
-decorator
-jsonpatch
-ipaddress
-os-client-config>=1.13.0
-requestsexceptions>=1.1.1
-six
-keystoneauth1>=1.0.0
-netifaces>=0.10.4
-python-novaclient>=2.21.0,!=2.27.0,!=2.32.0
-python-keystoneclient>=0.11.0
-python-glanceclient>=1.0.0
-python-cinderclient>=1.3.1
-python-neutronclient>=2.3.10
-python-troveclient>=1.2.0
-python-ironicclient>=0.10.0
-python-swiftclient>=2.5.0
-python-heatclient>=0.3.0
-dogpile.cache>=0.5.3
diff --git a/shade.egg-info/top_level.txt b/shade.egg-info/top_level.txt
deleted file mode 100644
index 52c5fb2..0000000
--- a/shade.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-shade

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-shade.git



More information about the Python-modules-commits mailing list