summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Sautier <sbraz@gentoo.org>2020-10-15 09:08:34 +0200
committerLouis Sautier <sbraz@gentoo.org>2020-10-15 09:15:07 +0200
commit5dfea79eb0054e60d5eef61ec06ebf43769d18c9 (patch)
tree74078d6e35f4fce87ef3e07f930182c45da5c422
parentdev-python/yaql: add DISTUTILS_USE_SETUPTOOLS (diff)
downloadgentoo-5dfea79eb0054e60d5eef61ec06ebf43769d18c9.tar.gz
gentoo-5dfea79eb0054e60d5eef61ec06ebf43769d18c9.tar.bz2
gentoo-5dfea79eb0054e60d5eef61ec06ebf43769d18c9.zip
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@gentoo.org>
-rw-r--r--dev-python/blessed/blessed-1.17.11.ebuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-python/blessed/blessed-1.17.11.ebuild b/dev-python/blessed/blessed-1.17.11.ebuild
index 70d2ea65e876..9904bbe07429 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
}