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 BB7C4138334 for ; Tue, 17 Jul 2018 08:03:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5540BE090F; Tue, 17 Jul 2018 08:03:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2910EE090F for ; Tue, 17 Jul 2018 08:03:01 +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 38185335C63 for ; Tue, 17 Jul 2018 08:02:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05000377 for ; Tue, 17 Jul 2018 08:02:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1531814571.eb0778d6cce1f4cac0f2d2ed6fffcc4dd070d5a2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lxml/lxml-4.2.2.ebuild X-VCS-Directories: dev-python/lxml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: eb0778d6cce1f4cac0f2d2ed6fffcc4dd070d5a2 X-VCS-Branch: master Date: Tue, 17 Jul 2018 08:02:56 +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: 30a4a1e9-dc58-4891-9dc9-ad14c852dadb X-Archives-Hash: bd65ebde936f6a6ea90b0e93ae55d6da commit: eb0778d6cce1f4cac0f2d2ed6fffcc4dd070d5a2 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 17 08:02:35 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 17 08:02:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0778d6 dev-python/lxml: Skip broken xslt log test dev-python/lxml/lxml-4.2.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/lxml/lxml-4.2.2.ebuild b/dev-python/lxml/lxml-4.2.2.ebuild index f4a36d5d252..c84f543f21c 100644 --- a/dev-python/lxml/lxml-4.2.2.ebuild +++ b/dev-python/lxml/lxml-4.2.2.ebuild @@ -34,7 +34,11 @@ PATCHES=( python_prepare_all() { # avoid replacing PYTHONPATH in tests. - sed -i '/sys\.path/d' test.py || die + sed -i -e '/sys\.path/d' test.py || die + + # apparently logs have changed with libxslt upgrade + # https://bugs.launchpad.net/lxml/+bug/1782078 + sed -i -e '/assertEqual(4, len(log)/d' src/lxml/tests/test_threading.py || die distutils-r1_python_prepare_all }