Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/angus-activation/
Date: Sun, 28 Aug 2022 05:17:25
Message-Id: 1661663832.6e450cae914d4cafc56cde0364e11a4ecb402493.fordfrog@gentoo
1 commit: 6e450cae914d4cafc56cde0364e11a4ecb402493
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Fri Aug 26 10:39:10 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 05:17:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e450cae
7
8 dev-java/angus-activation: drop 1.0.0
9
10 Closes: https://bugs.gentoo.org/858560
11 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 .../angus-activation/angus-activation-1.0.0.ebuild | 43 ----------------------
15 1 file changed, 43 deletions(-)
16
17 diff --git a/dev-java/angus-activation/angus-activation-1.0.0.ebuild b/dev-java/angus-activation/angus-activation-1.0.0.ebuild
18 deleted file mode 100644
19 index effcb2f8468a..000000000000
20 --- a/dev-java/angus-activation/angus-activation-1.0.0.ebuild
21 +++ /dev/null
22 @@ -1,43 +0,0 @@
23 -# Copyright 1999-2022 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -# Skeleton command:
27 -# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/eclipse-ee4j/angus-activation/archive/refs/tags/1.0.0.tar.gz --slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild angus-activation-1.0.0.ebuild
28 -
29 -EAPI=8
30 -
31 -JAVA_PKG_IUSE="doc source"
32 -MAVEN_ID="org.eclipse.angus:angus-activation:1.0.0"
33 -
34 -inherit java-pkg-2 java-pkg-simple
35 -
36 -DESCRIPTION="Provides the implementation of the Jakarta Activation Specification"
37 -HOMEPAGE="https://github.com/eclipse-ee4j/angus-activation"
38 -SRC_URI="https://github.com/eclipse-ee4j/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
39 -
40 -LICENSE="EPL-1.0"
41 -SLOT="0"
42 -KEYWORDS="amd64 ~arm arm64 ppc64 x86"
43 -
44 -# Common dependencies
45 -# POM: pom.xml
46 -# jakarta.activation:jakarta.activation-api:2.1.0 -> !!!suitble-mavenVersion-not-found!!!
47 -
48 -CP_DEPEND=">=dev-java/jakarta-activation-api-2.1.0:2"
49 -DEPEND="${CP_DEPEND}
50 - >=virtual/jdk-1.8:*"
51 -
52 -RDEPEND="${CP_DEPEND}
53 - >=virtual/jre-1.8:*"
54 -
55 -DOCS=( ../{CONTRIBUTING,LICENSE,NOTICE,README}.md )
56 -
57 -S="${WORKDIR}/${P}/activation-registry"
58 -
59 -JAVA_SRC_DIR="src/main/java"
60 -JAVA_RESOURCE_DIRS="src/main/resources"
61 -
62 -src_install() {
63 - default # https://bugs.gentoo.org/789582
64 - java-pkg-simple_src_install
65 -}