From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1B6C9138359 for ; Thu, 15 Oct 2020 07:19:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 551D5E08A8; Thu, 15 Oct 2020 07:19:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D1D8E08A8 for ; Thu, 15 Oct 2020 07:19:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBDB5340F00 for ; Thu, 15 Oct 2020 07:19:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4016F388 for ; Thu, 15 Oct 2020 07:19:32 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1602746107.5dfea79eb0054e60d5eef61ec06ebf43769d18c9.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/blessed/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/blessed/blessed-1.17.11.ebuild X-VCS-Directories: dev-python/blessed/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 5dfea79eb0054e60d5eef61ec06ebf43769d18c9 X-VCS-Branch: master Date: Thu, 15 Oct 2020 07:19:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: db3eb61b-c5a1-45ea-8a5c-f71a3ac61d1e X-Archives-Hash: f83920dc20e73e7c5b17d11ed94715f6 commit: 5dfea79eb0054e60d5eef61ec06ebf43769d18c9 Author: Louis Sautier gentoo org> AuthorDate: Thu Oct 15 07:08:34 2020 +0000 Commit: Louis Sautier gentoo 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 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 }