Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/gnu-jaf/
Date: Mon, 09 May 2022 19:13:28
Message-Id: 1652123600.473a713d284491719ea956ef135214ef4ab4c218.flow@gentoo
1 commit: 473a713d284491719ea956ef135214ef4ab4c218
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Sat May 7 16:14:19 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 19:13:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=473a713d
7
8 dev-java/gnu-jaf: update EAPI 6 -> 8
9
10 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
11 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
12
13 dev-java/gnu-jaf/gnu-jaf-1.1.2-r1.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-java/gnu-jaf/gnu-jaf-1.1.2-r1.ebuild b/dev-java/gnu-jaf/gnu-jaf-1.1.2-r1.ebuild
17 new file mode 100644
18 index 000000000000..6c4ef7d1e74d
19 --- /dev/null
20 +++ b/dev-java/gnu-jaf/gnu-jaf-1.1.2-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2022 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +JAVA_PKG_IUSE="doc source"
28 +inherit java-pkg-2 java-ant-2
29 +
30 +DESCRIPTION="GNU implementation of the JavaBeans Activation Framework"
31 +HOMEPAGE="https://www.gnu.org/software/classpathx/jaf/jaf.html"
32 +SRC_URI="mirror://gnu/classpathx/activation-${PV}.tar.gz"
33 +
34 +LICENSE="GPL-2-with-linking-exception"
35 +SLOT="1"
36 +KEYWORDS="~amd64 ~ppc64 ~x86"
37 +
38 +DEPEND=">=virtual/jdk-1.8:*"
39 +RDEPEND=">=virtual/jre-1.8:*"
40 +
41 +S="${WORKDIR}/activation-${PV}"
42 +
43 +EANT_BUILD_TARGET="activation.jar"
44 +
45 +src_install() {
46 + java-pkg_dojar activation.jar
47 + einstalldocs
48 + use doc && java-pkg_dojavadoc docs
49 + use source && java-pkg_dosrc source/*
50 +}