From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 39E131388BF for ; Fri, 15 Jan 2016 09:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 593D8E07DD; Fri, 15 Jan 2016 09:50:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9BACE07DD for ; Fri, 15 Jan 2016 09:50:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D8C2340ABF for ; Fri, 15 Jan 2016 09:50:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AAF1A91 for ; Fri, 15 Jan 2016 09:50:41 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1452851434.ae7e7778f714c55daa1c602ead4714631d55fb2a.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/html5lib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/html5lib/html5lib-0.9999999.ebuild X-VCS-Directories: dev-python/html5lib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: ae7e7778f714c55daa1c602ead4714631d55fb2a X-VCS-Branch: master Date: Fri, 15 Jan 2016 09:50:41 +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: d690bb2f-7b7a-4f95-9c14-d644ca56b843 X-Archives-Hash: 474ff324b2d9eb809f2ef0d004284372 commit: ae7e7778f714c55daa1c602ead4714631d55fb2a Author: Justin Lecher gentoo org> AuthorDate: Fri Jan 15 08:50:26 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Jan 15 09:50:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae7e7778 dev-python/html5lib: Don't test with dev-python/lxml-3.5.0 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=571644 https://github.com/html5lib/html5lib-python/issues/224 Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/html5lib/html5lib-0.9999999.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-python/html5lib/html5lib-0.9999999.ebuild b/dev-python/html5lib/html5lib-0.9999999.ebuild index 69308d7..d14b5a2 100644 --- a/dev-python/html5lib/html5lib-0.9999999.ebuild +++ b/dev-python/html5lib/html5lib-0.9999999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -24,5 +24,11 @@ DEPEND="${RDEPEND} test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_test() { - nosetests || die "Tests fail with ${EPYTHON}" + # https://github.com/html5lib/html5lib-python/issues/224 + # https://bugs.gentoo.org/show_bug.cgi?id=571644 + has_version =dev-python/lxml-3.5.0 && \ + einfo "test are broken with dev-python/lxml-3.5.0" && \ + einfo "https://github.com/html5lib/html5lib-python/issues/224" && \ + return + nosetests --verbosity=3 || die "Tests fail with ${EPYTHON}" }