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 956C315801A for ; Sun, 29 Aug 2021 16:38:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E153CE09BA; Sun, 29 Aug 2021 16:38:28 +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 C79DBE09BA for ; Sun, 29 Aug 2021 16:38:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8EEC7342B3B for ; Sun, 29 Aug 2021 16:38:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 183687E for ; Sun, 29 Aug 2021 16:38:25 +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: <1630255028.ad6f15d1fbfe8aa862cfa12cbbe6c5e7d5b139cc.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-lang/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/commons-lang/commons-lang-2.6-r1.ebuild X-VCS-Directories: dev-java/commons-lang/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: ad6f15d1fbfe8aa862cfa12cbbe6c5e7d5b139cc X-VCS-Branch: master Date: Sun, 29 Aug 2021 16:38:25 +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: 63f39f3f-1393-4b4d-bf72-db97316a0355 X-Archives-Hash: 2b70e14b1faf0de109979be5d028eab5 commit: ad6f15d1fbfe8aa862cfa12cbbe6c5e7d5b139cc Author: Miroslav Šulc gentoo org> AuthorDate: Sun Aug 29 16:36:02 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Aug 29 16:37:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad6f15d1 dev-java/commons-lang: removed obsolete 2.6-r1 Bug: https://bugs.gentoo.org/779472 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/commons-lang/commons-lang-2.6-r1.ebuild | 37 ------------------------ 1 file changed, 37 deletions(-) diff --git a/dev-java/commons-lang/commons-lang-2.6-r1.ebuild b/dev-java/commons-lang/commons-lang-2.6-r1.ebuild deleted file mode 100644 index ce82157c1ae..00000000000 --- a/dev-java/commons-lang/commons-lang-2.6-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source test" -MAVEN_ID="commons-lang:commons-lang:2.6" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Commons components to manipulate core java classes" -HOMEPAGE="http://commons.apache.org/lang/" -SRC_URI="mirror://apache/commons/lang/source/${P}-src.tar.gz" - -LICENSE="Apache-2.0" -KEYWORDS="amd64 ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris" -SLOT="2.1" -IUSE="" - -DEPEND=">=virtual/jdk-1.4 - test? ( - dev-java/ant-junit:0 - )" - -RDEPEND=">=virtual/jre-1.4" - -S="${WORKDIR}/${P}-src" - -JAVA_ANT_ENCODING="ISO-8859-1" - -src_install() { - java-pkg_newjar "target/${P}.jar" "${PN}.jar" - dodoc RELEASE-NOTES.txt NOTICE.txt - dohtml *.html - use doc && java-pkg_dojavadoc target/apidocs - use source && java-pkg_dosrc src/main/java/* -}