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 7F104158094 for ; Fri, 22 Jul 2022 17:37:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FF2FE0AAC; Fri, 22 Jul 2022 17:37:02 +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 C5876E096A for ; Fri, 22 Jul 2022 17:37:01 +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 9F477340C42 for ; Fri, 22 Jul 2022 17:37:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 015D354B for ; Fri, 22 Jul 2022 17:36:59 +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: <1658511390.461cf0f25203c8f14f1f8a93fc4fa51e3f0b417d.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/opentest4j/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/opentest4j/opentest4j-1.2.0-r1.ebuild X-VCS-Directories: dev-java/opentest4j/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 461cf0f25203c8f14f1f8a93fc4fa51e3f0b417d X-VCS-Branch: master Date: Fri, 22 Jul 2022 17:36:59 +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: c49cdf98-9cd4-44a1-9588-5319a0a07d1b X-Archives-Hash: e9de70430061390fb5dc6834ff3b8432 commit: 461cf0f25203c8f14f1f8a93fc4fa51e3f0b417d Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Mon Jul 18 11:18:43 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Jul 22 17:36:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=461cf0f2 dev-java/opentest4j: java 11 for module-info Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/opentest4j/opentest4j-1.2.0-r1.ebuild | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-java/opentest4j/opentest4j-1.2.0-r1.ebuild b/dev-java/opentest4j/opentest4j-1.2.0-r1.ebuild new file mode 100644 index 000000000000..1e76405a61ae --- /dev/null +++ b/dev-java/opentest4j/opentest4j-1.2.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +MAVEN_ID="org.opentest4j:opentest4j:1.2.0" +JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Open Test Alliance for the JVM" +HOMEPAGE="https://github.com/ota4j-team/opentest4j" +SRC_URI="https://github.com/ota4j-team/opentest4j/archive/r${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=" + >=virtual/jdk-11:* +" + +RDEPEND=" + >=virtual/jre-1.8:* +" + +S="${WORKDIR}/${PN}-r${PV}" + +JAVA_SRC_DIR=( src/{main,module}/java ) + +JAVA_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_TEST_SRC_DIR=( src/test/java ) +JAVA_TEST_RESOURCE_DIRS=( src/test/resources )