py-gcovr: add 5.2 (#33476)

This commit is contained in:
Michael Kuhn 2022-10-23 15:49:57 +02:00 committed by GitHub
parent f8a899f904
commit 6c32c6fbdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,9 +15,14 @@ class PyGcovr(PythonPackage):
homepage = "https://gcovr.com/"
pypi = "gcovr/gcovr-4.2.tar.gz"
version("5.2", sha256="217195085ec94346291a87b7b1e6d9cfdeeee562b3e0f9a32b25c9530b3bce8f")
version("4.2", sha256="5aae34dc81e51600cfecbbbce3c3a80ce3f7548bc0aa1faa4b74ecd18f6fca3f")
depends_on("python@2.7:,3.5:", type=("build", "run"))
depends_on("python@3.7:", when="@5.1:", type=("build", "run"))
depends_on("python@3.6:", when="@5.0", type=("build", "run"))
depends_on("python@2.7:2,3.5:", when="@:4", type=("build", "run"))
depends_on("py-setuptools", type=("build", "run"))
depends_on("py-jinja2", type=("build", "run"))
depends_on("py-lxml", type=("build", "run"))
depends_on("py-setuptools", type=("build", "run"))
depends_on("py-pygments", when="@5:", type=("build", "run"))