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/j2objc-annotations/
Date: Tue, 21 Dec 2021 08:04:19
Message-Id: 1640073700.6df356ea9921d667179d12d9fbb2a8d2b7a0e618.fordfrog@gentoo
1 commit: 6df356ea9921d667179d12d9fbb2a8d2b7a0e618
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 21 08:01:40 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 08:01:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df356ea
7
8 dev-java/j2objc-annotations: eapi8, min java 1.8
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 .../j2objc-annotations-1.2-r1.ebuild | 23 ++++++++++++++++++++++
14 1 file changed, 23 insertions(+)
15
16 diff --git a/dev-java/j2objc-annotations/j2objc-annotations-1.2-r1.ebuild b/dev-java/j2objc-annotations/j2objc-annotations-1.2-r1.ebuild
17 new file mode 100644
18 index 000000000000..c4d6059dcd6c
19 --- /dev/null
20 +++ b/dev-java/j2objc-annotations/j2objc-annotations-1.2-r1.ebuild
21 @@ -0,0 +1,23 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +MY_PN="${PN%-annotations}"
28 +MY_P="${MY_PN}-${PV}"
29 +JAVA_PKG_IUSE="doc source"
30 +
31 +inherit java-pkg-2 java-pkg-simple
32 +
33 +DESCRIPTION="Annotations for the J2ObjC Java to Objective-C translator"
34 +HOMEPAGE="http://j2objc.org"
35 +SRC_URI="https://github.com/google/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
36 +LICENSE="Apache-2.0"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
39 +
40 +DEPEND=">=virtual/jdk-1.8:*"
41 +RDEPEND=">=virtual/jre-1.8:*"
42 +
43 +S="${WORKDIR}/${MY_P}/annotations"
44 +JAVA_SRC_DIR="src/main/java"