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 49C461382C5 for ; Sat, 19 Jun 2021 11:54:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61585E0864; Sat, 19 Jun 2021 11:54:56 +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 EB744E0864 for ; Sat, 19 Jun 2021 11:54:55 +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 007BE335C92 for ; Sat, 19 Jun 2021 11:54:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 912E473A for ; Sat, 19 Jun 2021 11:54:53 +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: <1624103672.84a7d48724df1b91babb553c3ddee4f0f5137a7f.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/antlr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/antlr/antlr-2.7.7-r7.ebuild X-VCS-Directories: dev-java/antlr/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 84a7d48724df1b91babb553c3ddee4f0f5137a7f X-VCS-Branch: master Date: Sat, 19 Jun 2021 11:54:53 +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: 6534d110-9a3c-463a-8e78-2406bcf5a644 X-Archives-Hash: a69460c1e277113b3e7d2db54b1d072b commit: 84a7d48724df1b91babb553c3ddee4f0f5137a7f Author: Miroslav Šulc gentoo org> AuthorDate: Sat Jun 19 11:54:32 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Jun 19 11:54:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a7d487 dev-java/antlr: removed obsolete 2.7.7-r7 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/antlr/antlr-2.7.7-r7.ebuild | 44 ------------------------------------ 1 file changed, 44 deletions(-) diff --git a/dev-java/antlr/antlr-2.7.7-r7.ebuild b/dev-java/antlr/antlr-2.7.7-r7.ebuild deleted file mode 100644 index dfa69c64882..00000000000 --- a/dev-java/antlr/antlr-2.7.7-r7.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="A parser generator for many languages" -HOMEPAGE="https://www.antlr2.org/" -SRC_URI="https://www.antlr2.org/download/${P}.tar.gz" -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="examples source" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6 - source? ( app-arch/zip )" - -S="${WORKDIR}/${P}" -JAVA_SRC_DIR="${S}/${PN}" - -java_prepare() { - java-pkg_clean - - # Delete build files from examples. - find examples \( -name Makefile.in -o -name shiplist \) -delete || die -} - -src_configure() { - : # Avoid configure script. -} - -src_install() { - java-pkg-simple_src_install - java-pkg_dolauncher antlr --main antlr.Tool - dodoc {CHANGES,README}.txt - - use doc && java-pkg_dohtml -r doc/* - use examples && java-pkg_doexamples examples/java - use source && java-pkg_dosrc antlr -}