From: Brian Dolbec Date: Mon, 18 May 2020 20:43:10 +0000 (-0700) Subject: dev-python/cbor2: sed out pytest-cov dep X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=73faf1f8b6d8abe39b59677d1528a19346eea97c;p=gentoo.git dev-python/cbor2: sed out pytest-cov dep Move pytest dep to BDEPEND Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Brian Dolbec --- diff --git a/dev-python/cbor2/cbor2-5.1.0.ebuild b/dev-python/cbor2/cbor2-5.1.0.ebuild index b1d49e53fa90..0ab2f141e004 100644 --- a/dev-python/cbor2/cbor2-5.1.0.ebuild +++ b/dev-python/cbor2/cbor2-5.1.0.ebuild @@ -19,12 +19,23 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86" DEPEND=" dev-python/setuptools_scm[${PYTHON_USEDEP}] +" +BDEPEND=" test? ( dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] ) " RDEPEND="${DEPEND}" +python_prepare_all() { + + # remove pytest-cov dep + sed -e "s/pytest-cov//" \ + -e "s/--cov //" \ + -i setup.cfg || die + + distutils-r1_python_prepare_all +} + distutils_enable_tests pytest