File python-keystoneclient.spec of Package python-keystoneclient
#
# spec file for package python-keystoneclient
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global sname python-keystoneclient
Name: python-keystoneclient
Version: 3.13.1
Release: 0
Summary: Client library for OpenStack Identity API
License: Apache-2.0
Group: Development/Languages/Python
URL: http://launchpad.net/%{sname}
Source0: https://files.pythonhosted.org/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
# https://review.opendev.org/#/c/702262/
Patch1: 0001-Make-tests-pass-in-2020.patch
BuildRequires: openssl
BuildRequires: openstack-macros
BuildRequires: python-debtcollector
BuildRequires: python-devel
BuildRequires: python-keystoneauth1
BuildRequires: python-lxml
BuildRequires: python-mock
BuildRequires: python-oslo.config
BuildRequires: python-oslo.i18n
BuildRequires: python-oslo.serialization
BuildRequires: python-oslo.utils
BuildRequires: python-oslotest
BuildRequires: python-pbr
BuildRequires: python-positional
BuildRequires: python-requests-mock
BuildRequires: python-six
BuildRequires: python-testrepository
BuildRequires: python-testresources
BuildRequires: python-testscenarios
Requires: python-debtcollector
Requires: python-keystoneauth1
Requires: python-oslo.config
Requires: python-oslo.i18n
Requires: python-oslo.serialization
Requires: python-oslo.utils
Requires: python-positional
Requires: python-requests
Requires: python-six
Requires: python-stevedore
BuildArch: noarch
%description
Client library for interacting with Openstack Identity API.
%package doc
Summary: Documentation for OpenStack Identity API Client
Group: Documentation/HTML
BuildRequires: python-Sphinx
BuildRequires: python-openstackdocstheme
%description doc
Documentation for the client library for interacting with Openstack
Identity API.
%prep
%autosetup -p1 -n %{sname}-%{version}
%py_req_cleanup
# disable intersphinx - no network access during build
echo "intersphinx_mapping = {}" >> doc/source/conf.py
sed -i 's/^warning-is-error.*/warning-is-error = 0/g' setup.cfg
%build
%{py2_build}
# Build HTML docs and man page
%{__python2} setup.py build_sphinx
%install
%{py2_install}
# Delete tests
rm -fr %{buildroot}%{python2_sitelib}/tests
# Fix hidden-file-or-dir warnings
rm -fr html/.doctrees html/.buildinfo
%check
%{__python2} setup.py testr
%files
%doc README.rst
%license LICENSE
%{python2_sitelib}/keystoneclient
%{python2_sitelib}/*.egg-info
%files doc
%doc doc/build/html
%license LICENSE
%changelog