summaryrefslogtreecommitdiff
path: root/dev-java/jaxb-api/jaxb-api-4.0.0.ebuild
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2022-06-11 08:48:18 +0200
committerFlorian Schmaus <flow@gentoo.org>2022-06-20 08:49:20 +0200
commit95710d65af68fdc236156a37711a1a1f129cf9c2 (patch)
tree9359c583a81e58a77271ee8c546e10739689afc2 /dev-java/jaxb-api/jaxb-api-4.0.0.ebuild
parentca01c2cb2bfe360327985e103100b63253c83721 (diff)
downloadgentoo-95710d65af68fdc236156a37711a1a1f129cf9c2.tar.gz
gentoo-95710d65af68fdc236156a37711a1a1f129cf9c2.tar.bz2
gentoo-95710d65af68fdc236156a37711a1a1f129cf9c2.zip
dev-java/jaxb-api: add 4.0.0
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-java/jaxb-api/jaxb-api-4.0.0.ebuild')
-rw-r--r--dev-java/jaxb-api/jaxb-api-4.0.0.ebuild42
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-java/jaxb-api/jaxb-api-4.0.0.ebuild b/dev-java/jaxb-api/jaxb-api-4.0.0.ebuild
new file mode 100644
index 000000000000..a49e2c851b71
--- /dev/null
+++ b/dev-java/jaxb-api/jaxb-api-4.0.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="jakarta.xml.bind:jakarta.xml.bind-api:4.0.0"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Jakarta XML Binding API"
+HOMEPAGE="https://github.com/eclipse-ee4j/jaxb-api"
+SRC_URI="https://github.com/eclipse-ee4j/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="EPL-1.0"
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+CP_DEPEND="dev-java/jakarta-activation:2"
+
+DEPEND="${CP_DEPEND}
+ >=virtual/jdk-11:*"
+
+RDEPEND="${CP_DEPEND}
+ >=virtual/jre-1.8:*"
+
+DOCS=( {CONTRIBUTING,NOTICE,README}.md )
+
+S="${WORKDIR}/${P}"
+
+JAVA_SRC_DIR="api/src/main/java"
+JAVA_RESOURCE_DIRS="api/src/main/resources"
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="jaxb-api-test/src/test/java"
+JAVA_TEST_RESOURCE_DIRS="jaxb-api-test/src/test/resources"
+
+src_install() {
+ default # https://bugs.gentoo.org/789582
+ java-pkg-simple_src_install
+}