Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

gcovr-5.2-bp156.2.2 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: gcovr Distribution: SUSE Linux Enterprise 15 SP6
Version: 5.2 Vendor: openSUSE
Release: bp156.2.2 Build date: Mon Jul 24 07:58:40 2023
Group: Development/Tools/Other Build host: goat45
Size: 540529 Source RPM: gcovr-5.2-bp156.2.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://gcovr.com/
Summary: A code coverage report generator using GNU gcov
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.

Provides

Requires

License

BSD-3-Clause

Changelog

* Tue Nov 22 2022 Andrea Manzini <andrea.manzini@suse.com>
  - Updated to release 5.2:
    New features and notable changes:
    * Log additional info on gcov parsing errors.
    * Add support for branch exclude markers.
    * Additional options to configure the thresholds for lines and branches in HTML separate.
    Bugfixes:
    * Remove function coverage from sonarcube report.
    * Fix parallel processing of gcov data.
    * Better diagnostics when dealing with corrupted input files.
    * Accept metadata lines without values (introduced in gcc-11).
    * Properly close <a> element in detailed HTML report.
    * Using --add-tracefile will now correctly merge branch coverage.
    * Fix package-level function coverage statistics in Cobertura XML reports.
    * Respect excluded/noncode lines for aggregated branchcoverage.
    * Fix list options in configuration file (search-path).
    * Fix assert and key error in --decisions flag.
    * Fix adding none existing lines by decision analysis to data model.
    * Always treat relative paths in config files as relative to the directory of the file.
* Fri Jun 11 2021 Dan Čermák <dcermak@suse.com>
  - New upstream release 5.0
    Breaking changes:
    - Dropped support for Python 2 and Python 3.5.
    From now on, gcovr will only support Python versions
    that enjoy upstream support.
    Improvements and new features:
    - Handles spaces in ``gcov`` path. (:issue:`385`)
    - Early fail when output cannot be created. (:issue:`382`)
    - Add :option:`--txt` for text output. (:issue:`387`)
    - Add :option:`--csv` for CSV output. (:issue:`376`)
    - Add :option:`--exclude-lines-by-pattern` to filter out source lines by arbitrary
    regex. (:issue:`356`)
    - Add :option:`--json-summary` to generate a :ref:`JSON Summary <json_summary_output>` report. (:issue:`366`)
    - Add :option:`--coveralls` to generate a :ref:`Coveralls <coveralls_output>` compatible JSON report. (:issue:`328`)
* Mon Jan 04 2021 Dan Čermák <dcermak@suse.com>
  - Add python3-lxml dependency (boo#1179867)
* Mon Feb 03 2020 Dan Čermák <dcermak@suse.com>
  - New upstream release 4.2
    Breaking changes:
    - Dropped support for Python 3.4.
    - Format flag parameters like :option:`--xml` or :option:`--html`
      now take an optional output file name.
      This potentially changes the interpretation of search paths.
      In ``gcovr --xml foo``,
      previous gcovr versions would search the ``foo`` directory for coverage data.
      Now, gcovr will try to write the Cobertura report to the ``foo`` file.
      To keep the old meaning, separate positional arguments like
      ``gcovr --xml -- foo``.
    Improvements and new features:
    - :ref:`Configuration file <configuration>` support (experimental).
      (:issue:`167`, :issue:`229`, :issue:`279`, :issue:`281`, :issue:`293`,
      :issue:`300`, :issue:`304`)
    - :ref:`JSON output <json_output>`. (:issue:`301`, :issue:`321`, :issue:`326`)
    - :ref:`Combining tracefiles <combining_tracefiles>`
      with :option:`gcovr --add-tracefile`.
      (:issue:`10`, :issue:`326`)
    - :ref:`SonarQube XML Output <sonarqube_xml_output>`. (:issue:`308`)
    - Handle cyclic symlinks correctly during coverage data search.
      (:issue:`284`)
    - Simplification of :option:`--object-directory` heuristics.
      (:issue:`18`, :issue:`273`, :issue:`280`)
    - Exception-only code like a ``catch`` clause is now shown as uncovered.
      (:issue:`283`)
    - New :option:`--exclude-throw-branches` option
      to exclude exception handler branches. (:issue:`283`)
    - Support ``--root ..`` style invocation,
      which might fix some CMake-related problems. (:issue:`294`)
    - Fix wrong names in report
      when source and build directories have similar names. (:issue:`299`)
    - Stricter argument handling. (:issue:`267`)
    - Reduce XML memory usage by moving to lxml.
      (:issue:`1`, :issue:`118`, :issue:`307`)
    - Can write :ref:`multiple reports <multiple output formats>` at the same time
      by giving the output file name to the report format parameter.
      Now, ``gcovr --html -o cov.html`` and ``gcovr --html cov.html``
      are equivalent. (:issue:`291`)
    - Override gcov locale properly. (:issue:`334`)
    - Make gcov parser more robust when used with GCC 8. (:issue:`315`)
    Known issues:
    - The :option:`--keep` option only works when using existing gcov files
      with :option:`-g`/:option:`--use-gcov-files`.
      (:issue:`285`, :issue:`286`)
    - Gcovr may get confused
      when header files in different directories have the same name.
      (:issue:`271`)
    - Gcovr may not work when no en_US locale is available.
      (:issue:`166`)
    Documentation:
    - :ref:`Exclusion marker <exclusion markers>` documentation.
    - FAQ: :ref:`exception branches` (:issue:`283`)
    - FAQ: :ref:`uncovered files not shown`
      (:issue:`33`, :issue:`100`, :issue:`154`, :issue:`290`, :issue:`298`)
    Internal changes:
    - More tests. (:issue:`269`, :issue:`268`, :issue:`269`)
    - Refactoring and removal of dead code. (:issue:`280`)
    - New internal data model.
* Tue Feb 05 2019 Jan Engelhardt <jengelh@inai.de>
  - Remove excessive hard requires.
* Wed Jan 30 2019 Dan Čermák <dcermak@suse.com>
  - Build documentation on Tumbleweed
* Thu Jan 10 2019 Neal Gompa <ngompa13@gmail.com>
  - Fix package name for Jinja2 dependency
* Tue Dec 11 2018 Dan Čermák <dcermak@suse.com>
  - Bump gcovr version to 4.1
    + Drop patch: 0001-re-enable-HTML-reports-under-Python3.patch
* Wed Dec 20 2017 Neal Gompa <ngompa13@gmail.com>
  - Initial packaging based on Fedora package

Files

/usr/bin/gcovr
/usr/lib/python3.6/site-packages/gcovr
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/gcovr-5.2-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/gcovr/__init__.py
/usr/lib/python3.6/site-packages/gcovr/__main__.py
/usr/lib/python3.6/site-packages/gcovr/__pycache__
/usr/lib/python3.6/site-packages/gcovr/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/__main__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/__main__.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/decision_analysis.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/decision_analysis.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/gcov.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/gcov.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/gcov_parser.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/gcov_parser.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/merging.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/merging.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/timestamps.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/timestamps.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/version.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/version.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/workers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/__pycache__/workers.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/configuration.py
/usr/lib/python3.6/site-packages/gcovr/coverage.py
/usr/lib/python3.6/site-packages/gcovr/decision_analysis.py
/usr/lib/python3.6/site-packages/gcovr/gcov.py
/usr/lib/python3.6/site-packages/gcovr/gcov_parser.py
/usr/lib/python3.6/site-packages/gcovr/merging.py
/usr/lib/python3.6/site-packages/gcovr/templates
/usr/lib/python3.6/site-packages/gcovr/templates/base.html
/usr/lib/python3.6/site-packages/gcovr/templates/functions_page.html
/usr/lib/python3.6/site-packages/gcovr/templates/root_page.html
/usr/lib/python3.6/site-packages/gcovr/templates/source_page.html
/usr/lib/python3.6/site-packages/gcovr/templates/style.css
/usr/lib/python3.6/site-packages/gcovr/templates/style.details.css
/usr/lib/python3.6/site-packages/gcovr/templates/style.filelist.css
/usr/lib/python3.6/site-packages/gcovr/templates/style.meter.css
/usr/lib/python3.6/site-packages/gcovr/templates/style.summary.css
/usr/lib/python3.6/site-packages/gcovr/timestamps.py
/usr/lib/python3.6/site-packages/gcovr/utils.py
/usr/lib/python3.6/site-packages/gcovr/version.py
/usr/lib/python3.6/site-packages/gcovr/workers.py
/usr/lib/python3.6/site-packages/gcovr/writer
/usr/lib/python3.6/site-packages/gcovr/writer/__init__.py
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/coveralls.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/coveralls.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/csv.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/csv.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/html.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/html.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/json.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/json.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/sonarqube.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/sonarqube.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/summary.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/summary.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/txt.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/__pycache__/txt.cpython-36.pyc
/usr/lib/python3.6/site-packages/gcovr/writer/cobertura.py
/usr/lib/python3.6/site-packages/gcovr/writer/coveralls.py
/usr/lib/python3.6/site-packages/gcovr/writer/csv.py
/usr/lib/python3.6/site-packages/gcovr/writer/html.py
/usr/lib/python3.6/site-packages/gcovr/writer/json.py
/usr/lib/python3.6/site-packages/gcovr/writer/sonarqube.py
/usr/lib/python3.6/site-packages/gcovr/writer/summary.py
/usr/lib/python3.6/site-packages/gcovr/writer/txt.py
/usr/share/doc/packages/gcovr
/usr/share/doc/packages/gcovr/CHANGELOG.rst
/usr/share/doc/packages/gcovr/README.rst
/usr/share/licenses/gcovr
/usr/share/licenses/gcovr/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 3 23:33:27 2024