mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-22 18:18:19 -07:00
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/24899 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Skeleton command:
|
|
# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/randomizedtesting/randomizedtesting/archive/release/2.7.9.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~x86" --ebuild randomized-runner-2.7.9.ebuild
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source test"
|
|
MAVEN_ID="com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.7.9"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="JUnit test runner and plugins for running JUnit tests with pseudo-randomness"
|
|
HOMEPAGE="https://labs.carrotsearch.com/randomizedtesting.html"
|
|
SRC_URI="https://github.com/randomizedtesting/randomizedtesting/archive/release/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
|
|
# Common dependencies
|
|
# POM: pom.xml
|
|
# junit:junit:4.13.1 -> >=dev-java/junit-4.13.2:4
|
|
|
|
CP_DEPEND="
|
|
>=dev-java/junit-4.12:4
|
|
"
|
|
|
|
# Compile dependencies
|
|
# POM: pom.xml
|
|
# test? org.assertj:assertj-core:2.2.0 -> >=dev-java/assertj-core-2.3.0:2
|
|
|
|
DEPEND="
|
|
>=virtual/jdk-1.8:*
|
|
${CP_DEPEND}
|
|
test? (
|
|
>=dev-java/assertj-core-2.3.0:2
|
|
)
|
|
"
|
|
|
|
RDEPEND="
|
|
>=virtual/jre-1.8:*
|
|
${CP_DEPEND}"
|
|
|
|
DOCS=( ../{CHANGES,CONTRIBUTING,README}.txt )
|
|
|
|
S="${WORKDIR}/randomizedtesting-release-${PV}/${PN}"
|
|
|
|
JAVA_SRC_DIR="src/main/java"
|
|
|
|
JAVA_TEST_GENTOO_CLASSPATH="assertj-core-2"
|
|
JAVA_TEST_SRC_DIR="src/test/java"
|
|
|
|
src_test() {
|
|
local vm_version="$(java-config -g PROVIDES_VERSION)"
|
|
if [[ "${vm_version}" -ge "17" ]] ; then
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.lang=ALL-UNNAMED )
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.util=ALL-UNNAMED )
|
|
JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/sun.nio.fs=ALL-UNNAMED )
|
|
fi
|
|
|
|
java-pkg-simple_src_test
|
|
}
|
|
|
|
src_install() {
|
|
default # https://bugs.gentoo.org/789582
|
|
java-pkg-simple_src_install
|
|
}
|