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/jakarta-activation-api/
Date: Thu, 24 Jun 2021 17:33:06
Message-Id: 1624555975.d36524fec1d6dd7320b9db2d98e3a05895eadff7.fordfrog@gentoo
1 commit: d36524fec1d6dd7320b9db2d98e3a05895eadff7
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Sat Jun 19 11:37:54 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 24 17:32:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36524fe
7
8 dev-java/jakarta-activation-api: allow java 1.8:*
9
10 Bug: https://bugs.gentoo.org/797289
11
12 Package-Manager: Portage-3.0.20, Repoman-3.0.2
13 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
14 Closes: https://github.com/gentoo/gentoo/pull/21326/commits/8d05bbc33254abd623a9a8fb974b7c680c839dc8
15 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
16
17 .../jakarta-activation-api-2.0.1-r1.ebuild | 35 ++++++++++++++++++++++
18 1 file changed, 35 insertions(+)
19
20 diff --git a/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild b/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild
21 new file mode 100644
22 index 00000000000..2029f27d62b
23 --- /dev/null
24 +++ b/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild
25 @@ -0,0 +1,35 @@
26 +# Copyright 1999-2021 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +# Skeleton command:
30 +# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/eclipse-ee4j/jaf/archive/refs/tags/2.0.1.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jakarta-activation-2.0.1.ebuild
31 +
32 +EAPI=7
33 +
34 +JAVA_PKG_IUSE="doc source"
35 +MAVEN_ID="jakarta.activation:jakarta.activation-api:2.0.1"
36 +
37 +inherit java-pkg-2 java-pkg-simple
38 +
39 +DESCRIPTION="Jakarta Activation API jar"
40 +HOMEPAGE="https://eclipse-ee4j.github.io/jaf/"
41 +SRC_URI="https://github.com/eclipse-ee4j/jaf/archive/refs/tags/${PV}.tar.gz -> jakarta-activation-${PV}.tar.gz"
42 +
43 +LICENSE="EPL-1.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
46 +
47 +DEPEND=">=virtual/jdk-1.8:*"
48 +RDEPEND=">=virtual/jre-1.8:*"
49 +
50 +DOCS=( ../{CONTRIBUTING,LICENSE,NOTICE,README}.md )
51 +
52 +S="${WORKDIR}/jaf-${PV}/activation"
53 +
54 +JAVA_SRC_DIR="src/main/java"
55 +JAVA_RESOURCE_DIRS="src/main/resources"
56 +
57 +src_install() {
58 + default
59 + java-pkg-simple_src_install
60 +}