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 1B9681382C5 for ; Sun, 11 Feb 2018 05:37:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 103EEE0AD4; Sun, 11 Feb 2018 05:37:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DF138E0AD4 for ; Sun, 11 Feb 2018 05:37:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6542E335C3E for ; Sun, 11 Feb 2018 05:37:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 962E41DF for ; Sun, 11 Feb 2018 05:37:24 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1518327258.34187094625c5c45e338ca19e551a05aeaf993fe.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/html5-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/html5-parser/html5-parser-0.4.4-r1.ebuild dev-python/html5-parser/html5-parser-0.4.4.ebuild X-VCS-Directories: dev-python/html5-parser/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 34187094625c5c45e338ca19e551a05aeaf993fe X-VCS-Branch: master Date: Sun, 11 Feb 2018 05:37:24 +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-Archives-Salt: 3acc9bf6-1864-4e46-b131-7bceb08bc6bc X-Archives-Hash: 405cfa12d3f6fc2f5f2c89f29f00e2ef commit: 34187094625c5c45e338ca19e551a05aeaf993fe Author: Zac Medico gentoo org> AuthorDate: Sun Feb 11 05:25:34 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Feb 11 05:34:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34187094 dev-python/html5-parser: disable soup test Closes: https://bugs.gentoo.org/647066 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../{html5-parser-0.4.4.ebuild => html5-parser-0.4.4-r1.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-python/html5-parser/html5-parser-0.4.4.ebuild b/dev-python/html5-parser/html5-parser-0.4.4-r1.ebuild similarity index 80% rename from dev-python/html5-parser/html5-parser-0.4.4.ebuild rename to dev-python/html5-parser/html5-parser-0.4.4-r1.ebuild index 638a6fe3e5b..096a8db46e0 100644 --- a/dev-python/html5-parser/html5-parser-0.4.4.ebuild +++ b/dev-python/html5-parser/html5-parser-0.4.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -16,10 +16,13 @@ KEYWORDS="~amd64 ~arm ~x86" IUSE="" RDEPEND="dev-libs/libxml2:= + dev-python/chardet[${PYTHON_USEDEP}] >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { + # Soup is not used when lxml is available. + rm test/soup.py || die esetup.py test || die "Tests failed under ${EPYTHON}" }