python-breathe/python-breathe.spec
Steve Kowalik cd7e47c695 - Update to 4.22.1:
* Fix anonymous struct/union usage in C domain. #585
  * New boolean breathe_show_enumvalue_initializer option specifying whether
    value of enumvalue should be displayed. #581
  * Fix Read the Docs build. #567
  * Document doxygenclass template specialisation spacing. #570
  * Update upper Sphinx release to <3.4. #571
  * Reuse breathe.__version__ in setup.py. #572
  * Document :inner: for the doxygengroup section. #573
  * Add support for verbatim inline elements. #560
  * Fix wrong refid when Doxygen SEPARATE_MEMBER_PAGES is YES. #566
  * Allow Sphinx 3.2. #561
  * Update CI scripts with new Sphinx versions. #552
  * Add support for C# using sphinx-csharp. #550
  * Doc, fix typo, :source: -> :project:. #551
  * Add support for innergroup. #556
  * Avoid duplicate doxygen targets when debug tracing. #563

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-breathe?expand=0&rev=26
2020-10-14 01:39:55 +00:00

78 lines
2.3 KiB
RPMSpec

#
# spec file for package python-breathe
#
# 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/
#
%define skip_python2 1
Name: python-breathe
Version: 4.22.1
Release: 0
Summary: Sphinx Doxygen renderer
License: BSD-3-Clause
URL: https://github.com/michaeljones/breathe
Source: https://github.com/michaeljones/breathe/archive/v%{version}.tar.gz
BuildRequires: %{python_module Sphinx >= 3.0.4}
BuildRequires: %{python_module docutils >= 0.12}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six >= 1.9}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx >= 2.0
Requires: python-docutils >= 0.12
Requires: python-setuptools
Requires: python-six >= 1.9
Requires(post): update-alternatives
Requires(postun): update-alternatives
Provides: python-sphinxcontrib-breathe = %{version}
Obsoletes: python-sphinxcontrib-breathe < %{version}
BuildArch: noarch
%python_subpackages
%description
Breathe is an extension to reStructuredText and Sphinx to be
able to read and render Doxygen xml output.
%prep
%autosetup -p1 -n breathe-%{version}
%build
%python_build
%check
%pytest
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/breathe-apidoc
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%post
%python_install_alternative breathe-apidoc
%postun
%python_uninstall_alternative breathe-apidoc
%files %{python_files}
%doc README.rst
%license LICENSE
%python_alternative %{_bindir}/breathe-apidoc
%{python_sitelib}/breathe
%{python_sitelib}/breathe-%{version}-py*.egg-info
%changelog