2016-04-07 02:58:02 +00:00
|
|
|
%global owner michaeljones
|
|
|
|
%global srcname breathe
|
|
|
|
%global _description \
|
|
|
|
Breathe is an extension to reStructuredText and Sphinx to be able to read and \
|
|
|
|
render the Doxygen xml output.
|
|
|
|
|
|
|
|
Name: python-%{srcname}
|
2021-04-24 07:58:29 +00:00
|
|
|
Version: 4.29.1
|
2021-06-04 18:22:58 +00:00
|
|
|
Release: 2%{?dist}
|
2016-04-07 02:58:02 +00:00
|
|
|
Summary: Adds support for Doxygen xml output to reStructuredText and Sphinx
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: https://github.com/%{owner}/%{srcname}
|
2019-11-26 22:28:49 +00:00
|
|
|
Source0: %{URL}/archive/v%{version}.tar.gz
|
2021-04-24 07:58:29 +00:00
|
|
|
Source1: %{URL}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.sig
|
|
|
|
Source2: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x8aed58021feacdd5f27ba0e6a72f627716ea9d96#./vermware.key
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2019-08-28 21:34:55 +00:00
|
|
|
BuildRequires: doxygen >= 1.8.4
|
2019-03-18 12:35:13 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
2019-08-28 21:34:55 +00:00
|
|
|
BuildRequires: %{py3_dist six} >= 1.9
|
2021-04-24 07:58:29 +00:00
|
|
|
BuildRequires: (%{py3_dist Sphinx} >= 3.0 and %{py3_dist Sphinx} < 5)
|
2019-08-28 21:34:55 +00:00
|
|
|
BuildRequires: %{py3_dist docutils} >= 0.12
|
2020-04-07 22:14:05 +00:00
|
|
|
BuildRequires: %{py3_dist pytest}
|
2016-04-07 02:58:02 +00:00
|
|
|
# NOTE: git is only needed because part of the build process checks if it's in
|
|
|
|
# a git repo
|
|
|
|
BuildRequires: git
|
2020-12-07 05:35:34 +00:00
|
|
|
BuildRequires: make
|
2021-04-24 07:58:29 +00:00
|
|
|
BuildRequires: gnupg2
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
# Set the name of the documentation directory
|
|
|
|
%global _docdir_fmt %{name}
|
|
|
|
|
|
|
|
%description %_description
|
|
|
|
|
2016-04-07 03:39:14 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}
|
2016-04-07 02:58:02 +00:00
|
|
|
Summary: %{summary}
|
2016-04-10 15:39:44 +00:00
|
|
|
Requires: python%{python3_pkgversion}-six
|
2019-08-28 21:34:55 +00:00
|
|
|
Requires: doxygen >= 1.8.4
|
2016-04-07 03:39:14 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
2016-04-07 02:58:02 +00:00
|
|
|
|
2016-04-07 03:39:14 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname} %_description
|
2016-04-07 02:58:02 +00:00
|
|
|
|
2019-03-27 16:54:40 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation files for %{srcname}
|
2016-04-07 02:58:02 +00:00
|
|
|
# tinyxml uses zlib license
|
2019-03-27 16:54:40 +00:00
|
|
|
License: BSD and zlib
|
2016-04-07 02:58:02 +00:00
|
|
|
|
2019-03-27 16:54:40 +00:00
|
|
|
%description doc
|
|
|
|
This package contains documentation for developer documentation for %{srcname}.
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
%prep
|
2021-04-24 07:58:29 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
2020-08-19 22:12:00 +00:00
|
|
|
%autosetup -n %{srcname}-%{version} -p1
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%py3_build
|
|
|
|
# Build the documentation
|
2020-12-07 05:35:34 +00:00
|
|
|
%make_build DOXYGEN=$(which doxygen) html
|
2016-04-07 02:58:02 +00:00
|
|
|
# Remove temporary build files
|
2019-03-27 16:54:40 +00:00
|
|
|
rm documentation/build/html/.buildinfo
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%py3_install
|
|
|
|
|
2019-08-28 21:34:55 +00:00
|
|
|
%check
|
2020-12-07 05:35:34 +00:00
|
|
|
%make_build dev-test
|
2019-08-28 21:34:55 +00:00
|
|
|
|
2016-04-07 03:39:14 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}
|
2019-08-28 21:34:55 +00:00
|
|
|
%doc README.rst
|
2016-04-07 02:58:02 +00:00
|
|
|
%{_bindir}/breathe-apidoc
|
|
|
|
%{python3_sitelib}/*
|
|
|
|
%license LICENSE
|
|
|
|
|
2019-03-27 16:54:40 +00:00
|
|
|
%files doc
|
|
|
|
%doc documentation/build/html
|
|
|
|
%license LICENSE
|
2016-04-07 02:58:02 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-06-04 18:22:58 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 4.29.1-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-04-24 07:58:29 +00:00
|
|
|
* Sat Apr 24 2021 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.29.1-1
|
|
|
|
- New upstream release 4.29.1
|
|
|
|
- Fixes rhbz#1953104
|
|
|
|
|
2021-04-15 20:33:28 +00:00
|
|
|
* Thu Apr 15 2021 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.29.0-1
|
|
|
|
- New upstream release 4.29.0
|
|
|
|
- Fixes rhbz#1944821
|
|
|
|
|
2021-03-10 19:13:04 +00:00
|
|
|
* Wed Mar 10 2021 Charalampos Stratakis <cstratak@redhat.com> - 4.27.0-2
|
|
|
|
- Fix an IndexError when generating toctree (rhbz#1930910)
|
|
|
|
|
2021-02-16 16:00:22 +00:00
|
|
|
* Tue Feb 16 2021 Charalampos Stratakis <cstratak@redhat.com> - 4.27.0-1
|
|
|
|
- New upstream release 4.27.0 (rhbz#1918566, rhbz#1929448)
|
|
|
|
|
2021-01-27 09:38:47 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.26.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-14 16:19:45 +00:00
|
|
|
* Thu Jan 14 2021 Charalampos Stratakis <cstratak@redhat.com> - 4.26.0-1
|
|
|
|
- New upstream release 4.26.0 (rhbz#1914147)
|
|
|
|
|
2020-12-20 15:01:55 +00:00
|
|
|
* Sun Dec 20 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.25.1-1
|
|
|
|
- New upstream release 4.25.1 (rhbz#1908213)
|
|
|
|
|
2020-12-07 05:19:46 +00:00
|
|
|
* Mon Dec 7 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.24.1-1
|
|
|
|
- New upstream release 4.24.1 (rhbz#1903366)
|
|
|
|
|
2020-11-16 22:59:22 +00:00
|
|
|
* Mon Nov 16 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.24.0-1
|
|
|
|
- New upstream release 4.24.0 (rhbz#1897984)
|
|
|
|
|
2020-11-03 16:58:33 +00:00
|
|
|
* Tue Nov 3 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.23.0-1
|
|
|
|
- New upstream release 4.23.0 (rhbz#1889874)
|
|
|
|
|
2020-10-01 10:59:18 +00:00
|
|
|
* Thu Oct 1 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.22.1-1
|
|
|
|
- New upstream release 4.22.1 (rhbz#1880753)
|
|
|
|
|
2020-10-01 10:50:14 +00:00
|
|
|
* Thu Oct 1 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.22.0-1
|
|
|
|
- New upstream release 4.22.0 (rhbz#1880753)
|
|
|
|
|
2020-09-13 09:26:41 +00:00
|
|
|
* Sun Sep 13 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.21.0-1
|
|
|
|
- New upstream release 4.21.0 (rhbz#1878050)
|
|
|
|
|
2020-08-20 20:17:31 +00:00
|
|
|
* Thu Aug 20 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.20.0-1
|
|
|
|
- New upstream release 4.20.0 (rhbz#1870404)
|
|
|
|
|
2020-08-19 22:12:00 +00:00
|
|
|
* Thu Aug 20 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.19.2-3
|
|
|
|
- Add patch to add support for sphinx 3.2
|
|
|
|
|
2020-07-29 00:00:01 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-08 22:57:51 +00:00
|
|
|
* Thu Jul 9 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.19.2-1
|
|
|
|
- New upstream release 4.19.2 (rhbz#1821614, rhbz#1823718)
|
|
|
|
|
2020-06-08 21:52:51 +00:00
|
|
|
* Mon Jun 8 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.19.1-1
|
|
|
|
- New upstream release 4.19.1 (rhbz#1821614, rhbz#1823718)
|
|
|
|
|
2020-05-04 22:31:36 +00:00
|
|
|
* Tue May 5 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.18.0-1
|
|
|
|
- New upstream release 4.18.0 (rhbz#1821614, rhbz#1823718)
|
|
|
|
|
2020-04-22 22:21:17 +00:00
|
|
|
* Thu Apr 23 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.16.0-1
|
|
|
|
- New upstream release 4.16.0 (rhbz#1821614, rhbz#1823718)
|
|
|
|
|
2020-04-14 22:53:35 +00:00
|
|
|
* Wed Apr 15 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.15.0-1
|
|
|
|
- New upstream release 4.15.0
|
|
|
|
|
2020-05-26 01:04:56 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.14.2-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-04-07 22:14:05 +00:00
|
|
|
* Wed Apr 8 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.14.2-1
|
|
|
|
- New upstream release 4.14.2
|
|
|
|
|
2020-02-02 14:50:57 +00:00
|
|
|
* Sun Feb 2 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.14.1-1
|
|
|
|
- New upstream release 4.14.1
|
|
|
|
|
2020-01-30 10:59:48 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-26 22:28:49 +00:00
|
|
|
* Tue Nov 26 2019 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.14.0-1
|
|
|
|
- New upstream release 4.14.0
|
|
|
|
|
2019-10-03 12:05:00 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.13.1-2
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-28 21:34:55 +00:00
|
|
|
* Wed Aug 28 2019 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.13.1-1
|
|
|
|
- New upstream release 4.13.1
|
|
|
|
- Enable test run in %%check
|
|
|
|
|
2019-08-19 08:29:44 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.13.0.post0-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-26 12:29:22 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.13.0.post0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-14 22:29:29 +00:00
|
|
|
* Mon Jul 15 2019 Dan Čermák <dan.cermak@cgc-instruments.com> - 4.13.0.post0-1
|
|
|
|
- New upstream release 4.13.0.post0
|
|
|
|
|
2019-03-18 12:35:13 +00:00
|
|
|
* Mon Mar 18 2019 Miro Hrončok <mhroncok@redhat.com> - 4.7.3-7
|
|
|
|
- Subpackage python2-breathe has been removed
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
|
2019-02-02 05:54:37 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.3-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 23:39:56 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 08:55:47 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 4.7.3-4
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-02-21 03:04:22 +00:00
|
|
|
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 4.7.3-3
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-09 06:55:11 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-05 15:02:32 +00:00
|
|
|
* Tue Oct 24 2017 Dave Johansen <davejohansen@gmail.com> - 4.7.3-1
|
|
|
|
- Upstream update
|
|
|
|
|
2017-08-22 14:22:52 +00:00
|
|
|
* Tue Aug 22 2017 Dave Johansen <davejohansen@gmail.com> - 4.7.2-1
|
|
|
|
- Upstream update
|
|
|
|
|
2017-08-17 03:07:07 +00:00
|
|
|
* Wed Aug 16 2017 Dave Johansen <davejohansen@gmail.com> - 4.7.1-1
|
|
|
|
- Upstream update
|
|
|
|
|
2017-08-10 04:03:21 +00:00
|
|
|
* Wed Aug 09 2017 Dave Johansen <davejohansen@gmail.com> - 4.7.0-1
|
|
|
|
- Upstream update
|
|
|
|
|
2017-08-05 13:42:53 +00:00
|
|
|
* Sat Aug 05 2017 Dave Johansen <davejohansen@gmail.com> - 4.6.0-3
|
|
|
|
- Fix for node without parent
|
|
|
|
|
2017-07-27 09:47:04 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-04-29 17:56:28 +00:00
|
|
|
* Sat Apr 29 2017 Miro Hrončok <mhroncok@redhat.com> - 4.6.0-1
|
|
|
|
- Upstream update
|
|
|
|
|
2017-02-11 08:30:07 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-20 23:26:21 +00:00
|
|
|
* Tue Dec 20 2016 Miro Hrončok <mhroncok@redhat.com> - 4.4.0-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-20 05:29:15 +00:00
|
|
|
* Mon Dec 19 2016 Dave Johansen <davejohansen@gmail.com> - 4.4.0-1
|
|
|
|
- Upstream release
|
|
|
|
|
2016-12-19 17:20:37 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 4.2.0-5
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-07-19 09:08:50 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.0-4
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-05-14 04:49:02 +00:00
|
|
|
* Fri May 13 2016 Dave Johansen <davejohansen@gmail.com> - 4.2.0-3
|
|
|
|
- Fix for Python 3
|
|
|
|
|
2016-04-10 15:44:57 +00:00
|
|
|
* Sun Apr 10 2016 Orion Poplawski <orion@cora.nwra.com> - 4.2.0-2
|
|
|
|
- Fix BR/Rs
|
|
|
|
|
2016-04-07 02:58:02 +00:00
|
|
|
* Wed Apr 06 2016 Dave Johansen <davejohansen@gmail.com> - 4.2.0-1
|
|
|
|
- Initial RPM release
|