commit: b2eb8da85113d00090c3e287249c7234ae93b42d Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net> AuthorDate: Sun Dec 21 09:54:45 2025 +0000 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> CommitDate: Sun Jan 25 18:28:03 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2eb8da8
dev-java/junit-pioneer: add 1.9.1-r2 with updated dependencies Update dependency on dev-java/jackson-databind in order to allow dropping the old version. Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org> .../junit-pioneer/junit-pioneer-1.9.1-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-java/junit-pioneer/junit-pioneer-1.9.1-r2.ebuild b/dev-java/junit-pioneer/junit-pioneer-1.9.1-r2.ebuild new file mode 100644 index 000000000000..a86610abf4d4 --- /dev/null +++ b/dev-java/junit-pioneer/junit-pioneer-1.9.1-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# We cannot run the tests because of too many missing test dependencies. +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="JUnit 5 Extension Pack" +HOMEPAGE="https://junit-pioneer.org" +SRC_URI="https://github.com/junit-pioneer/junit-pioneer/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}" + +LICENSE="EPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64" + +DEPEND=" + >=dev-java/jackson-databind-2.20.0:0 + dev-java/junit:5 + >=virtual/jdk-11:* +" + +RDEPEND=">=virtual/jre-1.8:*" + +JAVA_CLASSPATH_EXTRA="jackson-databind junit-5" +JAVA_RESOURCE_DIRS="src/main/resources" +JAVA_SRC_DIR=( src/main/{java,module} )
