[GitHub] libcloud pull request #1101: Added AWS EC2 g3 instance types

2017-09-03 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/1101


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[1/2] libcloud git commit: Added AWS EC2 g3 instance types Closes #1101

2017-09-03 Thread anthonyshaw
Repository: libcloud
Updated Branches:
  refs/heads/trunk 8a9d3797d -> 110437e46


Added AWS EC2 g3 instance types
Closes #1101


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/81581b4e
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/81581b4e
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/81581b4e

Branch: refs/heads/trunk
Commit: 81581b4ef84eb14cf0de6d3cac28ca34503819fd
Parents: 8a9d379
Author: ZuluPro 
Authored: Sun Aug 13 06:13:02 2017 +0200
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:50:13 2017 +1000

--
 libcloud/compute/drivers/ec2.py   | 55 ++
 libcloud/test/compute/test_ec2.py |  8 ++---
 2 files changed, 59 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/81581b4e/libcloud/compute/drivers/ec2.py
--
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index 2a5ed4c..126d362 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -322,6 +322,42 @@ INSTANCE_TYPES = {
 'cpu': 32
 }
 },
+'g3.4xlarge': {
+'id': 'g3.4xlarge',
+'name': 'Cluster GPU G3 Four Extra Large Instance',
+'ram': GiB(122),
+'disk': 0,  # EBS only
+'bandwidth': None,
+'extra': {
+'cpu': 16,
+'gpu': 1,
+'gpu_ram': GiB(8)
+}
+},
+'g3.8xlarge': {
+'id': 'g3.8xlarge',
+'name': 'Cluster GPU G3 Eight Extra Large Instance',
+'ram': GiB(244),
+'disk': 0,  # EBS only
+'bandwidth': None,
+'extra': {
+'cpu': 32,
+'gpu': 2,
+'gpu_ram': GiB(16)
+}
+},
+'g3.16xlarge': {
+'id': 'g3.16xlarge',
+'name': 'Cluster GPU G3 16 Extra Large Instance',
+'ram': GiB(488),
+'disk': 0,  # EBS only
+'bandwidth': None,
+'extra': {
+'cpu': 64,
+'gpu': 4,
+'gpu_ram': GiB(32)
+}
+},
 'p2.xlarge': {
 'id': 'p2.xlarge',
 'name': 'Cluster GPU P2 Large Instance',
@@ -869,6 +905,9 @@ REGION_DETAILS = {
 'cg1.4xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'cr1.8xlarge',
 'hs1.8xlarge',
 'i2.xlarge',
@@ -933,6 +972,9 @@ REGION_DETAILS = {
 'c1.xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'c3.large',
 'c3.xlarge',
 'c3.2xlarge',
@@ -1012,6 +1054,9 @@ REGION_DETAILS = {
 'cg1.4xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'cr1.8xlarge',
 'hs1.8xlarge',
 'i2.xlarge',
@@ -1076,6 +1121,9 @@ REGION_DETAILS = {
 'c1.xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'p2.xlarge',
 'p2.8xlarge',
 'p2.16xlarge',
@@ -1153,6 +1201,9 @@ REGION_DETAILS = {
 'c1.xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'c3.large',
 'c3.xlarge',
 'c3.2xlarge',
@@ -1747,6 +1798,7 @@ REGION_DETAILS = {
 'x1.32xlarge'
 ]
 },
+# GovCloud Region
 'us-gov-west-1': {
 'endpoint': 'ec2.us-gov-west-1.amazonaws.com',
 'api_name': 'ec2_us_govwest',
@@ -1775,6 +1827,9 @@ REGION_DETAILS = {
 'c1.xlarge',
 'g2.2xlarge',
 'g2.8xlarge',
+'g3.4xlarge',
+'g3.8xlarge',
+'g3.16xlarge',
 'c3.large',
 'c3.xlarge',
 'c3.2xlarge',

http://git-wip-us.apache.org/repos/asf/libcloud/blob/81581b4e/libcloud/test/compute/test_ec2.py
--
diff --git a/libcloud/test/compute/test_ec2.py 
b/libcloud/test/compute/test_ec2.py
index 1fe4183..3209ac4 100644
--- a/libcloud/test/compute/test_ec2.py
+++ b/libcloud/test/compute/test_ec2.py
@@ -445,21 +445,21 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin):
 self.assertTrue('m2.4xlarge' in ids)
 
 if region_name == 'us-east-1':
-self.assertEqual(len(sizes), 67)
+self.assertEqual(len(sizes), 70)
 self.assertTrue

[2/2] libcloud git commit: changes for #1101

2017-09-03 Thread anthonyshaw
changes for #1101


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/110437e4
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/110437e4
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/110437e4

Branch: refs/heads/trunk
Commit: 110437e465e8dd56a615497fbe257790b0bbdccc
Parents: 81581b4
Author: Anthony Shaw 
Authored: Mon Sep 4 08:50:58 2017 +1000
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:50:58 2017 +1000

--
 CHANGES.rst | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/110437e4/CHANGES.rst
--
diff --git a/CHANGES.rst b/CHANGES.rst
index 84ddf99..75dbf52 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -7,6 +7,10 @@ Changes in current version of Apache Libcloud
 Compute
 ~~~
 
+- [EC2] add g3 instance types
+  [GITHUB-1101]
+  (@zulupro)
+
 - [EC2] add 'end' to ec2 reserved_node
   [GITHUB-1099]
   (@xofer)



[jira] [Commented] (LIBCLOUD-940) Add 'end' to ec2 Reserved Instance data

2017-09-03 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/LIBCLOUD-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16152000#comment-16152000
 ] 

ASF GitHub Bot commented on LIBCLOUD-940:
-

Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/1099


> Add 'end' to ec2 Reserved Instance data
> ---
>
> Key: LIBCLOUD-940
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-940
> Project: Libcloud
>  Issue Type: Improvement
>  Components: Compute
>Reporter: Chris Clarke
>
> The [DescribeReservedInstances 
> API|http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeReservedInstances.html]
>  returns 3 fields related to the timeframe of the reservation:
>   * start
>   * end
>   * duration
> When a reservation is modified, start changes to the effective date of the 
> modification, but duration remains the same (number of seconds in 1 or 3 
> years). The only way to determine when a modified reservation expires is to 
> use the end date.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[GitHub] libcloud pull request #1097: typo in documentation in libvirt provider

2017-09-03 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/1097


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] libcloud pull request #1099: [LIBCLOUD-940] Add 'end' to ec2 Reserved Instan...

2017-09-03 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/1099


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[1/3] libcloud git commit: typo in documentation

2017-09-03 Thread anthonyshaw
Repository: libcloud
Updated Branches:
  refs/heads/trunk 48bb90ee7 -> 8a9d3797d


typo in documentation

Smallest typo fix.
Closes #1097


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/dad12ee3
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/dad12ee3
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/dad12ee3

Branch: refs/heads/trunk
Commit: dad12ee3e6150697ad603bd91d6fb68cd89f51d3
Parents: 48bb90e
Author: Yaniv Kaul 
Authored: Tue Aug 29 18:55:58 2017 +0300
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:38:23 2017 +1000

--
 libcloud/compute/drivers/libvirt_driver.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/dad12ee3/libcloud/compute/drivers/libvirt_driver.py
--
diff --git a/libcloud/compute/drivers/libvirt_driver.py 
b/libcloud/compute/drivers/libvirt_driver.py
index a914c5e..f2ccfc5 100644
--- a/libcloud/compute/drivers/libvirt_driver.py
+++ b/libcloud/compute/drivers/libvirt_driver.py
@@ -411,7 +411,7 @@ class LibvirtNodeDriver(NodeDriver):
 Sets up the regexp for parsing out IP addresses from the 'ip neighbor'
 command and pass it along to the parser function.
 
-:return: Dictionary from the parsing funtion
+:return: Dictionary from the parsing function
 :rtype: ``dict``
 """
 ip_regex = re.compile('(.*?)\s+.*lladdr\s+(.*?)\s+')



[2/3] libcloud git commit: add 'end' to ec2 reserved_node Closes #1099

2017-09-03 Thread anthonyshaw
add 'end' to ec2 reserved_node
Closes #1099


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/d47adca1
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/d47adca1
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/d47adca1

Branch: refs/heads/trunk
Commit: d47adca1be13aceb909217104f061d89c1d99da1
Parents: dad12ee
Author: xofer 
Authored: Wed Aug 30 16:15:48 2017 -0400
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:40:31 2017 +1000

--
 libcloud/compute/drivers/ec2.py  | 4 
 .../test/compute/fixtures/ec2/describe_reserved_instances.xml| 1 +
 libcloud/test/compute/test_ec2.py| 1 +
 3 files changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/d47adca1/libcloud/compute/drivers/ec2.py
--
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index f2526b0..2a5ed4c 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -2765,6 +2765,10 @@ RESOURCE_EXTRA_ATTRIBUTES_MAP = {
 'xpath': 'start',
 'transform_func': str
 },
+'end': {
+'xpath': 'end',
+'transform_func': str
+},
 'duration': {
 'xpath': 'duration',
 'transform_func': int

http://git-wip-us.apache.org/repos/asf/libcloud/blob/d47adca1/libcloud/test/compute/fixtures/ec2/describe_reserved_instances.xml
--
diff --git a/libcloud/test/compute/fixtures/ec2/describe_reserved_instances.xml 
b/libcloud/test/compute/fixtures/ec2/describe_reserved_instances.xml
index 29d7f3f..6c5ac71 100644
--- a/libcloud/test/compute/fixtures/ec2/describe_reserved_instances.xml
+++ b/libcloud/test/compute/fixtures/ec2/describe_reserved_instances.xml
@@ -6,6 +6,7 @@
 t1.micro
 us-east-1b
 2013-06-18T12:07:53.161Z
+2014-06-18T12:07:53.161Z
 31536000
 23.0
 0.012

http://git-wip-us.apache.org/repos/asf/libcloud/blob/d47adca1/libcloud/test/compute/test_ec2.py
--
diff --git a/libcloud/test/compute/test_ec2.py 
b/libcloud/test/compute/test_ec2.py
index f8a2687..1fe4183 100644
--- a/libcloud/test/compute/test_ec2.py
+++ b/libcloud/test/compute/test_ec2.py
@@ -282,6 +282,7 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin):
 self.assertEqual(node.extra['instance_type'], 't1.micro')
 self.assertEqual(node.extra['availability'], 'us-east-1b')
 self.assertEqual(node.extra['start'], '2013-06-18T12:07:53.161Z')
+self.assertEqual(node.extra['end'], '2014-06-18T12:07:53.161Z')
 self.assertEqual(node.extra['duration'], 31536000)
 self.assertEqual(node.extra['usage_price'], 0.012)
 self.assertEqual(node.extra['fixed_price'], 23.0)



[3/3] libcloud git commit: "changes for #1099""

2017-09-03 Thread anthonyshaw
"changes for #1099""


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/8a9d3797
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/8a9d3797
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/8a9d3797

Branch: refs/heads/trunk
Commit: 8a9d3797d08b98378ee1a5909381429ed449b872
Parents: d47adca
Author: Anthony Shaw 
Authored: Mon Sep 4 08:41:47 2017 +1000
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:41:47 2017 +1000

--
 CHANGES.rst | 10 ++
 1 file changed, 10 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/8a9d3797/CHANGES.rst
--
diff --git a/CHANGES.rst b/CHANGES.rst
index 92ee3df..84ddf99 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,16 @@
 Changelog
 =
 
+Changes in current version of Apache Libcloud
+-
+
+Compute
+~~~
+
+- [EC2] add 'end' to ec2 reserved_node
+  [GITHUB-1099]
+  (@xofer)
+
 Changes in Apache Libcloud 2.2.0
 
 



[GitHub] libcloud pull request #1096: test: check that secrets.py is up-to-date

2017-09-03 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/libcloud/pull/1096


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


libcloud git commit: test: check that secrets.py is up-to-date Closes #1096

2017-09-03 Thread anthonyshaw
Repository: libcloud
Updated Branches:
  refs/heads/trunk 50995f444 -> 48bb90ee7


test: check that secrets.py is up-to-date
Closes #1096


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/48bb90ee
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/48bb90ee
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/48bb90ee

Branch: refs/heads/trunk
Commit: 48bb90ee7c514c0f580e509894076964e02c09cb
Parents: 50995f4
Author: Quentin Pradet 
Authored: Tue Aug 29 15:53:24 2017 +0400
Committer: Anthony Shaw 
Committed: Mon Sep 4 08:35:59 2017 +1000

--
 libcloud/test/conftest.py | 25 +
 1 file changed, 25 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/48bb90ee/libcloud/test/conftest.py
--
diff --git a/libcloud/test/conftest.py b/libcloud/test/conftest.py
new file mode 100644
index 000..505c570
--- /dev/null
+++ b/libcloud/test/conftest.py
@@ -0,0 +1,25 @@
+import os.path
+import pytest
+
+
+def pytest_configure(config):
+"""Check that secrets.py is valid"""
+
+this_dir = os.path.abspath(os.path.split(__file__)[0])
+secrets_current = os.path.join(this_dir, 'secrets.py')
+secrets_dist = os.path.join(this_dir, 'secrets.py-dist')
+
+if not os.path.isfile(secrets_current):
+print("Missing " + secrets_current)
+print("Maybe you forgot to copy it from -dist:")
+print("cp libcloud/test/secrets.py-dist libcloud/test/secrets.py")
+pytest.exit('')
+
+mtime_current = os.path.getmtime(secrets_current)
+mtime_dist = os.path.getmtime(secrets_dist)
+
+if mtime_dist > mtime_current:
+print("It looks like test/secrets.py file is out of date.")
+print("Please copy the new secrets.py-dist file over otherwise" +
+  " tests might fail")
+pytest.exit('')



svn commit: r21423 - /release/libcloud/

2017-09-03 Thread anthonyshaw
Author: anthonyshaw
Date: Sun Sep  3 21:36:07 2017
New Revision: 21423

Log:
release bits for 2.2.0

Added:
release/libcloud/apache-libcloud-2.2.0.tar.bz2   (with props)
release/libcloud/apache-libcloud-2.2.0.tar.bz2.asc
release/libcloud/apache-libcloud-2.2.0.tar.bz2.md5
release/libcloud/apache-libcloud-2.2.0.tar.bz2.sha1
release/libcloud/apache-libcloud-2.2.0.tar.gz   (with props)
release/libcloud/apache-libcloud-2.2.0.tar.gz.asc
release/libcloud/apache-libcloud-2.2.0.tar.gz.md5
release/libcloud/apache-libcloud-2.2.0.tar.gz.sha1
release/libcloud/apache-libcloud-2.2.0.zip   (with props)
release/libcloud/apache-libcloud-2.2.0.zip.asc
release/libcloud/apache-libcloud-2.2.0.zip.md5
release/libcloud/apache-libcloud-2.2.0.zip.sha1
release/libcloud/apache_libcloud-2.2.0-py2.py3-none-any.whl   (with props)
release/libcloud/apache_libcloud-2.2.0-py2.py3-none-any.whl.asc
release/libcloud/apache_libcloud-2.2.0-py2.py3-none-any.whl.md5
release/libcloud/apache_libcloud-2.2.0-py2.py3-none-any.whl.sha1

Added: release/libcloud/apache-libcloud-2.2.0.tar.bz2
==
Binary file - no diff available.

Propchange: release/libcloud/apache-libcloud-2.2.0.tar.bz2
--
svn:mime-type = application/octet-stream

Added: release/libcloud/apache-libcloud-2.2.0.tar.bz2.asc
==
--- release/libcloud/apache-libcloud-2.2.0.tar.bz2.asc (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.bz2.asc Sun Sep  3 21:36:07 2017
@@ -0,0 +1,10 @@
+-BEGIN PGP SIGNATURE-
+
+iQEcBAABCgAGBQJZpNXLAAoJEKtKGa4c6FdEeMgIAKidFrs7pikOm6wsdfuQieqT
+Uq5IHcs9WaHjcJ78eUAdaYFG7q0OjTrLRuodKPe6ECwBhRKzaiwg0VWzKuaXHi8b
+SwSF2fuCpp5ar0iV8xOyGvxaSPef8v5TXZjJyzH+Gm57bf3CmuZMDaaa0l6GV7Ne
+DZQOGk+6I7BvzCoqnat1EbXMUfZgK6k6BMr2/7QMfDOMDS0pLvlzsEtpM2x/0smk
+E0OyjHnHTl/CIAECR6IPJLjbMENQZyM8CVHSd86TssyNhXuDIFoSIElQCD492hro
++8AeC+dZ9NK/GG3tXkjyq8kRLFzKxUf1RIwaMdbx13cf3gZYU/V33amoOBpHyY0=
+=eHdm
+-END PGP SIGNATURE-

Added: release/libcloud/apache-libcloud-2.2.0.tar.bz2.md5
==
--- release/libcloud/apache-libcloud-2.2.0.tar.bz2.md5 (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.bz2.md5 Sun Sep  3 21:36:07 2017
@@ -0,0 +1 @@
+5ea5837a1cfa0b73e96e0f3a19afe4ef *apache-libcloud-2.2.0.tar.bz2

Added: release/libcloud/apache-libcloud-2.2.0.tar.bz2.sha1
==
--- release/libcloud/apache-libcloud-2.2.0.tar.bz2.sha1 (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.bz2.sha1 Sun Sep  3 21:36:07 2017
@@ -0,0 +1 @@
+e2b5f02791ee5ac935dbe8c8884391d63f33f776 *apache-libcloud-2.2.0.tar.bz2

Added: release/libcloud/apache-libcloud-2.2.0.tar.gz
==
Binary file - no diff available.

Propchange: release/libcloud/apache-libcloud-2.2.0.tar.gz
--
svn:mime-type = application/octet-stream

Added: release/libcloud/apache-libcloud-2.2.0.tar.gz.asc
==
--- release/libcloud/apache-libcloud-2.2.0.tar.gz.asc (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.gz.asc Sun Sep  3 21:36:07 2017
@@ -0,0 +1,10 @@
+-BEGIN PGP SIGNATURE-
+
+iQEcBAABCgAGBQJZpNXLAAoJEKtKGa4c6FdE1eIIALPuW/VISgfB/tIwW0MOU95E
+L8zQoQsAMBrCeQbDmTieitnQjyFSgVJUnrECCmxlvu4DwAXllPzX7S1ALBaSdQXx
+D0gU17Rn05CbwZ0HRt/IwpQ2fosrw+zeFkQBKGiaKxdLz/jyxLihCwr3iThfYa/m
+VCpaHCXHb0SDXsHeKre1+X5MfkLmkBV83DgQUsQauAEM2YsTKfU+KR1LV+XfRxgH
+Nz6xAIe1ax7v5YS6KvkUSg6iMEI4tDyg9q//FodB/7hfzgN+PF/dJcAbcnFBORrf
+X2pBJhVdngSiaf+pWIVCV1qM1RJKClULfcD88lddfqgdGo/tq0ZWJY6fiFQ5tpY=
+=P1LX
+-END PGP SIGNATURE-

Added: release/libcloud/apache-libcloud-2.2.0.tar.gz.md5
==
--- release/libcloud/apache-libcloud-2.2.0.tar.gz.md5 (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.gz.md5 Sun Sep  3 21:36:07 2017
@@ -0,0 +1 @@
+e0f1450fd86c14398173ad65c68d439f *apache-libcloud-2.2.0.tar.gz

Added: release/libcloud/apache-libcloud-2.2.0.tar.gz.sha1
==
--- release/libcloud/apache-libcloud-2.2.0.tar.gz.sha1 (added)
+++ release/libcloud/apache-libcloud-2.2.0.tar.gz.sha1 Sun Sep  3 21:36:07 2017
@@ -0,0 +1 @@
+a7954c86014ec0f23cf4afff7c5d6f9b28c1c5d0 *apache-libcloud-2.2.0.tar.gz

Added: release/libcloud/apache-libcloud-2.2.0.zip
==
Binary file - no diff available.

Propchange: release/libcloud/apache-libcloud-2.2.0.zip
---

[1/2] libcloud git commit: update doap for 2.2.0 release

2017-09-03 Thread anthonyshaw
Repository: libcloud
Updated Branches:
  refs/heads/trunk 6e1c40654 -> 50995f444


update doap for 2.2.0 release


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/75ef0c1f
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/75ef0c1f
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/75ef0c1f

Branch: refs/heads/trunk
Commit: 75ef0c1fe0ced25ab24b3af7c9307f7c4706307e
Parents: 6e1c406
Author: Anthony Shaw 
Authored: Mon Sep 4 07:32:13 2017 +1000
Committer: Anthony Shaw 
Committed: Mon Sep 4 07:32:13 2017 +1000

--
 doap_libcloud.rdf | 7 +++
 1 file changed, 7 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/75ef0c1f/doap_libcloud.rdf
--
diff --git a/doap_libcloud.rdf b/doap_libcloud.rdf
index 2c8341c..815feed 100644
--- a/doap_libcloud.rdf
+++ b/doap_libcloud.rdf
@@ -364,6 +364,13 @@
 v2.1.0
   
   
+  
+  
+2.2.0
+2017-09-04
+v2.2.0
+  
+  
 
   
 https://svn.apache.org/repos/asf/libcloud/trunk/"/>



[2/2] libcloud git commit: update gitignore for virtualenv

2017-09-03 Thread anthonyshaw
update gitignore for virtualenv


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/50995f44
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/50995f44
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/50995f44

Branch: refs/heads/trunk
Commit: 50995f4441eba0ce06f89773939c1d9d6a85d6e5
Parents: 75ef0c1
Author: Anthony Shaw 
Authored: Mon Sep 4 07:33:37 2017 +1000
Committer: Anthony Shaw 
Committed: Mon Sep 4 07:33:37 2017 +1000

--
 .gitignore | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/libcloud/blob/50995f44/.gitignore
--
diff --git a/.gitignore b/.gitignore
index e5db6ec..36902da 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,9 @@ apache_libcloud.egg-info/
 .eggs/
 .cache/
 .vscode/
+.Python
+bin/
+include/
+lib/
+pip-selfcheck.json
+report.html



[libcloud] Git Push Summary

2017-09-03 Thread anthonyshaw
Repository: libcloud
Updated Tags:  refs/tags/v2.2.0 [created] 250299f2d