From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1262574-garchives=archives.gentoo.org@lists.gentoo.org>
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 82B121382C5
	for <garchives@archives.gentoo.org>; Fri, 19 Mar 2021 14:38:59 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 63659E08FC;
	Fri, 19 Mar 2021 14:38:58 +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 4891FE08FC
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Mar 2021 14:38:58 +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 DA968340D48
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Mar 2021 14:38:56 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0165B573
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Mar 2021 14:38:55 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1616164729.3deb99c7841130c7f0b240e58d9b6cf6551914c1.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zstandard/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/zstandard/zstandard-0.15.2-r1.ebuild
X-VCS-Directories: dev-python/zstandard/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 3deb99c7841130c7f0b240e58d9b6cf6551914c1
X-VCS-Branch: master
Date: Fri, 19 Mar 2021 14:38:55 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 2db0465a-0f63-4811-a007-420831e44b1a
X-Archives-Hash: a13b73d475c57731b7cbbedf4d2e9071

commit:     3deb99c7841130c7f0b240e58d9b6cf6551914c1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 19 14:36:28 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 19 14:38:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3deb99c7

dev-python/zstandard: Skip poor estimation test

Closes: https://bugs.gentoo.org/773979
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/zstandard/zstandard-0.15.2-r1.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/zstandard/zstandard-0.15.2-r1.ebuild b/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
index 1fe9edfd1a6..5d62182cb8c 100644
--- a/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
+++ b/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
@@ -29,6 +29,9 @@ src_prepare() {
 	# the C backend is repeatedly broken, so force CFFI instead
 	sed -e '/PYTHON_ZSTANDARD_IMPORT_POLICY/s:default:cffi:' \
 		-i zstandard/__init__.py || die
+	# unreliable, fails on x86
+	sed -e 's:test_estimated_compression_context_size:_&:' \
+		-i tests/test_data_structures.py || die
 
 	distutils-r1_src_prepare