From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 318951581FD for ; Tue, 09 Sep 2025 23:45:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1C6D1340E36 for ; Tue, 09 Sep 2025 23:45:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1CCF91103BA; Tue, 09 Sep 2025 23:44:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id 1535A1103BA for ; Tue, 09 Sep 2025 23:44:59 +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 C7549340D7B for ; Tue, 09 Sep 2025 23:44:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E5CE20FF for ; Tue, 09 Sep 2025 23:44:57 +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: <1757461410.864b55e657a61323a44ff5a478aedd1b40138d52.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pango/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/pango/pango-1.56.4-r1.ebuild x11-libs/pango/pango-1.56.4.ebuild X-VCS-Directories: x11-libs/pango/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 864b55e657a61323a44ff5a478aedd1b40138d52 X-VCS-Branch: master Date: Tue, 09 Sep 2025 23:44:57 +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: b2eadac1-21c3-4801-8b2b-80ef96329449 X-Archives-Hash: 14f3ff4beaec77834bb4a7527aa84f15 commit: 864b55e657a61323a44ff5a478aedd1b40138d52 Author: Sam James gentoo org> AuthorDate: Tue Sep 9 23:43:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 9 23:43:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=864b55e6 x11-libs/pango: skip sensitive test in older versions too It's very sensitive to harfbuzz version etc. Bug: https://bugs.gentoo.org/960222 Signed-off-by: Sam James gentoo.org> x11-libs/pango/pango-1.56.4-r1.ebuild | 6 ++++-- x11-libs/pango/pango-1.56.4.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/x11-libs/pango/pango-1.56.4-r1.ebuild b/x11-libs/pango/pango-1.56.4-r1.ebuild index 2a1b68e14281..17eca1b014d3 100644 --- a/x11-libs/pango/pango-1.56.4-r1.ebuild +++ b/x11-libs/pango/pango-1.56.4-r1.ebuild @@ -51,9 +51,11 @@ src_prepare() { # get rid of a win32 example rm examples/pangowin32tobmp.c || die - # Skip broken test: - # https://gitlab.gnome.org/GNOME/pango/-/issues/677 + # Skip broken test: https://gitlab.gnome.org/GNOME/pango/-/issues/677 rm tests/layouts/valid-20.layout || die + + # Often breaks w/ new harfbuzz (bug #960222) + sed -i -e '/test-font-data/d' tests/meson.build || die } multilib_src_configure() { diff --git a/x11-libs/pango/pango-1.56.4.ebuild b/x11-libs/pango/pango-1.56.4.ebuild index a6eecb8b72fd..29d67e2508bd 100644 --- a/x11-libs/pango/pango-1.56.4.ebuild +++ b/x11-libs/pango/pango-1.56.4.ebuild @@ -50,9 +50,11 @@ src_prepare() { # get rid of a win32 example rm examples/pangowin32tobmp.c || die - # Skip broken test: - # https://gitlab.gnome.org/GNOME/pango/-/issues/677 + # Skip broken test: https://gitlab.gnome.org/GNOME/pango/-/issues/677 rm tests/layouts/valid-20.layout || die + + # Often breaks w/ new harfbuzz (bug #960222) + sed -i -e '/test-font-data/d' tests/meson.build || die } multilib_src_configure() {