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 1097B158086 for ; Sat, 20 Nov 2021 19:20:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3D81E0794; Sat, 20 Nov 2021 19:20:15 +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 5D601E0798 for ; Sat, 20 Nov 2021 19:20:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B877D343176 for ; Sat, 20 Nov 2021 19:20:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30FD21CE for ; Sat, 20 Nov 2021 19:20:11 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1637435900.c297ea37887f0695d7e85458689d6833d7c48d78.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jffi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jffi/jffi-1.3.6.ebuild X-VCS-Directories: dev-java/jffi/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: c297ea37887f0695d7e85458689d6833d7c48d78 X-VCS-Branch: master Date: Sat, 20 Nov 2021 19:20:11 +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: ca376c28-0644-4836-b08e-2085f883ec69 X-Archives-Hash: 287aab3d0b399b1ed52396f8d1cc48d0 commit: c297ea37887f0695d7e85458689d6833d7c48d78 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Nov 20 16:42:54 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Nov 20 19:18:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c297ea37 dev-java/jffi: LC_ALL=C to avoid test failure Avoid https://github.com/jnr/jffi/issues/60 1) returnDefaultF128HighPrecision(com.kenai.jffi.NumberTest) java.lang.AssertionError Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/22916 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/jffi/jffi-1.3.6.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-java/jffi/jffi-1.3.6.ebuild b/dev-java/jffi/jffi-1.3.6.ebuild index 99abfcf99b76..000f9908913b 100644 --- a/dev-java/jffi/jffi-1.3.6.ebuild +++ b/dev-java/jffi/jffi-1.3.6.ebuild @@ -77,7 +77,9 @@ src_compile() { src_test() { # build native test library emake BUILD_DIR=build -f libtest/GNUmakefile - java-pkg-simple_src_test + + # https://github.com/jnr/jffi/issues/60 + LC_ALL=C java-pkg-simple_src_test } src_install() {