diff options
author | James Le Cuirot <chewi@gentoo.org> | 2016-11-24 22:49:18 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2016-11-26 22:22:07 +0000 |
commit | a179892c2c56ac3a94bc0bf8132392e00c9ec03b (patch) | |
tree | 9d57cfccb26df0144f212015d1739b7aad332c70 /dev-java/jackson/jackson-2.8.5.ebuild | |
parent | dev-python/oauth2client: clean up old. (diff) | |
download | gentoo-a179892c2c56ac3a94bc0bf8132392e00c9ec03b.tar.gz gentoo-a179892c2c56ac3a94bc0bf8132392e00c9ec03b.tar.bz2 gentoo-a179892c2c56ac3a94bc0bf8132392e00c9ec03b.zip |
dev-java/jackson: Version bump to 2.8.5
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-java/jackson/jackson-2.8.5.ebuild')
-rw-r--r-- | dev-java/jackson/jackson-2.8.5.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-java/jackson/jackson-2.8.5.ebuild b/dev-java/jackson/jackson-2.8.5.ebuild new file mode 100644 index 000000000000..bd497c3bb69b --- /dev/null +++ b/dev-java/jackson/jackson-2.8.5.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="High-performance JSON processor" +HOMEPAGE="https://github.com/FasterXML/jackson-core" +SRC_URI="https://github.com/FasterXML/${PN}-core/archive/${PN}-core-${PV}.tar.gz" +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=virtual/jre-1.7" +DEPEND=">=virtual/jdk-1.7 + test? ( dev-java/junit:4 )" + +S="${WORKDIR}/${PN}-core-${PN}-core-${PV}" +JAVA_SRC_DIR="src/main/java" + +src_prepare() { + default + + sed -e 's:@package@:com.fasterxml.jackson.core.json:g' \ + -e "s:@projectversion@:${PV}:g" \ + -e 's:@projectgroupid@:com.fasterxml.jackson.core:g' \ + -e 's:@projectartifactid@:jackson-core:g' \ + "${JAVA_SRC_DIR}/com/fasterxml/jackson/core/json/PackageVersion.java.in" \ + > "${JAVA_SRC_DIR}/com/fasterxml/jackson/core/json/PackageVersion.java" || die + + java-pkg-2_src_prepare +} + +src_compile() { + java-pkg-simple_src_compile + java-pkg_addres ${PN}.jar src/main/resources +} + +src_install() { + java-pkg-simple_src_install + dodoc README.md release-notes/{CREDITS,VERSION} +} + +src_test() { + cd src/test/java || die + + local CP=".:../resources:${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} +} |