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 06D20158083 for ; Sat, 31 Aug 2024 07:52:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 535D7E29A9; Sat, 31 Aug 2024 07:52:30 +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 39D5CE29AA for ; Sat, 31 Aug 2024 07:52:30 +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 5AC4A34308B for ; Sat, 31 Aug 2024 07:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF2071F29 for ; Sat, 31 Aug 2024 07:52:27 +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: <1725090744.04031a6cef44eb83b85ff5bf7bac1e537eef861d.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/junit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/junit/junit-4.13.2_p20240222.ebuild X-VCS-Directories: dev-java/junit/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 04031a6cef44eb83b85ff5bf7bac1e537eef861d X-VCS-Branch: master Date: Sat, 31 Aug 2024 07:52:27 +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: 0712117b-8a7e-4763-9f1b-c1261ec0aaa4 X-Archives-Hash: 59c5437cba45e3ffca6bca5bd0ef9a43 commit: 04031a6cef44eb83b85ff5bf7bac1e537eef861d Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Aug 30 16:23:57 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Aug 31 07:52:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04031a6c dev-java/junit: test dependencies use java-pkg_getjars with '--build-only' Closes: https://bugs.gentoo.org/938743 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37748 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/junit/junit-4.13.2_p20240222.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-java/junit/junit-4.13.2_p20240222.ebuild b/dev-java/junit/junit-4.13.2_p20240222.ebuild index 6a2ce43fc405..50aa3c3c6763 100644 --- a/dev-java/junit/junit-4.13.2_p20240222.ebuild +++ b/dev-java/junit/junit-4.13.2_p20240222.ebuild @@ -44,7 +44,8 @@ src_prepare() { src_test() { cd "${JAVA_TEST_SRC_DIR}" || die - local CP=".:../resources:${S}/${PN}.jar:$(java-pkg_getjars ${JAVA_TEST_GENTOO_CLASSPATH})" + local CP=".:../resources:${S}/${PN}.jar:$(java-pkg_getjars \ + --build-only ${JAVA_TEST_GENTOO_CLASSPATH})" ejavac -cp "${CP}" -d . $(find * -name "*.java") # pom.xml lines 264-268