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 A238313933E for ; Wed, 30 Jun 2021 09:36:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1892E0864; Wed, 30 Jun 2021 09:36:01 +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 BEB00E0864 for ; Wed, 30 Jun 2021 09:36:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AFC3133BEF5 for ; Wed, 30 Jun 2021 09:35:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D53D7D5 for ; Wed, 30 Jun 2021 09:35:56 +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: <1625045728.8a4ff69f70ef13f417ce3c4afecbecb526f3c43c.flow@gentoo> Subject: [gentoo-commits] proj/java:master commit in: dev-java/rife-continuations/ X-VCS-Repository: proj/java X-VCS-Files: dev-java/rife-continuations/Manifest dev-java/rife-continuations/metadata.xml dev-java/rife-continuations/rife-continuations-0.1_pre20060304-r1.ebuild X-VCS-Directories: dev-java/rife-continuations/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 8a4ff69f70ef13f417ce3c4afecbecb526f3c43c X-VCS-Branch: master Date: Wed, 30 Jun 2021 09:35: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: 2f474390-0323-4eb1-8f64-6f3b73d0ad2e X-Archives-Hash: 39c99caad6efefe97d593e3be81e62db commit: 8a4ff69f70ef13f417ce3c4afecbecb526f3c43c Author: Florian Schmaus gentoo org> AuthorDate: Wed Jun 30 09:34:49 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jun 30 09:35:28 2021 +0000 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=8a4ff69f dev-java/rife-continuations: treeclean Reason: failed sourcing ebuild: java-pkg-2: EAPI 0 not supported, (java-pkg-2.eclass, line 17: called die) Bug: https://bugs.gentoo.org/759889 Signed-off-by: Florian Schmaus gentoo.org> dev-java/rife-continuations/Manifest | 1 - dev-java/rife-continuations/metadata.xml | 8 ----- .../rife-continuations-0.1_pre20060304-r1.ebuild | 35 ---------------------- 3 files changed, 44 deletions(-) diff --git a/dev-java/rife-continuations/Manifest b/dev-java/rife-continuations/Manifest deleted file mode 100644 index af95baae..00000000 --- a/dev-java/rife-continuations/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST rife-continuations-20060304.tar.bz2 188483 SHA256 f90ed70fc326da846bf16c15f4a555f78f6ea749d2fd8f6002ae6483b4cf1012 diff --git a/dev-java/rife-continuations/metadata.xml b/dev-java/rife-continuations/metadata.xml deleted file mode 100644 index 952a4b9b..00000000 --- a/dev-java/rife-continuations/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/rife-continuations/rife-continuations-0.1_pre20060304-r1.ebuild b/dev-java/rife-continuations/rife-continuations-0.1_pre20060304-r1.ebuild deleted file mode 100644 index 15797655..00000000 --- a/dev-java/rife-continuations/rife-continuations-0.1_pre20060304-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit java-pkg-2 java-ant-2 - -DATESTAMP="${PV##*pre}" -MY_P="${PN}-${DATESTAMP}" -DESCRIPTION="General-purpose library providing native continuations for Java." -HOMEPAGE="https://rife.dev.java.net/" -SRC_URI="http://www.gentoo.org/~nichoj/distfiles/${MY_P}.tar.bz2" - -LICENSE="|| ( LGPL-2.1 CDDL )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.3 - dev-java/ant-core" -RDEPEND=">=virtual/jre-1.3" -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - rm lib/*.jar -} - -src_compile() { - eant jar -Dversion=${PV} -} - -src_install() { - java-pkg_newjar build/dist/${P}.jar ${PN}.jar -}