diff options
author | James Le Cuirot <chewi@gentoo.org> | 2017-09-01 21:09:54 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2017-09-01 21:13:07 +0100 |
commit | 2a6b0dac722100658387d137d17c1c79a10749ef (patch) | |
tree | abb682a26d6b11c0bef47fb47e9d4d70f26fc1b5 /dev-java/commons-cli/commons-cli-1.4.ebuild | |
parent | dev-java/commons-cli: Remove old 1.2 (diff) | |
download | gentoo-2a6b0dac722100658387d137d17c1c79a10749ef.tar.gz gentoo-2a6b0dac722100658387d137d17c1c79a10749ef.tar.bz2 gentoo-2a6b0dac722100658387d137d17c1c79a10749ef.zip |
dev-java/commons-cli: Version bump to 1.4
Package-Manager: Portage-2.3.8, Repoman-2.3.2
Diffstat (limited to 'dev-java/commons-cli/commons-cli-1.4.ebuild')
-rw-r--r-- | dev-java/commons-cli/commons-cli-1.4.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-java/commons-cli/commons-cli-1.4.ebuild b/dev-java/commons-cli/commons-cli-1.4.ebuild new file mode 100644 index 000000000000..e047a4e68228 --- /dev/null +++ b/dev-java/commons-cli/commons-cli-1.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A Java library for working with the command line arguments and options" +HOMEPAGE="http://commons.apache.org/cli/" +SRC_URI="mirror://apache/commons/cli/source/${P}-src.tar.gz" +LICENSE="Apache-2.0" +SLOT="1" +KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="test" + +RDEPEND=">=virtual/jre-1.7" + +DEPEND=">=virtual/jdk-1.7 + test? ( dev-java/junit:4 )" + +S="${WORKDIR}/${P}-src" +JAVA_SRC_DIR="src/main/java" + +src_install() { + java-pkg-simple_src_install + dodoc CONTRIBUTING.md NOTICE.txt README.md RELEASE-NOTES.txt +} + +src_test() { + cd src/test/java || die + + local CP=".:${S}/${PN}.jar:$(java-pkg_getjars junit-4)" + local TESTS=$(find * -name "*Test.java") + TESTS="${TESTS//.java}" + TESTS="${TESTS//\//.}" + + ejavac -cp "${CP}" -d . $(find * -name "*.java") + ejunit4 -classpath "${CP}" ${TESTS} +} |