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 2A0D41382C5 for ; Sat, 14 Apr 2018 19:13:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58FF6E075F; Sat, 14 Apr 2018 19:13:14 +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 37C8EE075F for ; Sat, 14 Apr 2018 19:13:14 +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 33480335C5C for ; Sat, 14 Apr 2018 19:13:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62DB0283 for ; Sat, 14 Apr 2018 19:13:11 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1523733179.8497fe8bba7d6b415f6faf42a405349987c0f70d.zlogene@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-r1.ebuild X-VCS-Directories: dev-java/commons-math/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 8497fe8bba7d6b415f6faf42a405349987c0f70d X-VCS-Branch: master Date: Sat, 14 Apr 2018 19:13:11 +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: faa37a4b-2aa8-4ef7-80aa-beb57ecb6e2e X-Archives-Hash: f8ba556482586ad1e0c543d92cf6d7c3 commit: 8497fe8bba7d6b415f6faf42a405349987c0f70d Author: Mikle Kolyada gentoo org> AuthorDate: Sat Apr 14 19:12:31 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Apr 14 19:12:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8497fe8b dev-java/commons-math: Drop old Closes: https://bugs.gentoo.org/643320 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-java/commons-math/commons-math-2.1-r1.ebuild | 43 ------------------------ 1 file changed, 43 deletions(-) diff --git a/dev-java/commons-math/commons-math-2.1-r1.ebuild b/dev-java/commons-math/commons-math-2.1-r1.ebuild deleted file mode 100644 index 09d67fb2b5d..00000000000 --- a/dev-java/commons-math/commons-math-2.1-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -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" -IUSE="" - -DEPEND=">=virtual/jdk-1.5 - test? ( - dev-java/ant-junit4 - dev-java/hamcrest-core:0 - )" - -RDEPEND=">=virtual/jre-1.5" - -S="${WORKDIR}/${P}-src" - -java_prepare() { - epatch "${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 -}