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 DFB8F15808B for ; Sat, 16 Apr 2022 19:35:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA3EBE08EC; Sat, 16 Apr 2022 19:35:25 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 843DBE08BF for ; Sat, 16 Apr 2022 19:35:25 +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 1B1813412F6 for ; Sat, 16 Apr 2022 19:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E704D3AA for ; Sat, 16 Apr 2022 19:35:21 +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: <1650137710.35a25540c866fed841a4eeee77daf551ce4e8563.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/netpbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/netpbm/netpbm-10.86.30.ebuild X-VCS-Directories: media-libs/netpbm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 35a25540c866fed841a4eeee77daf551ce4e8563 X-VCS-Branch: master Date: Sat, 16 Apr 2022 19:35:21 +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: a1bd696f-00dd-4875-b76e-c051abae4525 X-Archives-Hash: 1d330da936b672184c6a862654cbdef8 commit: 35a25540c866fed841a4eeee77daf551ce4e8563 Author: Viorel Munteanu gmail com> AuthorDate: Sun Apr 10 17:08:57 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 16 19:35:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35a25540 media-libs/netpbm: Fix test on musl Closes: https://bugs.gentoo.org/836288 Signed-off-by: Viorel Munteanu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/24979 Signed-off-by: Sam James gentoo.org> media-libs/netpbm/netpbm-10.86.30.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/media-libs/netpbm/netpbm-10.86.30.ebuild b/media-libs/netpbm/netpbm-10.86.30.ebuild index f6fe77349f2f..1b6ec456f1d2 100644 --- a/media-libs/netpbm/netpbm-10.86.30.ebuild +++ b/media-libs/netpbm/netpbm-10.86.30.ebuild @@ -127,6 +127,11 @@ src_prepare() { sed -i -e '/^$/d' test/legacy-names.ok || die sed -i -e 's:png-roundtrip.*::' test/Test-Order || die fi + + # this test requires LC_ALL=en_US.iso88591, not available on musl + if use elibc_musl; then + sed -i -e 's:pbmtext-iso88591.*::' test/Test-Order || die + fi } src_configure() {