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/relaxng-datatype/
Date: Mon, 09 May 2022 19:13:29
Message-Id: 1652123600.34c46aa4140ea4cd1160d1a06a38408cc33e3b1e.flow@gentoo
1 commit: 34c46aa4140ea4cd1160d1a06a38408cc33e3b1e
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Sat May 7 16:24:09 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=34c46aa4
7
8 dev-java/relaxng-datatype: update EAPI 6 -> 8
9
10 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
11 Closes: https://github.com/gentoo/gentoo/pull/25370
12 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
13
14 .../relaxng-datatype-1.0-r3.ebuild | 35 ++++++++++++++++++++++
15 1 file changed, 35 insertions(+)
16
17 diff --git a/dev-java/relaxng-datatype/relaxng-datatype-1.0-r3.ebuild b/dev-java/relaxng-datatype/relaxng-datatype-1.0-r3.ebuild
18 new file mode 100644
19 index 000000000000..5886aafc3e3f
20 --- /dev/null
21 +++ b/dev-java/relaxng-datatype/relaxng-datatype-1.0-r3.ebuild
22 @@ -0,0 +1,35 @@
23 +# Copyright 1999-2022 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=8
27 +
28 +JAVA_PKG_IUSE="doc source"
29 +
30 +MY_PN="relaxngDatatype"
31 +MY_P="${MY_PN}-${PV}"
32 +
33 +inherit java-pkg-2 java-pkg-simple
34 +
35 +DESCRIPTION="Interface between RELAX NG validators and datatype libraries"
36 +HOMEPAGE="https://relaxng.org/"
37 +SRC_URI="mirror://sourceforge/relaxng/${MY_P}.zip -> ${P}.zip"
38 +
39 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
40 +LICENSE="BSD"
41 +SLOT="0"
42 +
43 +DEPEND=">=virtual/jdk-1.8:*"
44 +RDEPEND=">=virtual/jre-1.8:*"
45 +BDEPEND="app-arch/unzip"
46 +
47 +S="${WORKDIR}/${MY_P}"
48 +
49 +src_prepare() {
50 + default
51 + java-pkg_clean
52 +}
53 +
54 +src_install() {
55 + java-pkg-simple_src_install
56 + einstalldocs
57 +}