!10 Init with 3.1.2 to support Train
From: @huangtianhua Reviewed-by: @xiyuanwang Signed-off-by: @xiyuanwang
This commit is contained in:
commit
2ba0816112
BIN
python-ironicclient-3.1.2.tar.gz
Normal file
BIN
python-ironicclient-3.1.2.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
@ -1,11 +1,11 @@
|
||||
%global _empty_manifest_terminate_build 0
|
||||
Name: python-ironicclient
|
||||
Version: 4.6.1
|
||||
Release: 2
|
||||
Version: 3.1.2
|
||||
Release: 1
|
||||
Summary: OpenStack Bare Metal Provisioning API Client Library
|
||||
License: Apache-2.0
|
||||
URL: https://docs.openstack.org/python-ironicclient/latest/
|
||||
Source0: https://files.pythonhosted.org/packages/89/35/ff0ffe2885dbbbb5e80b6489242708d8a07197b81fa8fcad79f65076b9af/python-ironicclient-4.6.1.tar.gz
|
||||
Source0: https://files.pythonhosted.org/packages/6c/86/7cae0a20eb15fb7263d42ec431a4969247bce3efcb4f2e66e24bf98072b1/python-ironicclient-3.1.2.tar.gz
|
||||
BuildArch: noarch
|
||||
%description
|
||||
This is a client for the OpenStack Bare Metal API.
|
||||
@ -20,52 +20,62 @@ BuildRequires: python3-pbr
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-wheel
|
||||
# General requires
|
||||
BuildRequires: python3-pyyaml
|
||||
BuildRequires: python3-appdirs
|
||||
BuildRequires: python3-cliff
|
||||
BuildRequires: python3-dogpile-cache
|
||||
BuildRequires: python3-jsonschema
|
||||
BuildRequires: python3-keystoneauth1
|
||||
BuildRequires: python3-openstacksdk
|
||||
BuildRequires: python3-osc-lib
|
||||
BuildRequires: python3-oslo-config
|
||||
BuildRequires: python3-oslo-i18n
|
||||
BuildRequires: python3-oslo-serialization
|
||||
BuildRequires: python3-oslo-utils
|
||||
BuildRequires: python3-pyyaml
|
||||
BuildRequires: python3-requests
|
||||
BuildRequires: python3-stevedore
|
||||
BuildRequires: python3-six
|
||||
BuildRequires: python3-openstackclient
|
||||
# Tests running requires
|
||||
BuildRequires: python3-hacking
|
||||
BuildRequires: python3-coverage
|
||||
BuildRequires: python3-ddt
|
||||
BuildRequires: python3-doc8
|
||||
BuildRequires: python3-fixtures
|
||||
BuildRequires: python3-oslotest
|
||||
BuildRequires: python3-openstackclient
|
||||
BuildRequires: python3-requests-mock
|
||||
BuildRequires: python3-stestr
|
||||
BuildRequires: python3-tempest
|
||||
BuildRequires: python3-mock
|
||||
BuildRequires: python3-babel
|
||||
BuildRequires: python3-oslotest
|
||||
BuildRequires: python3-testtools
|
||||
BuildRequires: python3-tempest
|
||||
BuildRequires: python3-stestr
|
||||
BuildRequires: python3-ddt
|
||||
BuildRequires: python3-openstackclient
|
||||
# General requires
|
||||
Requires: python3-pyyaml
|
||||
Requires: python3-pbr
|
||||
Requires: python3-appdirs
|
||||
Requires: python3-cliff
|
||||
Requires: python3-dogpile-cache
|
||||
Requires: python3-jsonschema
|
||||
Requires: python3-keystoneauth1
|
||||
Requires: python3-openstacksdk
|
||||
Requires: python3-osc-lib
|
||||
Requires: python3-oslo-config
|
||||
Requires: python3-oslo-i18n
|
||||
Requires: python3-oslo-serialization
|
||||
Requires: python3-oslo-utils
|
||||
Requires: python3-pbr
|
||||
Requires: python3-pyyaml
|
||||
Requires: python3-requests
|
||||
Requires: python3-stevedore
|
||||
Requires: python3-six
|
||||
Requires: python3-openstackclient
|
||||
# Tests running requires
|
||||
Requires: python3-hacking
|
||||
Requires: python3-coverage
|
||||
Requires: python3-ddt
|
||||
Requires: python3-doc8
|
||||
Requires: python3-fixtures
|
||||
Requires: python3-oslotest
|
||||
Requires: python3-openstackclient
|
||||
Requires: python3-requests-mock
|
||||
Requires: python3-stestr
|
||||
Requires: python3-tempest
|
||||
Requires: python3-mock
|
||||
Requires: python3-babel
|
||||
Requires: python3-oslotest
|
||||
Requires: python3-testtools
|
||||
Requires: python3-tempest
|
||||
Requires: python3-stestr
|
||||
Requires: python3-ddt
|
||||
Requires: python3-openstackclient
|
||||
%description -n python3-ironicclient
|
||||
This is a client for the OpenStack Bare Metal API.
|
||||
|
||||
@ -76,14 +86,14 @@ Provides: python3-ironicclient-doc
|
||||
This is a client for the OpenStack Bare Metal API.
|
||||
|
||||
%prep
|
||||
%autosetup -n python-ironicclient-4.6.1
|
||||
%autosetup -n python-ironicclient-%{version}
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||
@ -110,20 +120,12 @@ popd
|
||||
mv %{buildroot}/filelist.lst .
|
||||
mv %{buildroot}/doclist.lst .
|
||||
|
||||
%check
|
||||
%{__python3} setup.py test
|
||||
|
||||
%files -n python3-ironicclient -f filelist.lst
|
||||
%dir %{python3_sitelib}/*
|
||||
|
||||
|
||||
%files help -f doclist.lst
|
||||
%{_docdir}/*
|
||||
|
||||
%changelog
|
||||
* Fri Aug 13 2021 wangxiyuan <wangxiyuan1007@gmail.com> - 4.6.1-2
|
||||
- Drop osc-lib-test requirement
|
||||
* Tue Jul 13 2021 OpenStack_SIG <openstack@openeuler.org> - 4.6.1-1
|
||||
- Update to 4.6.1
|
||||
* Thu Jan 12 2021 Python_Bot <Python_Bot@openeuler.org>
|
||||
- Package Spec generated
|
||||
* Mon Nov 08 2021 OpenStack_SIG <openstack@openeuler.org> - 3.1.2-1
|
||||
- Init package python3-ironicclient with version 3.1.2 for Train
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user