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 6375015808B for ; Fri, 11 Mar 2022 00:41:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8F2BE0824; Fri, 11 Mar 2022 00:41:34 +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 4F3ABE0821 for ; Fri, 11 Mar 2022 00:41:34 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8972342FBA for ; Fri, 11 Mar 2022 00:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F5D7318 for ; Fri, 11 Mar 2022 00:41: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: <1646959279.e5217c5b538776dfe1015e0cf0d4362d558fec4e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/cortado/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/cortado/cortado-0.6.0-r2.ebuild X-VCS-Directories: dev-java/cortado/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e5217c5b538776dfe1015e0cf0d4362d558fec4e X-VCS-Branch: master Date: Fri, 11 Mar 2022 00:41: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: ec3247d7-7c3f-4f42-8329-b120da60ea53 X-Archives-Hash: bbae28776d31606b006d5d7c2f226a1e commit: e5217c5b538776dfe1015e0cf0d4362d558fec4e Author: Sam James gentoo org> AuthorDate: Fri Mar 11 00:39:24 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 11 00:41:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5217c5b dev-java/cortado: drop 0.6.0-r2 I must have tested the wrong version. Broken with newer Java! :( Closes: https://bugs.gentoo.org/834899 Signed-off-by: Sam James gentoo.org> dev-java/cortado/cortado-0.6.0-r2.ebuild | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/dev-java/cortado/cortado-0.6.0-r2.ebuild b/dev-java/cortado/cortado-0.6.0-r2.ebuild deleted file mode 100644 index aab4ba75fb3b..000000000000 --- a/dev-java/cortado/cortado-0.6.0-r2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Multimedia framework for Java written by Fluendo" -HOMEPAGE="https://www.theora.org/cortado/" -SRC_URI="https://downloads.xiph.org/releases/cortado/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -RDEPEND=">=virtual/jre-1.8:*" -DEPEND=">=virtual/jdk-1.8:*" -BDEPEND="app-arch/unzip" - -EANT_BUILD_TARGET="stripped" - -src_prepare() { - default - echo "#!/bin/sh" > scripts/get-revision || die - echo "echo ${PV}" >> scripts/get-revision || die -} - -src_install() { - java-pkg_newjar output/dist/applet/${PN}-ovt-stripped-${PV}.jar - dodoc ChangeLog HACKING NEWS README RELEASE TODO -}