1
0

- removed 0001-baremetal-Add-support-for-mkisofs-and-xorrisofs-for-.patch

- removed 0001-add-python-3.7-unit-test-job.patch
- update to version 0.36.0
  - Fix image create with tags
  - Handle oslo.config exceptions in from_conf
  - baremetal: raise more specific ResourceFailure in wait_for_* methods
  - Adding dns_domain parameter into create_network
  - Support deleting all routes in update_router
  - DRY test_connection
  - Return None from get_server_by_id on 404
  - Replace nodepool func jobs
  - Add support for generating form-post signatures
  - Update master for stable/stein
  - Properly convert baremetal fields to server-side values
  - Actually pass on network_data when building configdrive
  - Add support for global_request_id
  - baremetal.configdrive: tolerate user_data as a string
  - Add support for vendor hooks
  - Cap sphinx for py2 to match global requirements
  - Allow replacing service implementation
  - Fix some typos
  - Fix typo for subnet.py
  - Link to baremetal API reference from patch_node
  - Allow limiting Connection service_types from oslo.config
  - Add a fields meta_data to result of Senlin API
  - Make PATCH a first class operation and support it for baremetal
  - Switch cloud layer to use proxy for DNS
  - Remove Accept header with empty value for HEAD and DELETE requests
  - Bump keystoneauth1 minimum to 3.16.0
  - Enable ansible module test for keypair to check return data

OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-openstacksdk?expand=0&rev=34
This commit is contained in:
2019-10-09 12:55:36 +00:00
committed by Git OBS Bridge
parent 2cd40c46cd
commit 59bc2715c8
7 changed files with 181 additions and 153 deletions

View File

@@ -17,17 +17,13 @@
Name: python-openstacksdk
Version: 0.27.0
Version: 0.36.0
Release: 0
Summary: An SDK for building applications to work with OpenStack
License: Apache-2.0
Group: Development/Languages/Python
URL: https://launchpad.net/openstacksdk
Source0: https://files.pythonhosted.org/packages/source/o/openstacksdk/openstacksdk-0.27.0.tar.gz
# https://review.openstack.org/#/c/651119/
Patch0: 0001-add-python-3.7-unit-test-job.patch
# https://review.openstack.org/#/c/651193/
Patch1: 0001-baremetal-Add-support-for-mkisofs-and-xorrisofs-for-.patch
Source0: https://files.pythonhosted.org/packages/source/o/openstacksdk/openstacksdk-0.36.0.tar.gz
BuildRequires: openstack-macros
BuildRequires: python-devel
BuildRequires: python2-PyYAML >= 3.12
@@ -43,17 +39,19 @@ BuildRequires: python2-ipaddress >= 1.0.17
BuildRequires: python2-jmespath >= 0.9.0
BuildRequires: python2-jsonpatch >= 1.16
BuildRequires: python2-jsonschema
BuildRequires: python2-keystoneauth1 >= 3.13.0
BuildRequires: python2-keystoneauth1 >= 3.16.0
BuildRequires: python2-mock
BuildRequires: python2-munch >= 2.1.0
BuildRequires: python2-netifaces >= 0.10.4
BuildRequires: python2-os-service-types >= 1.2.0
BuildRequires: python2-os-service-types >= 1.7.0
BuildRequires: python2-oslo.config
BuildRequires: python2-oslotest
BuildRequires: python2-pbr >= 2.0.0
BuildRequires: python2-python-subunit
BuildRequires: python2-requests-mock
BuildRequires: python2-requestsexceptions >= 1.2.0
BuildRequires: python2-six >= 1.10.0
BuildRequires: python2-statsd
BuildRequires: python2-stestr
BuildRequires: python2-stevedore
BuildRequires: python2-testscenarios
@@ -70,17 +68,19 @@ BuildRequires: python3-fixtures
BuildRequires: python3-jmespath >= 0.9.0
BuildRequires: python3-jsonpatch >= 1.16
BuildRequires: python3-jsonschema
BuildRequires: python3-keystoneauth1 >= 3.13.0
BuildRequires: python3-keystoneauth1 >= 3.16.0
BuildRequires: python3-mock
BuildRequires: python3-munch >= 2.1.0
BuildRequires: python3-netifaces >= 0.10.4
BuildRequires: python3-os-service-types >= 1.2.0
BuildRequires: python3-os-service-types >= 1.7.0
BuildRequires: python3-oslo.config
BuildRequires: python3-oslotest
BuildRequires: python3-pbr >= 2.0.0
BuildRequires: python3-python-subunit
BuildRequires: python3-requests-mock
BuildRequires: python3-requestsexceptions >= 1.2.0
BuildRequires: python3-six >= 1.10.0
BuildRequires: python3-statsd
BuildRequires: python3-stestr
BuildRequires: python3-stevedore
BuildRequires: python3-testscenarios
@@ -93,10 +93,10 @@ Requires: python-dogpile.cache >= 0.6.2
Requires: python-iso8601 >= 0.1.11
Requires: python-jmespath >= 0.9.0
Requires: python-jsonpatch >= 1.16
Requires: python-keystoneauth1 >= 3.13.0
Requires: python-keystoneauth1 >= 3.16.0
Requires: python-munch >= 2.1.0
Requires: python-netifaces >= 0.10.4
Requires: python-os-service-types >= 1.2.0
Requires: python-os-service-types >= 1.7.0
Requires: python-requestsexceptions >= 1.2.0
Requires: python-six >= 1.10.0
BuildArch: noarch
@@ -105,9 +105,18 @@ Requires: python-futures >= 3.0.0
Requires: python-ipaddress >= 1.0.17
%endif
%if 0%{?suse_version}
# RDO does not package prometheus_client
BuildRequires: python2-prometheus_client
BuildRequires: python3-prometheus_client
Requires(post): update-alternatives
Requires(postun): update-alternatives
%if 0%{?sle_version} >= 150000
Requires: mkisofs
%else
Requires: genisoimage
%endif
%else
Requires: genisoimage
# on RDO, update-alternatives is in chkconfig
Requires(post): chkconfig
Requires(postun): chkconfig
@@ -124,8 +133,8 @@ documentation, examples, and tools.
%package -n python-openstacksdk-doc
Summary: %{summary} - Documentation
Group: Documentation/HTML
BuildRequires: python-Sphinx
BuildRequires: python-openstackdocstheme
BuildRequires: python3-Sphinx
BuildRequires: python3-openstackdocstheme
Requires: %{name} = %{version}
%description -n python-openstacksdk-doc
@@ -139,14 +148,18 @@ The openstacksdk is a collection of libraries for building
applications to work with OpenStack clouds.
%prep
%autosetup -p1 -n openstacksdk-0.27.0
%autosetup -p1 -n openstacksdk-0.36.0
%py_req_cleanup
sed -i -e 's,coverage.*,,' test-requirements.txt || true
sed -i -e "s,'sphinx.ext.intersphinx'\,,," doc/source/conf.py
%if !0%{?suse_version}
# RDO does not package prometheus_client
rm openstack/tests/unit/test_stats.py
%endif
%build
%python_build
PBR_VERSION=0.27.0 sphinx-build -b html doc/source doc/build/html
PBR_VERSION=0.36.0 %sphinx_build -b html doc/source doc/build/html
rm -rf doc/build/html/.{doctrees,buildinfo}
%install
@@ -161,6 +174,7 @@ rm -rf doc/build/html/.{doctrees,buildinfo}
%check
export OS_LOG_CAPTURE=true
export OS_TEST_TIMEOUT=30
%python_exec -m stestr.cli run
%files %{python_files}