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 ED91B1384B4 for ; Mon, 2 Nov 2015 11:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F4C621C032; Mon, 2 Nov 2015 11:50:50 +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 2596C21C01C for ; Mon, 2 Nov 2015 11:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EC75340814 for ; Mon, 2 Nov 2015 11:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51CB11E59 for ; Mon, 2 Nov 2015 11:50:44 +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: <1446464832.c0b4061d1ac772e47b97f8bcea404d9f69144d97.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/six/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/six/six-1.10.0.ebuild X-VCS-Directories: dev-python/six/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c0b4061d1ac772e47b97f8bcea404d9f69144d97 X-VCS-Branch: master Date: Mon, 2 Nov 2015 11:50:44 +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: 216966f6-583d-4c2d-979b-6a954beda479 X-Archives-Hash: 4c9f6a2add755178e54e9631a4b7d2ab commit: c0b4061d1ac772e47b97f8bcea404d9f69144d97 Author: Justin Lecher gentoo org> AuthorDate: Sun Nov 1 18:09:57 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Nov 2 11:47:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b4061d dev-python/six: Restrict failing tests Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/six/six-1.10.0.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-python/six/six-1.10.0.ebuild b/dev-python/six/six-1.10.0.ebuild index 465102a..943c0f6 100644 --- a/dev-python/six/six-1.10.0.ebuild +++ b/dev-python/six/six-1.10.0.ebuild @@ -26,6 +26,16 @@ PATCHES=( "${FILESDIR}"/1.9.0-mapping.patch ) +python_prepare_all() { + # https://bitbucket.org/gutworth/six/issues/139/ + sed \ + -e 's:test_assertCountEqual:_&:g' \ + -e 's:test_assertRegex:_&:g' \ + -e 's:test_assertRaisesRegex:_&:g' \ + -i test_six.py || die + distutils-r1_python_prepare_all +} + python_compile_all() { use doc && emake -C documentation html }