[pkg-eucalyptus-commits] [SCM] managing cloud instances for Eucalyptus branch, master, updated. 3.0.0-alpha3-257-g1da8e3a

Garrett Holmstrom gholms at fedoraproject.org
Sun Jun 16 02:29:40 UTC 2013


The following commit has been merged in the master branch:
commit d8ec417abf6183ace0e7bf03de4bb0a87b85f78e
Author: Garrett Holmstrom <gholms at fedoraproject.org>
Date:   Sat Apr 14 13:44:21 2012 -0700

    Add basic requestbuilder bits

diff --git a/euca2ools/__init__.py b/euca2ools/__init__.py
index 04fbb97..fc6875d 100644
--- a/euca2ools/__init__.py
+++ b/euca2ools/__init__.py
@@ -1,7 +1,6 @@
-# -*- coding: utf-8 -*-
 # Software License Agreement (BSD License)
 #
-# Copyright (c) 2009-2011, Eucalyptus Systems, Inc.
+# Copyright (c) 2009-2012, Eucalyptus Systems, Inc.
 # All rights reserved.
 #
 # Redistribution and use of this software in source and binary forms, with or
@@ -33,4 +32,4 @@
 #       : Mitch Garnaat mgarnaat at eucalyptus.com
 
 __version__  = 'devel'
-__codename__ = 'Stencil'
+__codename__ = 'Sparta'
diff --git a/euca2ools/commands/__init__.py b/euca2ools/commands/__init__.py
index f5a354d..71ba8c8 100644
--- a/euca2ools/commands/__init__.py
+++ b/euca2ools/commands/__init__.py
@@ -1,6 +1,6 @@
 # Software License Agreement (BSD License)
 #
-# Copyright (c) 2009-2011, Eucalyptus Systems, Inc.
+# Copyright (c) 2009-2012, Eucalyptus Systems, Inc.
 # All rights reserved.
 #
 # Redistribution and use of this software in source and binary forms, with or
@@ -27,7 +27,13 @@
 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 # POSSIBILITY OF SUCH DAMAGE.
-#
-# Author: Neil Soman neil at eucalyptus.com
-#         Mitch Garnaat mgarnaat at eucalyptus.com
 
+import requestbuilder.command
+import requestbuilder.request
+from .. import __version__, __codename__
+
+class Euca2oolsCommand(requestbuilder.command.BaseCommand):
+    Version = 'euca2ools {0} ({1})'.format(__version__, __codename__)
+
+class Euca2oolsRequest(Euca2oolsCommand, requestbuilder.request.BaseRequest):
+    pass

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list