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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 799A915808E for ; Fri, 29 Apr 2022 07:55:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0802E07A5; Fri, 29 Apr 2022 07:55:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 20698E07A5 for ; Fri, 29 Apr 2022 07:55:56 +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 C1E0134174B for ; Fri, 29 Apr 2022 07:55:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D91273BC for ; Fri, 29 Apr 2022 07:55:52 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1651218727.aa8837a588358bfd075e8543473aed225fe6ce97.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/guava-testlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/guava-testlib/guava-testlib-30.1.1.ebuild X-VCS-Directories: dev-java/guava-testlib/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: aa8837a588358bfd075e8543473aed225fe6ce97 X-VCS-Branch: master Date: Fri, 29 Apr 2022 07:55:52 +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: 66ed874f-220a-4187-864f-6a46507360a4 X-Archives-Hash: ff514fc31ed70ce50fe9d1383a3d5c01 commit: aa8837a588358bfd075e8543473aed225fe6ce97 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Wed Apr 27 15:22:57 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Apr 29 07:52:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8837a5 dev-java/guava-testlib: restrict tests Bug: https://bugs.gentoo.org/841338 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/25227 Signed-off-by: Florian Schmaus gentoo.org> dev-java/guava-testlib/guava-testlib-30.1.1.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-java/guava-testlib/guava-testlib-30.1.1.ebuild b/dev-java/guava-testlib/guava-testlib-30.1.1.ebuild index 161b55f46c44..693aff4d94cb 100644 --- a/dev-java/guava-testlib/guava-testlib-30.1.1.ebuild +++ b/dev-java/guava-testlib/guava-testlib-30.1.1.ebuild @@ -12,7 +12,7 @@ JAVA_TESTING_FRAMEWORKS="junit-4" inherit java-pkg-2 java-pkg-simple -DESCRIPTION="A set of java classes to assist the tests for Guava itself" +DESCRIPTION="A set of java classes to assist the tests for Guava itself" HOMEPAGE="https://github.com/google/guava" SRC_URI="https://github.com/google/guava/archive/v${PV}.tar.gz -> guava-${PV}.tar.gz" @@ -20,6 +20,9 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +# error: package com.google.common.truth does not exist +RESRTICT="test" + # Common dependencies # POM: ${PN} # com.google.code.findbugs:jsr305:3.0.2 -> !!!groupId-not-found!!! @@ -56,11 +59,9 @@ RDEPEND=" S="${WORKDIR}/guava-${PV}" -JAVA_SRC_DIR="${PN}/src" +JAVA_SRC_DIR=( "${PN}/src" ) # JAVA_RESOURCE_DIRS="${PN}/src" # JAVA_TEST_GENTOO_CLASSPATH="!!!groupId-not-found!!!" -# JAVA_TEST_SRC_DIR="${PN}/test" -# JAVA_TEST_RESOURCE_DIRS=( -# "${PN}/test" -# ) +JAVA_TEST_SRC_DIR=( "${PN}/test" ) +JAVA_TEST_RESOURCE_DIRS=( "${PN}/test" )