From: Louis Sautier Date: Mon, 18 Jun 2018 20:45:45 +0000 (+0200) Subject: dev-python/pygal: fix build when pytest-runner isn't installed X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b48847a629594c45b2a4140b2c074f318e8c728f;p=gentoo.git dev-python/pygal: fix build when pytest-runner isn't installed Closes: https://bugs.gentoo.org/658420 Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- diff --git a/dev-python/pygal/pygal-2.4.0.ebuild b/dev-python/pygal/pygal-2.4.0.ebuild index 43ff035e62b6..2a15528e4bb6 100644 --- a/dev-python/pygal/pygal-2.4.0.ebuild +++ b/dev-python/pygal/pygal-2.4.0.ebuild @@ -38,6 +38,8 @@ DOCS=( docs/changelog.rst README.md ) python_prepare_all() { sed -i "/sphinx.ext.intersphinx/d" docs/conf.py || die + # Not actually required unless we want to do setup.py test + sed -i "s/'pytest-runner'\(,\)\?//" setup.py || die distutils-r1_python_prepare_all }