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 35F54158089 for ; Sat, 28 Oct 2023 08:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D12222BC01D; Sat, 28 Oct 2023 08:23:16 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95EA12BC01D for ; Sat, 28 Oct 2023 08:23:16 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 26DA6335CAF for ; Sat, 28 Oct 2023 08:23:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51C1412E8 for ; Sat, 28 Oct 2023 08:23:12 +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: <1698481379.3edca95551bf3d5e91994807796bf2a6ef67deaf.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/osgi-cmpn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild X-VCS-Directories: dev-java/osgi-cmpn/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 3edca95551bf3d5e91994807796bf2a6ef67deaf X-VCS-Branch: master Date: Sat, 28 Oct 2023 08:23:12 +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: 4f9c5f29-354a-4170-9524-9b65cdb9b7f7 X-Archives-Hash: d025472d6bc23eced921f49fd48bc653 commit: 3edca95551bf3d5e91994807796bf2a6ef67deaf Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Oct 27 13:49:45 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Oct 28 08:22:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edca955 dev-java/osgi-cmpn: drop 8.0.0 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild | 45 ------------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild b/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild deleted file mode 100644 index a82fc2274850..000000000000 --- a/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source" -MAVEN_ID="org.osgi:osgi.cmpn:8.0.0" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="OSGi Service Platform Compendium API (Companion Code)" -HOMEPAGE="https://docs.osgi.org" -SRC_URI="https://docs.osgi.org/download/r$(ver_cut 1)/${PN/-/.}-${PV}.jar -> ${P}.jar" - -LICENSE="Apache-2.0 OSGi-Specification-2.0" -SLOT="8" -KEYWORDS="amd64 ~arm arm64 ppc64 x86" - -CP_DEPEND=" - dev-java/cdi-api:0 - dev-java/glassfish-persistence:0 - dev-java/jakarta-servlet-api:4 - dev-java/javax-inject:0 - dev-java/jaxrs-api:0 - dev-java/osgi-annotation:0 - dev-java/osgi-core:0 -" - -DEPEND="${CP_DEPEND} - >=virtual/jdk-11:*" - -RDEPEND="${CP_DEPEND} - >=virtual/jre-1.8:*" - -BDEPEND="app-arch/unzip" - -JAVA_SRC_DIR="OSGI-OPT/src" - -src_prepare() { - default - java-pkg_clean org - sed \ - -e 's/javax\(.enterprise\)/jakarta\1/' \ - -i OSGI-OPT/src/org/osgi/service/cdi/*/*.java || die -}