diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2021-04-04 22:05:42 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2021-04-04 23:49:30 +0200 |
commit | 7ef47ba2da5f2e99b3f4ced0266342338a6d8fd3 (patch) | |
tree | 85b0d397a058a5f23f2e1b7dd519972afd2520ea /dev-java/commons-collections | |
parent | dev-java/commons-collections: 3.2.1 -> EAPI 7 bump. (diff) | |
download | gentoo-7ef47ba2da5f2e99b3f4ced0266342338a6d8fd3.tar.gz gentoo-7ef47ba2da5f2e99b3f4ced0266342338a6d8fd3.tar.bz2 gentoo-7ef47ba2da5f2e99b3f4ced0266342338a6d8fd3.zip |
dev-java/commons-collections: 4.1 -> EAPI 7 bump.
Closes: https://bugs.gentoo.org/779490
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/commons-collections')
-rw-r--r-- | dev-java/commons-collections/commons-collections-4.1-r1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-java/commons-collections/commons-collections-4.1-r1.ebuild b/dev-java/commons-collections/commons-collections-4.1-r1.ebuild new file mode 100644 index 000000000000..b2156aa863cd --- /dev/null +++ b/dev-java/commons-collections/commons-collections-4.1-r1.ebuild @@ -0,0 +1,52 @@ +# 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 + +SLOT="4" +MY_P="${PN}${SLOT}-${PV}" + +DESCRIPTION="Extends the JCF classes with new interfaces, implementations and utilities" +HOMEPAGE="https://commons.apache.org/collections/" +SRC_URI="mirror://apache/${PN/-//}/source/${MY_P}-src.tar.gz" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~ppc64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + >=virtual/jdk-1.8 + test? ( + dev-java/easymock:3.2 + dev-java/junit:4 + )" + +RDEPEND=" + >=virtual/jre-1.8" + +S="${WORKDIR}/${MY_P}-src" + +JAVA_SRC_DIR="src/main/java" + +src_install() { + java-pkg-simple_src_install + dodoc RELEASE-NOTES.txt + docinto html + dodoc {DEVELOPERS-GUIDE,PROPOSAL}.html +} + +src_test() { + local DIR=src/test/java + local CP="${DIR}:${DIR}/../resources:${PN}.jar:$(java-pkg_getjars easymock-3.2,junit-4)" + local TESTS=$(find ${DIR} -name "*Test.java" ! -name "Abstract*" ! -name "BulkTest.*") + TESTS="${TESTS//src\/test\/java\/}" + TESTS="${TESTS//.java}" + TESTS="${TESTS//\//.}" + + ejavac -cp "${CP}" -d ${DIR} $(find ${DIR} -name "*.java") + ejunit4 -classpath "${CP}" ${TESTS} +} |