commit: 5dfea79eb0054e60d5eef61ec06ebf43769d18c9 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org> AuthorDate: Thu Oct 15 07:08:34 2020 +0000 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org> CommitDate: Thu Oct 15 07:15:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dfea79e
dev-python/blessed: fix failing tests when pytest-xdist is missing Also keyword for ~x86. Closes: https://bugs.gentoo.org/749168 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org> dev-python/blessed/blessed-1.17.11.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/blessed/blessed-1.17.11.ebuild b/dev-python/blessed/blessed-1.17.11.ebuild index 70d2ea65e87..9904bbe0742 100644 --- a/dev-python/blessed/blessed-1.17.11.ebuild +++ b/dev-python/blessed/blessed-1.17.11.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="MIT" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" RDEPEND=" dev-python/six[${PYTHON_USEDEP}] @@ -35,6 +35,8 @@ python_prepare_all() { sed -e '/sphinxcontrib.manpage/d' -e '/sphinx_paramlinks/d' \ -e '/^for script in/,/runpy.run_path/d' \ -i docs/conf.py || die + # Requires pytest-xdist and has no value for us + sed -i '/^looponfailroots =/d' tox.ini || die distutils-r1_python_prepare_all }
