diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2022-06-16 09:24:12 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2022-06-16 09:30:12 -0700 |
commit | 4e4ae37b5374139f285f9c71c0a6756909605b00 (patch) | |
tree | ed02b63ea5abe57aeb187a2052acaa203b614b89 /dev-util/gcovr | |
parent | dev-python/yaxmldiff: new package, add 0.1.0 (diff) | |
download | gentoo-4e4ae37b5374139f285f9c71c0a6756909605b00.tar.gz gentoo-4e4ae37b5374139f285f9c71c0a6756909605b00.tar.bz2 gentoo-4e4ae37b5374139f285f9c71c0a6756909605b00.zip |
dev-util/gcovr: add 5.1
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'dev-util/gcovr')
-rw-r--r-- | dev-util/gcovr/Manifest | 1 | ||||
-rw-r--r-- | dev-util/gcovr/gcovr-5.1.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-util/gcovr/Manifest b/dev-util/gcovr/Manifest index 5343f39142d9..22c05a6ac7c3 100644 --- a/dev-util/gcovr/Manifest +++ b/dev-util/gcovr/Manifest @@ -1 +1,2 @@ DIST gcovr-4.2.tar.gz 222847 BLAKE2B 44864c89b58b526c5afc293168c8af2c9082a99e92f2315485f10430fa5ff959046d189c018e0fa121ff4e9fc3685c13b737c112856c841966052d5fd6c9169a SHA512 bf9e22a58b8390eca391dc8f6ba58c4ca0765e66f18ac6f8d8f80609411df2bab74a846eb179a1aded81b7774fa8a8121bb2d586556aeaf43fd729205b0d0c72 +DIST gcovr-5.1.tar.gz 1676960 BLAKE2B 106c30c7e349f8ffa7a9c52d70e59c32799a8def11986027e3b794ada07fc11ab27b322c377b553f4bb96ca8662bf152eeb7de2d1913381e6068123d2430aa6c SHA512 ae2f0d9ad04f2dc851db9bc99a30a5dc1b1f43dbc6336422ecf5228d37f6994406a83e50f1ee6b5c8d6ec6d7b9e2bba726fd3d502dc5022fe359d480e6d267a5 diff --git a/dev-util/gcovr/gcovr-5.1.ebuild b/dev-util/gcovr/gcovr-5.1.ebuild new file mode 100644 index 000000000000..3d42ed3be468 --- /dev/null +++ b/dev-util/gcovr/gcovr-5.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{7..11} ) +DISTUTILS_IN_SOURCE_BUILD=1 + +inherit distutils-r1 + +DESCRIPTION="A Python script for summarizing gcov data" +HOMEPAGE="https://github.com/gcovr/gcovr" +SRC_URI="https://github.com/gcovr/gcovr/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pytest-timeout[${PYTHON_USEDEP}] + ) +" + +# tests fail on gcc newer than 5.8 +#RESTRICT="test" + +distutils_enable_tests pytest + +python_test() { + distutils_install_for_testing + + local -x PATH="${TEST_DIR}/scripts:${PATH}" \ + PYTHONPATH="${TEST_DIR}/lib" + + local deselect=( + # those tests fail on gcc newer than 5.8 + # https://github.com/gcovr/gcovr/issues/206 + gcovr/tests/test_gcovr.py + ) + + epytest gcovr ${deselect[@]/#/--deselect } +} |