From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C0EC413888F for ; Tue, 6 Oct 2015 15:37:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62942E0879; Tue, 6 Oct 2015 15:37:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A2FDE0879 for ; Tue, 6 Oct 2015 15:37:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E437A34058A for ; Tue, 6 Oct 2015 15:37:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E3CAAD3 for ; Tue, 6 Oct 2015 15:37:11 +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: <1444145684.b571b9c899ea072cd1740fe7df6fc83fe97e1cae.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-jexl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/commons-jexl/commons-jexl-1.1.ebuild X-VCS-Directories: dev-java/commons-jexl/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b571b9c899ea072cd1740fe7df6fc83fe97e1cae X-VCS-Branch: master Date: Tue, 6 Oct 2015 15:37: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: 979445d7-2117-401b-a2c5-2d884b60f708 X-Archives-Hash: 5fd3592ad13784cbe865118578fe209e commit: b571b9c899ea072cd1740fe7df6fc83fe97e1cae Author: Patrice Clement gentoo org> AuthorDate: Tue Oct 6 11:33:49 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Oct 6 15:34:44 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b571b9c8 dev-java/commons-jexl: Clean up old. Package-Manager: portage-2.2.18 Signed-off-by: Patrice Clement gentoo.org> dev-java/commons-jexl/commons-jexl-1.1.ebuild | 52 --------------------------- 1 file changed, 52 deletions(-) diff --git a/dev-java/commons-jexl/commons-jexl-1.1.ebuild b/dev-java/commons-jexl/commons-jexl-1.1.ebuild deleted file mode 100644 index 8f01544..0000000 --- a/dev-java/commons-jexl/commons-jexl-1.1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source test" - -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="Expression language engine, can be embedded in applications and frameworks" -HOMEPAGE="http://commons.apache.org/jexl/" -SRC_URI="mirror://apache/jakarta/commons/jexl/source/${P}-src.tar.gz" - -CDEPEND="dev-java/commons-logging - =dev-java/junit-3*" - -RDEPEND=">=virtual/jre-1.4 - ${CDEPEND}" -DEPEND=">=virtual/jdk-1.4 - test? ( dev-java/ant-junit ) - ${CDEPEND}" - -LICENSE="Apache-2.0" -SLOT="1.0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -S="${WORKDIR}/${P}-src" - -src_unpack() { - unpack ${A} - cd "${S}" - - # https://issues.apache.org/jira/browse/JEXL-31 - epatch "${FILESDIR}/1.1-test-target.patch" - - mkdir -p target/lib && cd target/lib - java-pkg_jar-from junit junit.jar - java-pkg_jar-from commons-logging -} - -src_test() { - ANT_TASKS="ant-junit" eant test -} - -src_install() { - java-pkg_newjar target/${P}*.jar - - dodoc RELEASE-NOTES.txt || die - - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc "${S}"/src/java/* -}