- Imported Translations from Zanata - Remove log translations - turn on warning-is-error for sphinx - Check reStructuredText documents for common style issues - Using fixtures.MockPatch instead of mockpatch.Patch - [Fix gate]Update test requirement - Update URLs in documents according to document migration - Remove support for py34 - rearrange existing documentation to follow the new layout standard - pbr.version.VersionInfo needs package name (oslo.xyz and not oslo_xyz) - Update reno for stable/ocata - Check for SubprocessError by name on Python 3.x - Updated from global requirements - switch from oslosphinx to openstackdocstheme OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-oslo.concurrency?expand=0&rev=29
106 lines
3.3 KiB
RPMSpec
106 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package python-oslo.concurrency
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global sname oslo.concurrency
|
|
Name: python-oslo.concurrency
|
|
Version: 3.21.0
|
|
Release: 0
|
|
Summary: OpenStack oslo.concurrency library
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: https://launchpad.net/%{sname}
|
|
Source0: https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
|
|
BuildRequires: openstack-macros
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-enum34
|
|
BuildRequires: python-eventlet >= 0.18.2
|
|
BuildRequires: python-fasteners >= 0.7
|
|
BuildRequires: python-fixtures >= 3.0.0
|
|
BuildRequires: python-futures >= 3.0
|
|
BuildRequires: python-mock >= 2.0
|
|
BuildRequires: python-oslo.config >= 4.0.0
|
|
BuildRequires: python-oslo.i18n >= 2.1.0
|
|
BuildRequires: python-oslo.utils >= 3.20.0
|
|
BuildRequires: python-oslotest >= 1.10.0
|
|
BuildRequires: python-pbr >= 2.0.0
|
|
BuildRequires: python-testrepository >= 0.0.18
|
|
BuildRequires: python-testscenarios >= 0.4
|
|
BuildRequires: python-testtools >= 1.4.0
|
|
Requires: python-enum34
|
|
Requires: python-fasteners >= 0.7
|
|
Requires: python-iso8601 >= 0.1.11
|
|
Requires: python-oslo.config >= 4.0.0
|
|
Requires: python-oslo.i18n >= 2.1.0
|
|
Requires: python-oslo.utils >= 3.20.0
|
|
Requires: python-retrying >= 1.2.3
|
|
Requires: python-six >= 1.9.0
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
The oslo.concurrency library has utilities for safely running multi-thread,
|
|
multi-process applications using locking mechanisms and for running
|
|
external processes.
|
|
|
|
%package doc
|
|
Summary: Documentation for OpenStack concurrency library
|
|
Group: Development/Languages/Python
|
|
BuildRequires: python-Sphinx
|
|
BuildRequires: python-openstackdocstheme >= 1.11.0
|
|
|
|
%description doc
|
|
The oslo.concurrency library has utilities for safely running multi-thread,
|
|
multi-process applications using locking mechanisms and for running
|
|
external processes.
|
|
This package contains the documentation.
|
|
|
|
%prep
|
|
%autosetup -n %{sname}-%{version}
|
|
%py_req_cleanup
|
|
sed -i 's/^warning-is-error.*/warning-is-error = 0/g' setup.cfg
|
|
|
|
%build
|
|
%{py2_build}
|
|
|
|
# generate html docs
|
|
%{__python2} setup.py build_sphinx
|
|
# remove the sphinx-build leftovers
|
|
rm -rf doc/build/html/.{doctrees,buildinfo}
|
|
|
|
%install
|
|
%{py2_install}
|
|
|
|
%check
|
|
# Test suite fails on 32 bit platforms
|
|
# ifarch/ifnarch can not be used in noarch packages
|
|
if [ "%_lib" = "lib64" ]; then
|
|
%{__python2} setup.py testr
|
|
fi
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.rst ChangeLog
|
|
%_bindir/lockutils-wrapper
|
|
%{python2_sitelib}/oslo_concurrency
|
|
%{python2_sitelib}/*.egg-info
|
|
|
|
%files doc
|
|
%license LICENSE
|
|
%doc doc/build/html
|
|
|
|
%changelog
|