python-osprofiler/python-osprofiler.spec
Thomas Bechtold b1ed3d0123 - update to version 1.5.0:
- Add py35 tox virtualenv
  - Fix a doc typo
  - Use an env variable for connection string default
  - Show team and repo badges on README
  - Fix import order
  - Add Log Insight driver
  - Add Elasticsearch driver
  - Update dependencies' version from project requirements
  - Add a redis driver
  - Trivial: Remove vim header from source files
  - Add exception to trace point details
  - Add reno for release notes management
  - Visualize trace output as graph
  - Update documentation to the latest state
  - Add AUTHORS and ChangeLog to .gitignore
  - Replace six.iteritems() with .items()
  - Organize unit tests under tests/unit folder
  - Move hacking checks outside tests
  - Error out for invalid trace ID
  - Use method constant_time_compare from oslo.utils
  - [doc]Add description for multi-backend URI
  - Update devstack plugin readme to enable Panko
  - Pretty print json output
  - Heat and Cinder now use new style conf
  - Use oslo_utils.uuidutils.is_uuid_like
  - Update homepage with developer documentation page
  - Replace logging with oslo_log
  - Pass oslo.messaging kwargs only for "messaging://"
  - Add .idea folder to .gitignore

OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-osprofiler?expand=0&rev=11
2017-02-13 08:51:14 +00:00

100 lines
3.1 KiB
RPMSpec

#
# spec file for package python-osprofiler
#
# 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 osprofiler
Name: python-osprofiler
Version: 1.5.0
Release: 0
Summary: OpenStack Profiler Library
License: Apache-2.0
Group: Development/Languages/Python
Url: https://launchpad.net/osprofiler
Source0: https://pypi.io/packages/source/o/%{sname}/%{sname}-%{version}.tar.gz
BuildRequires: openstack-macros
BuildRequires: python-WebOb >= 1.6.0
BuildRequires: python-ceilometerclient >= 2.5.0
BuildRequires: python-ddt >= 1.0.1
BuildRequires: python-devel
BuildRequires: python-elasticsearch >= 2.0.0
BuildRequires: python-mock >= 2.0
BuildRequires: python-oslo.concurrency >= 3.8.0
BuildRequires: python-oslo.config >= 3.14.0
BuildRequires: python-oslo.log >= 3.11.0
BuildRequires: python-oslo.utils >= 3.18.0
BuildRequires: python-pymongo >= 3.0.2
BuildRequires: python-python-subunit >= 0.0.18
BuildRequires: python-redis >= 2.10.0
BuildRequires: python-six >= 1.9.0
BuildRequires: python-testrepository >= 0.0.18
BuildRequires: python-testtools >= 1.4.0
Requires: python-WebOb >= 1.6.0
Requires: python-oslo.concurrency >= 3.8.0
Requires: python-oslo.config >= 3.14.0
Requires: python-oslo.log >= 3.11.0
Requires: python-oslo.utils >= 3.18.0
Requires: python-six >= 1.9.0
BuildArch: noarch
%description
OSProfiler provides a tiny but powerful library that is used by
most (soon to be all) OpenStack projects and their python clients. It
provides functionality to be able to generate 1 trace per request, that goes
through all involved services. This trace can then be extracted and used
to build a tree of calls which can be quite handy for a variety of
reasons (for example in isolating cross-project performance issues).
%package doc
Summary: Documentation for OSProfiler
Group: Development/Languages/Python
BuildRequires: python-Sphinx
BuildRequires: python-oslosphinx >= 4.7.0
%description doc
Documentation for OSProfiler.
%prep
%autosetup -n %{sname}-%{version}
%py_req_cleanup
%build
%{py2_build}
%install
%{py2_install}
# generate html docs
%{__python2} setup.py build_sphinx
# remove the sphinx-build leftovers
rm -rf doc/build/html/.{doctrees,buildinfo}
%check
%{__python2} setup.py testr
%files
%license LICENSE
%doc README.rst ChangeLog
%{python2_sitelib}/osprofiler
%{python2_sitelib}/*.egg-info
%{_bindir}/osprofiler
%files doc
%license LICENSE
%doc doc/build/html
%changelog