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 202B7158089 for ; Fri, 27 Oct 2023 07:11:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4C282BC03D; Fri, 27 Oct 2023 07:11:32 +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 A669E2BC03D for ; Fri, 27 Oct 2023 07:11:32 +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 9B9F1335C5D for ; Fri, 27 Oct 2023 07:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06E7912D6 for ; Fri, 27 Oct 2023 07:11:30 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1698390654.2bd62154253e1c1391ad3fe834ceec1d036e46f3.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/java-getopt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/java-getopt/java-getopt-1.0.14-r1.ebuild X-VCS-Directories: dev-java/java-getopt/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 2bd62154253e1c1391ad3fe834ceec1d036e46f3 X-VCS-Branch: master Date: Fri, 27 Oct 2023 07:11:30 +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: 75836169-d3ec-4c78-9d19-829f47d6a5c5 X-Archives-Hash: 39adf357ab7b781cad27341cdc0a9fcb commit: 2bd62154253e1c1391ad3fe834ceec1d036e46f3 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Oct 26 12:52:50 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Oct 27 07:10:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bd62154 dev-java/java-getopt: drop 1.0.14-r1 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/java-getopt/java-getopt-1.0.14-r1.ebuild | 33 ----------------------- 1 file changed, 33 deletions(-) diff --git a/dev-java/java-getopt/java-getopt-1.0.14-r1.ebuild b/dev-java/java-getopt/java-getopt-1.0.14-r1.ebuild deleted file mode 100644 index 982f73ce8c98..000000000000 --- a/dev-java/java-getopt/java-getopt-1.0.14-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Java command line option parser" -HOMEPAGE="https://www.urbanophile.com/arenn/hacking/download.html" -SRC_URI="https://www.urbanophile.com/arenn/hacking/getopt/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="1" -KEYWORDS="amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -S="${WORKDIR}" - -src_prepare() { - default - mv gnu/getopt/buildx.xml build.xml || die -} - -src_install() { - java-pkg_dojar build/lib/gnu.getopt.jar - dodoc gnu/getopt/COPYING.LIB gnu/getopt/ChangeLog gnu/getopt/README - use doc && java-pkg_dojavadoc build/api - use source && java-pkg_dosrc gnu -}