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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 821AB158087 for ; Fri, 31 Dec 2021 09:32:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF52D2BC013; Fri, 31 Dec 2021 09:31:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9790A2BC013 for ; Fri, 31 Dec 2021 09:31:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50A16342E1E for ; Fri, 31 Dec 2021 09:31:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 902DF26F for ; Fri, 31 Dec 2021 09:31:56 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1640943108.e7d75cc6a3d28df369869cf02a6cdc1d93fcef6c.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-jxpath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/commons-jxpath/commons-jxpath-1.3-r4.ebuild X-VCS-Directories: dev-java/commons-jxpath/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: e7d75cc6a3d28df369869cf02a6cdc1d93fcef6c X-VCS-Branch: master Date: Fri, 31 Dec 2021 09:31:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a28277be-faa3-45e9-afbd-72ce9e3ac668 X-Archives-Hash: 01e4c27cdaba50f0291f798362358d12 commit: e7d75cc6a3d28df369869cf02a6cdc1d93fcef6c Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Dec 30 11:09:54 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Dec 31 09:31:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d75cc6 dev-java/commons-jxpath: Drop 1.3-r4 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/23582 Signed-off-by: Miroslav Šulc gentoo.org> .../commons-jxpath/commons-jxpath-1.3-r4.ebuild | 63 ---------------------- 1 file changed, 63 deletions(-) diff --git a/dev-java/commons-jxpath/commons-jxpath-1.3-r4.ebuild b/dev-java/commons-jxpath/commons-jxpath-1.3-r4.ebuild deleted file mode 100644 index bc77ab2d8ed2..000000000000 --- a/dev-java/commons-jxpath/commons-jxpath-1.3-r4.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Applies XPath expressions to graphs of objects of all kinds" -HOMEPAGE="https://commons.apache.org/jxpath/" -SRC_URI="mirror://apache/commons/jxpath/source/${P}-src.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -S="${WORKDIR}/${P}-src" - -CDEPEND=" - dev-java/jdom:0 - java-virtuals/servlet-api:3.0 - dev-java/commons-beanutils:1.7" - -RDEPEND=" - ${CDEPEND} - >=virtual/jre-1.6" - -DEPEND=" - ${CDEPEND} - test? ( - dev-java/ant-junit:0 - dev-java/commons-logging:0 - dev-java/commons-collections:0 - ) - >=virtual/jdk-1.6" - -JAVA_ANT_REWRITE_CLASSPATH="yes" -EANT_GENTOO_CLASSPATH="jdom,servlet-api-3.0,commons-beanutils-1.7" - -EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},commons-logging,commons-collections,ant-junit" -ANT_TASKS="ant-junit" -EANT_TEST_TARGET="test" - -src_prepare() { - default - - # Don't automatically run tests. - sed 's/depends="compile,test"/depends="compile"/' -i build.xml || die - - # This one needs mockrunner. See #259027. - rm -v src/test/org/apache/commons/jxpath/servlet/JXPathServletContextTest.java || die -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - java-pkg_dojar target/${PN}.jar - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/java/* -}