python-objgraph/python-objgraph.spec
Todd R d8e0d18016 Accepting request 603751 from home:TheBlackCat:branches:devel:languages:python
- Update to version 3.4.0
  * New functions: :func:`get_new_ids`, :func:`at_addrs`.
- Update to version 3.3.0
  * New function: :func:`growth`.
- Update to version 3.2.0
  * New ``filter`` argument for :func:`typestats`, :func:`most_common_types`,
    :func:`show_most_common_types`, :func:`show_growth`.
  * Show lambda functions in a more human-friendly way.
- Update to version 3.1.2
  * Correct UTF-8 mojibake in the changelog and switch all links to HTTPS.
- Update to version 3.1.1
  * Add support for Python 3.6.
  * Replace bare ``except:`` in ``safe_repr()`` with ``except Exception:``.
- Use %license tag

OBS-URL: https://build.opensuse.org/request/show/603751
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-objgraph?expand=0&rev=2
2018-05-03 16:01:15 +00:00

88 lines
2.5 KiB
RPMSpec

#
# spec file for package python-objgraph
#
# Copyright (c) 2018 SUSE LINUX Products 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/
#
%bcond_without tests
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-objgraph
Version: 3.4.0
Release: 0
Summary: Draws Python object reference graphs with graphviz
License: MIT
Group: Development/Languages/Python
Url: http://mg.pov.lt/objgraph/
Source: https://files.pythonhosted.org/packages/source/o/objgraph/objgraph-%{version}.tar.gz
BuildRequires: graphviz-gd
BuildRequires: graphviz-gnome
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module graphviz}
# Test requirements
BuildRequires: %{python_module mock}
Requires: graphviz-gd
Requires: graphviz-gnome
Requires: python-graphviz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%python_subpackages
%description
objgraph is a module that lets you visually explore Python object graphs.
You'll need graphviz if you want to draw the pretty graphs.
I recommend xdot for interactive use.
%package -n python-objgraph-doc
Summary: Documentation for %{name}
Group: Development/Languages/Python
Provides: %{python_module objgraph-doc = %{version}}
%description -n python-objgraph-doc
Documentation and help files for %{name}
%prep
%setup -q -n objgraph-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%if %{with tests}
%check
%python_exec setup.py test
%endif
%files %{python_files}
%defattr(-,root,root,-)
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%files -n python-objgraph-doc
%defattr(-,root,root,-)
%doc docs/
%doc CHANGES.rst HACKING.rst
%changelog