summaryrefslogtreecommitdiff
path: root/dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2023-02-09 20:17:35 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2023-02-26 08:23:52 +0100
commitf4d3201b7dc765ed5a1898c9608abb5f9e60df40 (patch)
tree2dabf7bb6e8863b771d4616535ff128d80c102f2 /dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild
parent446ce450f2d2bde28e280b752cec1f3afab62657 (diff)
downloadgentoo-f4d3201b7dc765ed5a1898c9608abb5f9e60df40.tar.gz
gentoo-f4d3201b7dc765ed5a1898c9608abb5f9e60df40.tar.bz2
gentoo-f4d3201b7dc765ed5a1898c9608abb5f9e60df40.zip
dev-java/jax-rpc-api: new package, add 1.1.4
Replacement for dev-java/glassfish-xmlrpc-api where SRC_URI is dead Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/29508/commits/e7baa95d7b6c5f3872e0b54253328914909db907 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild')
-rw-r--r--dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild38
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild b/dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild
new file mode 100644
index 000000000000..64da18d9673c
--- /dev/null
+++ b/dev-java/jax-rpc-api/jax-rpc-api-1.1.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="jakarta.xml.rpc:jakarta.xml.rpc-api:1.1.4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Eclipse Project for Stable EE4J APIs"
+HOMEPAGE="https://github.com/eclipse-ee4j/jax-rpc-api"
+SRC_URI="https://github.com/eclipse-ee4j/jax-rpc-api/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${P}"
+
+LICENSE="EPL-2.0 GPL-2-with-classpath-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# Common dependencies
+# POM: api/pom.xml
+# jakarta.servlet:jakarta.servlet-api:4.0.3 -> >=dev-java/jakarta-servlet-api-4.0.4:4
+
+CP_DEPEND="
+ dev-java/jakarta-servlet-api:4
+ dev-java/jakarta-xml-soap-api:1
+"
+
+DEPEND="
+ >=virtual/jdk-1.8:*
+ ${CP_DEPEND}
+"
+
+RDEPEND="
+ >=virtual/jre-1.8:*
+ ${CP_DEPEND}"
+
+JAVA_SRC_DIR="api/src/main/java"