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 3C8AF158089 for ; Fri, 29 Sep 2023 05:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DD8F2BC023; Fri, 29 Sep 2023 05:53:45 +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 6305E2BC023 for ; Fri, 29 Sep 2023 05:53:45 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D2D8335C78 for ; Fri, 29 Sep 2023 05:53:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDCD9FAC for ; Fri, 29 Sep 2023 05:53:42 +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: <1695966817.476fbf3f679937345c0b4a61410951250bc63e19.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jna/, dev-java/jna/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jna/files/jna-5.13.0-LibCTest.patch dev-java/jna/jna-5.13.0-r1.ebuild X-VCS-Directories: dev-java/jna/files/ dev-java/jna/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 476fbf3f679937345c0b4a61410951250bc63e19 X-VCS-Branch: master Date: Fri, 29 Sep 2023 05:53:42 +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: bb2dcd62-4b0e-4e64-9c57-5d8cf17c109d X-Archives-Hash: c746dcc860516ae16e0943a1865b9493 commit: 476fbf3f679937345c0b4a61410951250bc63e19 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Jun 20 09:37:20 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Sep 29 05:53:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476fbf3f dev-java/jna: Ignore testStatvfs from com.sun.jna.platform.linux.LibCTest Closes: https://bugs.gentoo.org/906053 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/jna/files/jna-5.13.0-LibCTest.patch | 12 ++++++++++++ dev-java/jna/jna-5.13.0-r1.ebuild | 1 + 2 files changed, 13 insertions(+) diff --git a/dev-java/jna/files/jna-5.13.0-LibCTest.patch b/dev-java/jna/files/jna-5.13.0-LibCTest.patch new file mode 100644 index 000000000000..8cc9da563ed3 --- /dev/null +++ b/dev-java/jna/files/jna-5.13.0-LibCTest.patch @@ -0,0 +1,12 @@ +Bug #906053 +--- a/contrib/platform/test/com/sun/jna/platform/linux/LibCTest.java ++++ b/contrib/platform/test/com/sun/jna/platform/linux/LibCTest.java +@@ -71,7 +71,7 @@ public class LibCTest extends TestCase { + } + + @Test +- public void testStatvfs() throws IOException, InterruptedException { ++ public void noTestStatvfs() throws IOException, InterruptedException { + Statvfs vfs = new Statvfs(); + + String testDirectory = "/"; diff --git a/dev-java/jna/jna-5.13.0-r1.ebuild b/dev-java/jna/jna-5.13.0-r1.ebuild index 4a2c7b7ff1e4..9f97a53844f7 100644 --- a/dev-java/jna/jna-5.13.0-r1.ebuild +++ b/dev-java/jna/jna-5.13.0-r1.ebuild @@ -48,6 +48,7 @@ PATCHES=( "${FILESDIR}/5.11.0-makefile-flags.patch" "${FILESDIR}/jna-5.11.0-no-Werror.patch" "${FILESDIR}/jna-5.13.0-testpath.patch" + "${FILESDIR}/jna-5.13.0-LibCTest.patch" ) src_prepare() {