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 5720C138334 for ; Fri, 29 Nov 2019 21:43:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2F42E03EC; Fri, 29 Nov 2019 21:43:20 +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 8ACA4E03EC for ; Fri, 29 Nov 2019 21:43:20 +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 A549C34D5A4 for ; Fri, 29 Nov 2019 21:43:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B90526C for ; Fri, 29 Nov 2019 21:43:18 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1575063790.b6212325f32b51420110d8aa6c8d773611d6b9b4.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyhamcrest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild X-VCS-Directories: dev-python/pyhamcrest/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: b6212325f32b51420110d8aa6c8d773611d6b9b4 X-VCS-Branch: master Date: Fri, 29 Nov 2019 21:43:18 +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: 0fff1117-bfe5-4059-a2e4-846f31373908 X-Archives-Hash: 2ad95bf17607a2f9b98b3588d5d6443a commit: b6212325f32b51420110d8aa6c8d773611d6b9b4 Author: Aaron Bauman gentoo org> AuthorDate: Fri Nov 29 21:42:33 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Nov 29 21:43:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6212325 dev-python/pyhamcrest: drop bad tests on HPPA Bug: https://bugs.gentoo.org/691446 Signed-off-by: Aaron Bauman gentoo.org> dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild index 6e8d193c9e8..84ed83d2543 100644 --- a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild +++ b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild @@ -42,6 +42,12 @@ python_prepare_all() { rm tests/hamcrest_unit_test/core/is_test.py || die "removing test #2 failed" rm tests/hamcrest_unit_test/core/isinstanceof_test.py || die "removing test #3 failed" + # These fail on HPPA. Drop them too. + if use hppa; then + rm tests/hamcrest_unit_test/base_matcher_test.py || die "removing test #4 failed" + rm tests/hamcrest_unit_test/core/described_as_test.py || die "removing test #5 failed" + fi + distutils-r1_python_prepare_all }