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/iso-relax/
Date: Wed, 21 Apr 2021 08:27:13
Message-Id: 1618993501.233db0af1fa87bd2b53903ea16931c9604758dc1.fordfrog@gentoo
1 commit: 233db0af1fa87bd2b53903ea16931c9604758dc1
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Tue Apr 20 18:39:03 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 21 08:25:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233db0af
7
8 dev-java/iso-relax: EAPI 7, min java 1.8
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
12 Closes: https://github.com/gentoo/gentoo/pull/20476
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 dev-java/iso-relax/iso-relax-20050331-r5.ebuild | 39 +++++++++++++++++++++++++
16 1 file changed, 39 insertions(+)
17
18 diff --git a/dev-java/iso-relax/iso-relax-20050331-r5.ebuild b/dev-java/iso-relax/iso-relax-20050331-r5.ebuild
19 new file mode 100644
20 index 00000000000..9c24faee8b2
21 --- /dev/null
22 +++ b/dev-java/iso-relax/iso-relax-20050331-r5.ebuild
23 @@ -0,0 +1,39 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +JAVA_PKG_IUSE="doc source"
30 +
31 +inherit java-pkg-2 java-pkg-simple
32 +
33 +DESCRIPTION="Interfaces useful for applications which support RELAX Core"
34 +HOMEPAGE="http://www.xml.gr.jp/relax/"
35 +SRC_URI="mirror://gentoo/${P}.tar.bz2"
36 +
37 +LICENSE="MIT"
38 +SLOT="0"
39 +KEYWORDS="amd64 ~arm ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
40 +
41 +RESTRICT="test"
42 +
43 +CDEPEND="dev-java/ant-core:0"
44 +
45 +DEPEND="
46 + ${CDEPEND}
47 + >=virtual/jdk-1.8:*"
48 +
49 +RDEPEND="
50 + ${CDEPEND}
51 + >=virtual/jre-1.8:*"
52 +
53 +S="${WORKDIR}/${P}"
54 +
55 +JAVA_GENTOO_CLASSPATH="ant-core"
56 +
57 +JAVA_SRC_DIR="src"
58 +
59 +src_prepare() {
60 + default
61 + java-pkg_clean
62 +}