Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-openstackclient for
openSUSE:Factory checked in at 2022-06-19 21:11:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-openstackclient (Old)
and /work/SRC/openSUSE:Factory/.python-openstackclient.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-openstackclient"
Sun Jun 19 21:11:35 2022 rev:25 rq:983692 version:5.6.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-openstackclient/python-openstackclient.changes
2021-12-13 20:50:52.792653479 +0100
+++
/work/SRC/openSUSE:Factory/.python-openstackclient.new.1548/python-openstackclient.changes
2022-06-19 21:11:53.754218220 +0200
@@ -1,0 +2,5 @@
+Sun Jun 19 11:35:22 UTC 2022 - [email protected]
+
+- added 0001-Skip-original_name-from-flavor-info.patch
+
+-------------------------------------------------------------------
New:
----
0001-Skip-original_name-from-flavor-info.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-openstackclient.spec ++++++
--- /var/tmp/diff_new_pack.EiJPKm/_old 2022-06-19 21:11:54.210218899 +0200
+++ /var/tmp/diff_new_pack.EiJPKm/_new 2022-06-19 21:11:54.214218905 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-openstackclient
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,8 @@
Group: Development/Languages/Python
URL: https://docs.openstack.org/python-openstackclient
Source0:
https://files.pythonhosted.org/packages/source/p/python-openstackclient/python-openstackclient-5.6.0.tar.gz
+# https://review.opendev.org/c/openstack/python-openstackclient/+/824733
+Patch1: 0001-Skip-original_name-from-flavor-info.patch
BuildRequires: openstack-macros
BuildRequires: python3-cinderclient >= 3.3.0
BuildRequires: python3-cliff >= 3.5.0
@@ -31,9 +33,8 @@
BuildRequires: python3-fixtures
BuildRequires: python3-glanceclient
BuildRequires: python3-keystoneclient >= 3.22.0
-BuildRequires: python3-mock
BuildRequires: python3-novaclient >= 17.0.0
-BuildRequires: python3-openstacksdk >= 0.56.0
+BuildRequires: python3-openstacksdk >= 0.61.0
BuildRequires: python3-os-client-config
BuildRequires: python3-osc-lib >= 2.3.0
BuildRequires: python3-oslotest
@@ -62,11 +63,10 @@
Requires: python3-keystoneauth1
Requires: python3-keystoneclient >= 3.22.0
Requires: python3-novaclient >= 17.0.0
-Requires: python3-openstacksdk >= 0.56.0
+Requires: python3-openstacksdk >= 0.61.0
Requires: python3-osc-lib >= 2.3.0
Requires: python3-oslo.i18n >= 3.15.3
Requires: python3-oslo.utils >= 3.33.0
-Requires: python3-six
%if 0%{?suse_version}
Obsoletes: python2-openstackclient < 4.0.0
%endif
++++++ 0001-Skip-original_name-from-flavor-info.patch ++++++
>From f461af0ac801f80668176afc68d2b13b6f6a8bbc Mon Sep 17 00:00:00 2001
From: Artem Goncharov <[email protected]>
Date: Fri, 14 Jan 2022 17:37:59 +0100
Subject: [PATCH] Skip original_name from flavor info
In the new SDK we are going to add additional parameter to the flavor
which make no use for OSC. Exclude it explicitly since it also cause
failing tests.
Change-Id: Ie35e60498cf18f05c878611df6f88607a04b1870
---
openstackclient/compute/v2/flavor.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/openstackclient/compute/v2/flavor.py
b/openstackclient/compute/v2/flavor.py
index a55aba2a..8a9eb07a 100644
--- a/openstackclient/compute/v2/flavor.py
+++ b/openstackclient/compute/v2/flavor.py
@@ -48,7 +48,7 @@ def _get_flavor_columns(item):
'is_public': 'os-flavor-access:is_public'
}
- hidden_columns = ['links', 'location']
+ hidden_columns = ['links', 'location', 'original_name']
return utils.get_osc_show_columns_for_sdk_resource(
item, column_map, hidden_columns)
--
2.36.1