From a7e4f8f04c1b1cf83de4a4a45f75aefc15f8a6bf Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 16 Sep 2014 23:49:24 -0400 Subject: clients: update clients to juno b3 sync point Signed-off-by: Bruce Ashfield --- .../python/python-ceilometerclient_git.bb | 2 +- .../python/python-cinderclient_git.bb | 4 +-- .../python/python-heatclient_git.bb | 2 +- .../python/python-keystoneclient_git.bb | 4 +-- ...eutronclient-use-csv-flag-instead-of-json.patch | 33 ++++++++++------------ .../python/python-neutronclient_git.bb | 4 +-- .../python/python-novaclient_git.bb | 2 +- .../python/python-saharaclient_git.bb | 4 +-- .../python/python-swiftclient_git.bb | 4 +-- .../python/python-troveclient_git.bb | 4 +-- 10 files changed, 30 insertions(+), 33 deletions(-) (limited to 'meta-openstack/recipes-devtools') diff --git a/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb b/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb index a82344f..d134e5b 100644 --- a/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-ceilometerclient_git.bb @@ -26,7 +26,7 @@ SRC_URI = "\ " PV="1.0.10+git${SRCPV}" -SRCREV="5c8a85e3861c0e90ef63325956ca809edca5719a" +SRCREV="d4bada707b863c875b9f05a8c62c494a9a2f778d" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb b/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb index 442d365..c50b84f 100644 --- a/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb @@ -13,8 +13,8 @@ SRC_URI = "\ file://fix_cinderclient_memory_leak.patch \ " -PV="1.0.9+git${SRCPV}" -SRCREV="0c4010e7fbc9939905e8647afbe1358c384dc658" +PV="1.1.0+git${SRCPV}" +SRCREV="4c8464114f5539706cffc6888ce007d0d3ceba16" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb index a492ab5..6f70511 100644 --- a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb @@ -24,7 +24,7 @@ SRCNAME = "heatclient" SRC_URI = "git://github.com/openstack/python-heatclient.git;branch=master" PV="0.2.10+git${SRCPV}" -SRCREV="a98c1f3617604c4871263ff9cc986b27f302ef46" +SRCREV="95841b563340c494d8ef746261213c22e19c94ac" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb index d0e4569..e0c81db 100644 --- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb @@ -13,8 +13,8 @@ SRC_URI = "\ file://keystoneclient-fix-test-path-to-example-certificates.patch \ " -PV="0.9.0+git${SRCPV}" -SRCREV="679689f70748b1b28a14ecd29161f98881d80662" +PV="0.10.1+git${SRCPV}" +SRCREV="3305c7be4b726de4dcc889006d0be30eb46d3ad9" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-neutronclient/neutronclient-use-csv-flag-instead-of-json.patch b/meta-openstack/recipes-devtools/python/python-neutronclient/neutronclient-use-csv-flag-instead-of-json.patch index d9fade3..32541eb 100644 --- a/meta-openstack/recipes-devtools/python/python-neutronclient/neutronclient-use-csv-flag-instead-of-json.patch +++ b/meta-openstack/recipes-devtools/python/python-neutronclient/neutronclient-use-csv-flag-instead-of-json.patch @@ -17,11 +17,11 @@ Signed-off-by: Keith Holman neutronclient/tests/unit/test_cli20_network.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) -diff --git a/neutronclient/tests/unit/test_cli20_agents.py b/neutronclient/tests/unit/test_cli20_agents.py -index 1e75a92..ab01fb7 100644 ---- a/neutronclient/tests/unit/test_cli20_agents.py -+++ b/neutronclient/tests/unit/test_cli20_agents.py -@@ -25,7 +25,7 @@ class CLITestV20Agent(test_cli20.CLITestV20Base): +Index: git/neutronclient/tests/unit/test_cli20_agents.py +=================================================================== +--- git.orig/neutronclient/tests/unit/test_cli20_agents.py ++++ git/neutronclient/tests/unit/test_cli20_agents.py +@@ -25,7 +25,7 @@ def test_list_agents(self): contents = {'agents': [{'id': 'myname', 'agent_type': 'mytype', 'alive': True}]} @@ -30,7 +30,7 @@ index 1e75a92..ab01fb7 100644 resources = "agents" cmd = agent.ListAgent(test_cli20.MyApp(sys.stdout), None) -@@ -40,7 +40,7 @@ class CLITestV20Agent(test_cli20.CLITestV20Base): +@@ -40,7 +40,7 @@ def test_list_agents_field(self): contents = {'agents': [{'alive': True}]} @@ -39,28 +39,25 @@ index 1e75a92..ab01fb7 100644 resources = "agents" smile = ':-)' -diff --git a/neutronclient/tests/unit/test_cli20_network.py b/neutronclient/tests/unit/test_cli20_network.py -index 5e9be2a..eb562d0 100644 ---- a/neutronclient/tests/unit/test_cli20_network.py -+++ b/neutronclient/tests/unit/test_cli20_network.py -@@ -262,7 +262,7 @@ class CLITestV20NetworkJSON(test_cli20.CLITestV20Base): +Index: git/neutronclient/tests/unit/test_cli20_network.py +=================================================================== +--- git.orig/neutronclient/tests/unit/test_cli20_network.py ++++ git/neutronclient/tests/unit/test_cli20_network.py +@@ -267,7 +267,7 @@ fields_1=['a', 'b'], fields_2=['c', 'd']) def _test_list_nets_columns(self, cmd, returned_body, -- args=['-f', 'json']): -+ args=['-f', 'csv']): +- args=('-f', 'json')): ++ args=('-f', 'csv')): resources = 'networks' self.mox.StubOutWithMock(network.ListNetwork, "extend_list") network.ListNetwork.extend_list(mox.IsA(list), mox.IgnoreArg()) -@@ -275,7 +275,7 @@ class CLITestV20NetworkJSON(test_cli20.CLITestV20Base): +@@ -280,7 +280,7 @@ "tenant_id": "tenant_3", "subnets": []}]} self._test_list_nets_columns(cmd, returned_body, - args=['-f', 'json', '-c', 'id']) + args=['-f', 'csv', '-c', 'id']) _str = self.fake_stdout.make_string() - returned_networks = utils.loads(_str) + returned_networks = jsonutils.loads(_str) self.assertEqual(1, len(returned_networks)) --- -1.9.3 - diff --git a/meta-openstack/recipes-devtools/python/python-neutronclient_git.bb b/meta-openstack/recipes-devtools/python/python-neutronclient_git.bb index 1911fc3..b4e34e3 100644 --- a/meta-openstack/recipes-devtools/python/python-neutronclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-neutronclient_git.bb @@ -24,8 +24,8 @@ SRC_URI = "git://github.com/openstack/python-neutronclient.git;branch=master \ file://neutronclient-use-csv-flag-instead-of-json.patch \ " -PV="2.3.5+git${SRCPV}" -SRCREV="bfec80a776a53b554a8f2d023d2974539edef3ce" +PV="2.3.7+git${SRCPV}" +SRCREV="1452193f935f5be0bb2f5f01b54bd4947d27331b" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-novaclient_git.bb b/meta-openstack/recipes-devtools/python/python-novaclient_git.bb index 70cb39e..e8f5aa3 100644 --- a/meta-openstack/recipes-devtools/python/python-novaclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-novaclient_git.bb @@ -13,7 +13,7 @@ SRC_URI = "\ " PV="2.18.1+git${SRCPV}" -SRCREV="b21d6775685fc2ca9bd5c13e817343789d7ad6c5" +SRCREV="2a1c07e790cc95b1e847974e4c757f826507834f" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-saharaclient_git.bb b/meta-openstack/recipes-devtools/python/python-saharaclient_git.bb index 06d7583..6711c0e 100644 --- a/meta-openstack/recipes-devtools/python/python-saharaclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-saharaclient_git.bb @@ -17,8 +17,8 @@ SRCNAME = "saharaclient" SRC_URI = "git://github.com/openstack/python-saharaclient.git;branch=master" -PV="0.7.0+git${SRCPV}" -SRCREV="6531965b9719e4ea3a9986afa16daaf12fbba516" +PV="0.7.2+git${SRCPV}" +SRCREV="5be2179d8c5c1e806537849559bea52a1145028f" S = "${WORKDIR}/git" inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb b/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb index fe8cdae..03ed33f 100644 --- a/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-swiftclient_git.bb @@ -9,8 +9,8 @@ SRCNAME = "swiftclient" SRC_URI = "git://github.com/openstack/python-swiftclient.git;branch=master" -PV="2.1.0+git${SRCPV}" -SRCREV="4cc2201e21a68c61adc3ce572b979553b786fc0f" +PV="2.2.0+git${SRCPV}" +SRCREV="d13441d26244cc0947b85287d3fba298cb532c9a" S = "${WORKDIR}/git" inherit setuptools python-dir diff --git a/meta-openstack/recipes-devtools/python/python-troveclient_git.bb b/meta-openstack/recipes-devtools/python/python-troveclient_git.bb index 35f3320..28a649b 100644 --- a/meta-openstack/recipes-devtools/python/python-troveclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-troveclient_git.bb @@ -10,8 +10,8 @@ SRC_URI = "\ git://github.com/openstack/python-troveclient.git;branch=master \ " -PV="1.0.5+git${SRCPV}" -SRCREV="248aa8fdf801ca73834606239d3cdb3610993815" +PV="1.0.7+git${SRCPV}" +SRCREV="e010a919750f07493afd42a4db867853b925bcbf" S = "${WORKDIR}/git" inherit setuptools -- cgit v1.2.3-54-g00ecf