From f84e6237d56f8305531c5c2bbc7f17f2cbbae75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 14 Oct 2022 13:32:52 +0200 Subject: [PATCH] dev-python/jaraco-test: Remove stray dep on toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- ...araco-test-5.1.0.ebuild => jaraco-test-5.1.0-r1.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename dev-python/jaraco-test/{jaraco-test-5.1.0.ebuild => jaraco-test-5.1.0-r1.ebuild} (88%) diff --git a/dev-python/jaraco-test/jaraco-test-5.1.0.ebuild b/dev-python/jaraco-test/jaraco-test-5.1.0-r1.ebuild similarity index 88% rename from dev-python/jaraco-test/jaraco-test-5.1.0.ebuild rename to dev-python/jaraco-test/jaraco-test-5.1.0-r1.ebuild index b372c99a21bef..1bfd53ff5f732 100644 --- a/dev-python/jaraco-test/jaraco-test-5.1.0.ebuild +++ b/dev-python/jaraco-test/jaraco-test-5.1.0-r1.ebuild @@ -26,7 +26,12 @@ RDEPEND=" dev-python/jaraco-context[${PYTHON_USEDEP}] dev-python/jaraco-functools[${PYTHON_USEDEP}] dev-python/more-itertools[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}] " distutils_enable_tests pytest + +src_prepare() { + # stray dep + sed -i -e '/toml/d' setup.cfg || die + distutils-r1_src_prepare +}