From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0FA91382C5 for ; Mon, 5 Mar 2018 22:15:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C30DE0940; Mon, 5 Mar 2018 22:15:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D5F6E0940 for ; Mon, 5 Mar 2018 22:15:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17D43335C2E for ; Mon, 5 Mar 2018 22:15:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B0D41ED for ; Mon, 5 Mar 2018 22:15:49 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1520288136.141e12d50b701355ffed489dff7857e16a52135f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-math/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/commons-math/commons-math-2.1-r2.ebuild X-VCS-Directories: dev-java/commons-math/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 141e12d50b701355ffed489dff7857e16a52135f X-VCS-Branch: master Date: Mon, 5 Mar 2018 22:15:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fdd8139a-46bd-4b35-bdb2-4c9983daca19 X-Archives-Hash: 8ffcaa9eaab020d59bd8a9ebddd11ee4 commit: 141e12d50b701355ffed489dff7857e16a52135f Author: Patrice Clement gentoo org> AuthorDate: Mon Mar 5 22:14:06 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Mar 5 22:15:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=141e12d5 dev-java/commons-math: EAPI 6 bump. Bug: https://bugs.gentoo.org/643320 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-java/commons-math/commons-math-2.1-r2.ebuild | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/dev-java/commons-math/commons-math-2.1-r2.ebuild b/dev-java/commons-math/commons-math-2.1-r2.ebuild new file mode 100644 index 00000000000..2d426ac62dc --- /dev/null +++ b/dev-java/commons-math/commons-math-2.1-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc test source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Lightweight, self-contained mathematics and statistics components" +HOMEPAGE="http://commons.apache.org/math/" +SRC_URI="mirror://apache/commons/math/source/${P}-src.tar.gz" +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=virtual/jdk-1.6 + test? ( + dev-java/ant-junit4 + dev-java/hamcrest-core:0 + )" + +RDEPEND=" + >=virtual/jre-1.6" + +S="${WORKDIR}/${P}-src" + +PATCHES=( "${FILESDIR}"/${PF}-buildfixes.patch ) + +src_test() { + java-pkg_jar-from junit-4 + java-pkg_jar-from hamcrest-core + ANT_TASKS="ant-junit4" eant -Djunit.jar=junit.jar test +} + +src_install() { + java-pkg_newjar target/${P}.jar ${PN}.jar + + use doc && java-pkg_dojavadoc target/apidocs + use source && java-pkg_dosrc src/main/java/org +}