mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
After a message to gentoo-dev ML, and no reply from any user on x86, we decided to dekeyword most Java packages from x86, and reverse dependencies of them. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
31 lines
712 B
Bash
31 lines
712 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="org.mockito:mockito-core:1.9.5"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="A mocking framework for Java"
|
|
HOMEPAGE="https://github.com/mockito/mockito"
|
|
SRC_URI="https://repo1.maven.org/maven2/org/mockito/mockito-core/${PV}/mockito-core-${PV}-sources.jar"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
CP_DEPEND="
|
|
>=dev-java/ant-1.10.14-r3:0
|
|
dev-java/hamcrest-core:0
|
|
dev-java/junit:4
|
|
dev-java/objenesis:0
|
|
"
|
|
DEPEND=">=virtual/jdk-1.8:*
|
|
${CP_DEPEND}"
|
|
RDEPEND=">=virtual/jre-1.8:*
|
|
${CP_DEPEND}"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
JAVADOC_ARGS="-source 8"
|