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 07D9915808B for ; Tue, 15 Mar 2022 21:34:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D2BCE09D4; Tue, 15 Mar 2022 21:34:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 30640E09D4 for ; Tue, 15 Mar 2022 21:34:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 586FB342D7F for ; Tue, 15 Mar 2022 21:34:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27E54379 for ; Tue, 15 Mar 2022 19:54:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647374035.3f69873ced2fe00d675b95ccbe3421c8e869f2e2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jgoodies-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jgoodies-common/jgoodies-common-1.8.0.ebuild X-VCS-Directories: dev-java/jgoodies-common/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3f69873ced2fe00d675b95ccbe3421c8e869f2e2 X-VCS-Branch: master Date: Tue, 15 Mar 2022 19:54:31 +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: 6c396a1b-6ad1-4d3e-92b0-ac851e29c834 X-Archives-Hash: 63adc130efef7a6c2a877b1077d52b42 commit: 3f69873ced2fe00d675b95ccbe3421c8e869f2e2 Author: Sam James gentoo org> AuthorDate: Tue Mar 15 19:53:55 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 15 19:53:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f69873c dev-java/jgoodies-common: drop 1.8.0 Closes: https://bugs.gentoo.org/835344 Signed-off-by: Sam James gentoo.org> .../jgoodies-common/jgoodies-common-1.8.0.ebuild | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/dev-java/jgoodies-common/jgoodies-common-1.8.0.ebuild b/dev-java/jgoodies-common/jgoodies-common-1.8.0.ebuild deleted file mode 100644 index 0c830c5581e9..000000000000 --- a/dev-java/jgoodies-common/jgoodies-common-1.8.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -MY_PN="common" -MY_PV=${PV//./_} -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="JGoodies Common Library" -HOMEPAGE="http://www.jgoodies.com/" -SRC_URI="http://www.jgoodies.com/download/libraries/${MY_PN}/${MY_P}.zip" - -LICENSE="BSD" -SLOT="1.8" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="" - -RESTRICT="test" - -RDEPEND=">=virtual/jre-1.6" - -DEPEND=" - app-arch/unzip - >=virtual/jdk-1.6" - -S="${WORKDIR}"/${P} - -JAVA_SRC_DIR="src" - -java_prepare() { - mkdir src || die - unzip ${P}-sources.jar -d src || die - rm "${S}"/pom.xml "${S}"/*.jar || die -}