From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1721664-garchives=archives.gentoo.org@lists.gentoo.org> 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 finch.gentoo.org (Postfix) with ESMTPS id 86CD21582EF for <garchives@archives.gentoo.org>; Tue, 25 Feb 2025 18:58:27 +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 6D51634324D for <garchives@archives.gentoo.org>; Tue, 25 Feb 2025 18:58:27 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6AA191103AC; Tue, 25 Feb 2025 18:58:26 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 6324D1103AC for <gentoo-commits@lists.gentoo.org>; Tue, 25 Feb 2025 18:58:26 +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 0CE053431FC for <gentoo-commits@lists.gentoo.org>; Tue, 25 Feb 2025 18:58:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C0AC1289 for <gentoo-commits@lists.gentoo.org>; Tue, 25 Feb 2025 18:58:24 +0000 (UTC) From: "Ulrich Müller" <ulm@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, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1740509895.006826b83d191c408ee861b76c464ba31cdd0fda.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-28.2-r15.ebuild app-editors/emacs/emacs-29.4-r1.ebuild app-editors/emacs/emacs-30.1.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 006826b83d191c408ee861b76c464ba31cdd0fda X-VCS-Branch: master Date: Tue, 25 Feb 2025 18:58:24 +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: e79bb339-2282-4ab2-9f66-6f0b681e0226 X-Archives-Hash: 3bc678d099a6f4b4c9c515e893965b13 commit: 006826b83d191c408ee861b76c464ba31cdd0fda Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Tue Feb 25 18:29:19 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Tue Feb 25 18:58:15 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=006826b8 app-editors/emacs: Fix test failure with musl libc Closes: https://bugs.gentoo.org/906012 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-editors/emacs/emacs-28.2-r15.ebuild | 5 +++++ app-editors/emacs/emacs-29.4-r1.ebuild | 5 +++++ app-editors/emacs/emacs-30.1.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/app-editors/emacs/emacs-28.2-r15.ebuild b/app-editors/emacs/emacs-28.2-r15.ebuild index a086bdaa4926..28b52590e8f0 100644 --- a/app-editors/emacs/emacs-28.2-r15.ebuild +++ b/app-editors/emacs/emacs-28.2-r15.ebuild @@ -405,6 +405,11 @@ src_test() { # internet-is-working %src/process-tests.el ) + use elibc_musl && exclude_tests+=( + # Reason: newlocale(3) lenient locale validation #906012 + # fns-tests-collate-strings + %src/fns-tests.el + ) use threads || exclude_tests+=( %src/emacs-module-tests.el %src/keyboard-tests.el diff --git a/app-editors/emacs/emacs-29.4-r1.ebuild b/app-editors/emacs/emacs-29.4-r1.ebuild index 17fbf8c994e9..33f58db5b267 100644 --- a/app-editors/emacs/emacs-29.4-r1.ebuild +++ b/app-editors/emacs/emacs-29.4-r1.ebuild @@ -460,6 +460,11 @@ src_test() { # Bug #922525 %lisp/progmodes/typescript-ts-mode-tests.el ) + use elibc_musl && exclude_tests+=( + # Reason: newlocale(3) lenient locale validation #906012 + # fns-tests-collate-strings + %src/fns-tests.el + ) use threads || exclude_tests+=( %lisp/server-tests.el %lisp/progmodes/eglot-tests.el diff --git a/app-editors/emacs/emacs-30.1.ebuild b/app-editors/emacs/emacs-30.1.ebuild index c41918367fa9..37393a545f4a 100644 --- a/app-editors/emacs/emacs-30.1.ebuild +++ b/app-editors/emacs/emacs-30.1.ebuild @@ -449,6 +449,11 @@ src_test() { # internet-is-working %src/process-tests.el ) + use elibc_musl && exclude_tests+=( + # Reason: newlocale(3) lenient locale validation #906012 + # fns-tests-collate-strings + %src/fns-tests.el + ) use threads || exclude_tests+=( %lisp/progmodes/eglot-tests.el %src/emacs-module-tests.el