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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2379B158041 for ; Mon, 25 Mar 2024 10:01:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69B60E29FE; Mon, 25 Mar 2024 10:01:49 +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 45C18E29FE for ; Mon, 25 Mar 2024 10:01:49 +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 40F3A34301C for ; Mon, 25 Mar 2024 10:01:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C337B29 for ; Mon, 25 Mar 2024 10:01:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1711360885.ba85df67ca35c280d8dde86097479918f81afa13.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/graphite2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild X-VCS-Directories: media-gfx/graphite2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ba85df67ca35c280d8dde86097479918f81afa13 X-VCS-Branch: master Date: Mon, 25 Mar 2024 10:01:46 +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: 02363fc4-c30a-4232-9d40-8e4047f8e620 X-Archives-Hash: 29dea73f42a3e56fc8c748b2ede5ff49 commit: ba85df67ca35c280d8dde86097479918f81afa13 Author: Sam James gentoo org> AuthorDate: Mon Mar 25 10:00:48 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 25 10:01:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba85df67 media-gfx/graphite2: skip known-failing test for GCC 13, run tests for multilib The multilib tests work fine, not sure what that was about. Skip a known-failing test (it's already reported upstream). Signed-off-by: Sam James gentoo.org> media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild index 580df138e20e..9439faed0363 100644 --- a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild +++ b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild @@ -5,7 +5,7 @@ EAPI=8 COMMIT=80c52493ef42e6fe605a69dcddd2a691cd8a1380 GENTOO_DEPEND_ON_PERL="no" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit flag-o-matic perl-module python-any-r1 cmake-multilib DESCRIPTION="Library providing rendering capabilities for complex non-Roman writing systems" @@ -101,11 +101,12 @@ src_compile() { } multilib_src_test() { - if multilib_is_native_abi; then - cmake_src_test - else - einfo "Cannot test since python is not multilib." - fi + CMAKE_SKIP_TESTS=( + # https://github.com/silnrsi/graphite/pull/74 + nametabletest + ) + + cmake_src_test } src_test() {