rpm-packaging/openstack/python-novaclient/python-novaclient.spec.j2

101 lines
3.2 KiB
Django/Jinja

{% set pypi_name = 'python-novaclient' %}
{% set upstream_version = upstream_version('18.4.0') %}
{% set rpm_release = '1' %}
{% set source = url_pypi() %}
Name: {{ py2name() }}
Version: {{ py2rpmversion() }}
Release: {{ py2rpmrelease() }}
Epoch: {{ epoch('python-novaclient') }}
Summary: Python API and CLI for OpenStack Nova
License: {{ license('Apache-2.0') }}
Group: Development/Languages/Python
URL: https://docs.openstack.org/{{ pypi_name }}
Source0: {{ source }}
BuildRequires: openssl
BuildRequires: openstack-macros
BuildRequires: {{ py3('python-cinderclient') }}
BuildRequires: {{ py3('ddt') }}
BuildRequires: {{ py3('fixtures') }}
BuildRequires: {{ py3('python-glanceclient') }}
BuildRequires: {{ py3('python-keystoneclient') }}
BuildRequires: {{ py3('os-client-config') }}
BuildRequires: {{ py3('osprofiler') }}
BuildRequires: {{ py3('pbr') }}
BuildRequires: {{ py3('requests-mock') }}
BuildRequires: {{ py3('stestr') }}
BuildRequires: {{ py3('testscenarios') }}
BuildRequires: {{ py3('testtools') }}
BuildArch: noarch
%description
This is a client for the OpenStack Nova API. There's a Python API (the
novaclient module), and a command-line script (nova). Each implements 100% of
the OpenStack Nova API.
%package -n python3-novaclient
Summary: Python API and CLI for OpenStack Nova
Requires: openssl
Requires: {{ py3('Babel') }}
Requires: {{ py3('PrettyTable') }}
Requires: {{ py3('iso8601') }}
Requires: {{ py3('keystoneauth1') }}
Requires: {{ py3('oslo.i18n') }}
Requires: {{ py3('oslo.serialization') }}
Requires: {{ py3('oslo.utils') }}
Requires: {{ py3('pbr') }}
Requires: {{ py3('simplejson') }}
%if 0%{?suse_version}
Obsoletes: {{ py2name(py_versions='py2') }} < 16.0.0
%endif
%description -n python3-novaclient
This is a client for the OpenStack Nova API. There's a Python API (the
novaclient module), and a command-line script (nova). Each implements 100% of
the OpenStack Nova API.
%package -n python-novaclient-doc
Summary: Documentation for OpenStack Nova API Client
Group: Documentation/HTML
BuildRequires: {{ py3('Sphinx') }}
BuildRequires: {{ py3('openstackdocstheme') }}
BuildRequires: {{ py3('reno') }}
BuildRequires: {{ py3('sphinxcontrib-apidoc') }}
%description -n python-novaclient-doc
This is a client for the OpenStack Nova API. There's a Python API (the
novaclient module), and a command-line script (nova). Each implements 100% of
the OpenStack Nova API.
This package contains auto-generated documentation.
%prep
%autosetup -p1 -n %{name}-%{version}
%py_req_cleanup
%build
%{py3_build}
PBR_VERSION={{ upstream_version }} %sphinx_build -b html -d doc/build/doctrees doc/source doc/build/html
# Fix hidden-file-or-dir warnings
rm -fr doc/build/html/.doctrees doc/build/html/.buildinfo
%install
%{py3_install}
%check
export OS_TEST_PATH=novaclient/tests/unit
%{openstack_stestr_run}
%files -n python3-novaclient
%license LICENSE
%{_bindir}/nova
%{python3_sitelib}/novaclient
%{python3_sitelib}/*.egg-info
%files -n python-novaclient-doc
%doc README.rst doc/build/html
%license LICENSE
%changelog