%{?python_enable_dependency_generator} %bcond_without docs Name: gcovr Version: 5.0 Release: 3%{?dist} Summary: A code coverage report generator using GNU gcov License: BSD URL: https://gcovr.com/ Source0: https://github.com/gcovr/%{name}/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: python3-devel BuildRequires: python3-setuptools %if %{with docs} BuildRequires: %{py3_dist lxml} BuildRequires: %{py3_dist Jinja2} BuildRequires: %{py3_dist Sphinx} BuildRequires: %{py3_dist sphinx_rtd_theme} BuildRequires: %{py3_dist sphinxcontrib-autoprogram} >= 0.1.5 %endif BuildRequires: make # for gcov Requires: gcc Requires: %{py3_dist Jinja2} BuildArch: noarch %description Gcovr provides a utility for managing the use of the GNU gcov utility and generating summarized code coverage results. This command is inspired by the Python coverage.py package, which provides a similar utility in Python. The gcovr command produces either compact human-readable summary reports, machine readable XML reports (in Cobertura format) or simple HTML reports. Thus, gcovr can be viewed as a command-line alternative to the lcov utility, which runs gcov and generates an HTML-formatted report. %if %{with docs} %package doc Summary: Documentation of gcovr %description doc Documentation of gcovr. %endif %prep %autosetup %build %py3_build %install %py3_install %if %{with docs} # the documentation can only be build **after** gcovr is installed # => need to set PATH, PYTHONPATH so that the installed binary & package are # found # also set PYTHON so that the sphinx Makefile picks up python3 instead of # python2 export PYTHONPATH=%{buildroot}%{python3_sitelib} export PATH=%{buildroot}%{_bindir}:$PATH export PYTHON=python3 pushd . cd doc # Manpage make man install -D -p -m 0644 build/man/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 # html doc make html rm build/html/.buildinfo popd %endif %files %license LICENSE.txt %doc README.rst CHANGELOG.rst %{_bindir}/gcovr %{python3_sitelib}/gcovr* %if %{with docs} %{_mandir}/man1/%{name}.1* %endif %if %{with docs} %files doc %doc doc/build/html/* %endif %changelog * Thu Jan 20 2022 Fedora Release Engineering - 5.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Wed Jul 21 2021 Fedora Release Engineering - 5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Fri Jun 11 2021 Dan Čermák - 5.0-1 - New upstream release 5.0 - Fixes rhbz#1971113 * Fri Jun 04 2021 Python Maint - 4.2-6 - Rebuilt for Python 3.10 * Tue Jan 26 2021 Fedora Release Engineering - 4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Mon Jul 27 2020 Fedora Release Engineering - 4.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Fri Jun 26 2020 Tommi Rantala - 4.2-3 - Add bcond to allow building without docs * Tue May 26 2020 Miro Hrončok - 4.2-2 - Rebuilt for Python 3.9 * Tue Feb 4 2020 Dan Čermák - 4.2-1 - New upstream release 4.2 - Add doc subpackage containing the user-documentation of gcovr * Tue Jan 28 2020 Fedora Release Engineering - 4.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Thu Oct 03 2019 Miro Hrončok - 4.1-6 - Rebuilt for Python 3.8.0rc1 (#1748018) * Mon Aug 19 2019 Miro Hrončok - 4.1-5 - Rebuilt for Python 3.8 * Thu Jul 25 2019 Fedora Release Engineering - 4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Thu Jan 31 2019 Fedora Release Engineering - 4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Fri Sep 07 2018 Neal Gompa - 4.1-2 - Add missing files installed in the Python sitelib location * Fri Sep 07 2018 Neal Gompa - 4.1-1 - Release 4.1 to Fedora (#1626452) - Reformatted changelog entry * Fri Sep 07 2018 Alexis Jeandet - 4.1-0 - Update to latest gcovr version (4.1) - Removed backported upstream patch as it is part of the release * Fri Jul 13 2018 Fedora Release Engineering - 3.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Tue Jun 19 2018 Miro Hrončok - 3.3-7 - Rebuilt for Python 3.7 * Wed Feb 07 2018 Fedora Release Engineering - 3.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 3.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Mon Mar 06 2017 Neal Gompa - 3.3-4 - Fix HTML reports for Python 3 (#1428277) * Fri Feb 10 2017 Fedora Release Engineering - 3.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Feb 2 2017 Neal Gompa - 3.3-2 - Address review comments (#1418804) - Switch to Python 3 * Thu Feb 2 2017 Neal Gompa - 3.3-1 - Initial package