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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A292F1382C5 for ; Mon, 11 Jan 2021 15:23:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5468E08E8; Mon, 11 Jan 2021 15:23:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A5E3E08E8 for ; Mon, 11 Jan 2021 15:23:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06914340E77 for ; Mon, 11 Jan 2021 15:23:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BDF04C for ; Mon, 11 Jan 2021 15:23:06 +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: <1610378499.43adadcc0ac6b73ba617899fe3512e3610f6b940.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/libarchive/libarchive-3.5.1.ebuild X-VCS-Directories: app-arch/libarchive/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 43adadcc0ac6b73ba617899fe3512e3610f6b940 X-VCS-Branch: master Date: Mon, 11 Jan 2021 15:23:06 +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: 31a9e135-7db1-4d20-9363-080e095e6bbb X-Archives-Hash: 941bb5b6152455150ff96fefa80a857b commit: 43adadcc0ac6b73ba617899fe3512e3610f6b940 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 11 15:21:39 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 11 15:21:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43adadcc app-arch/libarchive: Run tests with C locale Closes: https://bugs.gentoo.org/736304 Signed-off-by: Michał Górny gentoo.org> app-arch/libarchive/libarchive-3.5.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app-arch/libarchive/libarchive-3.5.1.ebuild b/app-arch/libarchive/libarchive-3.5.1.ebuild index 427bce0c853..f258b0c01fc 100644 --- a/app-arch/libarchive/libarchive-3.5.1.ebuild +++ b/app-arch/libarchive/libarchive-3.5.1.ebuild @@ -106,6 +106,8 @@ multilib_src_test() { # sandbox is breaking long symlink behavior local -x SANDBOX_ON=0 local -x LD_PRELOAD= + # some locales trigger different output that breaks tests + local -x LC_ALL=C emake check }