mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-java/mockito: restrict min java to 1.8
Bug: https://bugs.gentoo.org/786750 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/21174 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
committed by
Miroslav Šulc
parent
cc67cd13dc
commit
7f6a257b2b
43
dev-java/mockito/mockito-1.9.5-r2.ebuild
Normal file
43
dev-java/mockito/mockito-1.9.5-r2.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
JAVA_PKG_IUSE="doc source"
|
||||
|
||||
inherit java-pkg-2 java-pkg-simple
|
||||
|
||||
DESCRIPTION="A mocking framework for Java"
|
||||
HOMEPAGE="https://github.com/mockito/mockito"
|
||||
SRC_URI="https://${PN}.googlecode.com/files/${P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
|
||||
|
||||
CDEPEND="
|
||||
dev-java/ant-core:0
|
||||
dev-java/hamcrest-core:0
|
||||
dev-java/junit:4
|
||||
dev-java/objenesis:0
|
||||
"
|
||||
RDEPEND="${CDEPEND}
|
||||
virtual/jre:1.8"
|
||||
DEPEND="${CDEPEND}
|
||||
virtual/jdk:1.8"
|
||||
BDEPEND="app-arch/unzip"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
JAVA_SRC_DIR="src"
|
||||
JAVA_GENTOO_CLASSPATH="junit-4,objenesis,hamcrest-core,ant-core"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
unzip "${S}"/sources/${PN}-core-${PV}-sources.jar -d src/ || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
find "${S}" -name "*.jar" -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user