diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2022-06-22 19:35:41 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-07-19 21:26:00 +0200 |
commit | 8ca0c8186a0dd974247ca556fb3e6f191a0533e6 (patch) | |
tree | 367e3896f307448c7d6f06cab53c811bb16aea03 /dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild | |
parent | app-admin/calamares: enable py3.10 (diff) | |
download | gentoo-8ca0c8186a0dd974247ca556fb3e6f191a0533e6.tar.gz gentoo-8ca0c8186a0dd974247ca556fb3e6f191a0533e6.tar.bz2 gentoo-8ca0c8186a0dd974247ca556fb3e6f191a0533e6.zip |
dev-java/j2objc-annotations: add 2.8
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/26064
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild')
-rw-r--r-- | dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild b/dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild new file mode 100644 index 000000000000..6d1ab4cdf1d2 --- /dev/null +++ b/dev-java/j2objc-annotations/j2objc-annotations-2.8.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +# Yes. version is "2.2" regardless ${PV} being "2.8". +# See https://github.com/google/j2objc/blob/2.8/annotations/pom.xml#L32-L35 +MAVEN_ID="com.google.j2objc:j2objc-annotations:2.2" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Annotations for the J2ObjC Java to Objective-C translator" +HOMEPAGE="https://developers.google.com/j2objc/" +SRC_URI="https://github.com/google/j2objc/archive/${PV}.tar.gz -> j2objc-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND="virtual/jdk:1.8" +RDEPEND=">=virtual/jre-1.8:*" + +DOCS=( ../{CONTRIBUTING,README}.md ) + +S="${WORKDIR}/j2objc-${PV}/annotations" + +JAVA_SRC_DIR="src/main/java" + +src_prepare() { + default + rm Makefile || die +} |