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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5F393158042 for ; Sun, 3 Nov 2024 16:10:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27581E0A63; Sun, 3 Nov 2024 16:10:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AF94E0A60 for ; Sun, 3 Nov 2024 16:10:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 161B2340BEF for ; Sun, 3 Nov 2024 16:10:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62AB5197F for ; Sun, 3 Nov 2024 16:10:45 +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: <1730650224.76d27c20fb94b733ff3c5e5893f6151ea16d111c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-11.0.0-r1.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 76d27c20fb94b733ff3c5e5893f6151ea16d111c X-VCS-Branch: master Date: Sun, 3 Nov 2024 16:10:45 +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: 7ac1cd61-cdcd-44de-bba3-1bf439bbe8aa X-Archives-Hash: c204928829501517933ba665bacf9776 commit: 76d27c20fb94b733ff3c5e5893f6151ea16d111c Author: Michał Górny gentoo org> AuthorDate: Sun Nov 3 16:09:30 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 3 16:10:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d27c20 dev-python/pillow: Deselect a known test failure on PPC Signed-off-by: Michał Górny gentoo.org> dev-python/pillow/pillow-11.0.0-r1.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-python/pillow/pillow-11.0.0-r1.ebuild b/dev-python/pillow/pillow-11.0.0-r1.ebuild index f1fbdcb83c33..2deee775548d 100644 --- a/dev-python/pillow/pillow-11.0.0-r1.ebuild +++ b/dev-python/pillow/pillow-11.0.0-r1.ebuild @@ -117,6 +117,17 @@ python_test() { Tests/test_file_libtiff.py::TestFileLibTiff::test_lzma ) + case ${ARCH} in + ppc) + EPYTEST_DESELECT+=( + # https://github.com/python-pillow/Pillow/issues/7008 + # (we've reverted the upstream patch because it was worse + # than the original issue) + Tests/test_file_libtiff.py::TestFileLibTiff::test_exif_ifd + ) + ;; + esac + "${EPYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}" local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 # leak tests are fragile and broken under xdist